PricesTest.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. <?php
  2. /* Copyright (C) 2010 Laurent Destailleur <eldy@users.sourceforge.net>
  3. * Copyright (C) 2015 Juanjo Menent <jmenent@2byte.es>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. * or see https://www.gnu.org/
  18. */
  19. /**
  20. * \file test/phpunit/PricesTest.php
  21. * \ingroup test
  22. * \brief PHPUnit test
  23. * \remarks To run this script as CLI: phpunit filename.php
  24. */
  25. global $conf,$user,$langs,$db;
  26. //define('TEST_DB_FORCE_TYPE','mysql'); // This is to force using mysql driver
  27. //require_once 'PHPUnit/Autoload.php';
  28. require_once dirname(__FILE__).'/../../htdocs/master.inc.php';
  29. require_once dirname(__FILE__).'/../../htdocs/core/lib/price.lib.php';
  30. require_once dirname(__FILE__).'/../../htdocs/compta/facture/class/facture.class.php';
  31. if (empty($user->id)) {
  32. print "Load permissions for admin user nb 1\n";
  33. $user->fetch(1);
  34. $user->getrights();
  35. }
  36. $conf->global->MAIN_DISABLE_ALL_MAILS=1;
  37. if (! empty($conf->global->MAIN_ROUNDING_RULE_TOT)) {
  38. print "Parameter MAIN_ROUNDING_RULE_TOT must be set to 0 or not set.\n";
  39. exit(1);
  40. }
  41. /**
  42. * Class for PHPUnit tests
  43. *
  44. * @backupGlobals disabled
  45. * @backupStaticAttributes enabled
  46. * @remarks backupGlobals must be disabled to have db,conf,user and lang not erased.
  47. */
  48. class PricesTest extends PHPUnit\Framework\TestCase
  49. {
  50. protected $savconf;
  51. protected $savuser;
  52. protected $savlangs;
  53. protected $savdb;
  54. /**
  55. * Constructor
  56. * We save global variables into local variables
  57. *
  58. * @return CoreTest
  59. */
  60. public function __construct()
  61. {
  62. parent::__construct();
  63. //$this->sharedFixture
  64. global $conf,$user,$langs,$db;
  65. $this->savconf=$conf;
  66. $this->savuser=$user;
  67. $this->savlangs=$langs;
  68. $this->savdb=$db;
  69. print __METHOD__." db->type=".$db->type." user->id=".$user->id;
  70. //print " - db ".$db->db;
  71. print "\n";
  72. }
  73. /**
  74. * setUpBeforeClass
  75. *
  76. * @return void
  77. */
  78. public static function setUpBeforeClass()
  79. {
  80. global $conf,$user,$langs,$db;
  81. //$db->begin(); // This is to have all actions inside a transaction even if test launched without suite.
  82. print __METHOD__."\n";
  83. }
  84. /**
  85. * tearDownAfterClass
  86. *
  87. * @return void
  88. */
  89. public static function tearDownAfterClass()
  90. {
  91. global $conf,$user,$langs,$db;
  92. //$db->rollback();
  93. print __METHOD__."\n";
  94. }
  95. /**
  96. * Init phpunit tests
  97. *
  98. * @return void
  99. */
  100. protected function setUp()
  101. {
  102. global $conf,$user,$langs,$db;
  103. $conf=$this->savconf;
  104. $user=$this->savuser;
  105. $langs=$this->savlangs;
  106. $db=$this->savdb;
  107. print __METHOD__."\n";
  108. }
  109. /**
  110. * End phpunit tests
  111. *
  112. * @return void
  113. */
  114. protected function tearDown()
  115. {
  116. print __METHOD__."\n";
  117. }
  118. /**
  119. * Test function calcul_price_total
  120. *
  121. * @return boolean
  122. * @see http://wiki.dolibarr.org/index.php/Draft:VAT_calculation_and_rounding#Standard_usage
  123. */
  124. public function testCalculPriceTotal()
  125. {
  126. global $conf,$user,$langs,$db;
  127. $this->savconf=$conf;
  128. $this->savuser=$user;
  129. $this->savlangs=$langs;
  130. $this->savdb=$db;
  131. global $mysoc;
  132. $mysoc=new Societe($db);
  133. // To force status that say module multicompany is on
  134. //$conf->multicurrency=new stdClass();
  135. //$conf->multicurrency->enabled = 0;
  136. /*
  137. * Country France
  138. */
  139. // qty=1, unit_price=1.24, discount_line=0, vat_rate=10, price_base_type='HT' (method we provide value)
  140. $mysoc->country_code='FR';
  141. $mysoc->country_id=1;
  142. $result1=calcul_price_total(1, 1.24, 0, 10, 0, 0, 0, 'HT', 0, 0);
  143. print __METHOD__." result1=".join(', ', $result1)."\n";
  144. // result[0,1,2,3,4,5,6,7,8] (total_ht, total_vat, total_ttc, pu_ht, pu_tva, pu_ttc, total_ht_without_discount, total_vat_without_discount, total_ttc_without_discount)
  145. $this->assertEquals(array(1.24, 0.12, 1.36, 1.24, 0.124, 1.364, 1.24, 0.12, 1.36, 0, 0, 0, 0, 0, 0, 0, 1.24, 0.12, 1.36, 1.24, 0.124, 1.364, 1.24, 0.12, 1.36, 0, 0), $result1, 'Test1 FR');
  146. // qty=1, unit_price=1.24, discount_line=0, vat_rate=10, price_base_type='HT', multicurrency_tx=1.09205 (method we provide value)
  147. $mysoc->country_code='FR';
  148. $mysoc->country_id=1;
  149. $result1=calcul_price_total(2, 8.56, 0, 10, 0, 0, 0, 'HT', 0, 0, '', '', 100, 1.09205);
  150. print __METHOD__." result1=".join(', ', $result1)."\n";
  151. // result[0,1,2,3,4,5,6,7,8] (total_ht, total_vat, total_ttc, pu_ht, pu_tva, pu_ttc, total_ht_without_discount, total_vat_without_discount, total_ttc_without_discount)
  152. $this->assertEquals(array(17.12, 1.71, 18.83, 8.56, 0.856, 9.416, 17.12, 1.71, 18.83, 0, 0, 0, 0, 0, 0, 0, 18.7, 1.87, 20.57, 9.34795, 0.93479, 10.28274, 18.7, 1.87, 20.57, 0, 0), $result1, 'Test1b FR');
  153. // qty=2, unit_price=0, discount_line=0, vat_rate=10, price_base_type='HT', multicurrency_tx=1.09205 (method we provide value), pu_ht_devise=100
  154. $mysoc->country_code='FR';
  155. $mysoc->country_id=1;
  156. $result1=calcul_price_total(2, 0, 0, 10, 0, 0, 0, 'HT', 0, 0, '', '', 100, 1.09205, 20);
  157. print __METHOD__." result1=".join(', ', $result1)."\n";
  158. // result[0,1,2,3,4,5,6,7,8] (total_ht, total_vat, total_ttc, pu_ht, pu_tva, pu_ttc, total_ht_without_discount, total_vat_without_discount, total_ttc_without_discount)
  159. $this->assertEquals(array(36.63, 3.66, 40.29, 18.31418, 1.83142, 20.1456, 36.63, 3.66, 40.29, 0, 0, 0, 0, 0, 0, 0, 40, 4, 44, 20, 2, 22, 40, 4, 44, 0, 0), $result1, 'Test1c FR');
  160. /*
  161. * Country Spain
  162. */
  163. // 10 * 10 HT - 0% discount with 10% vat, seller not using localtax1, not localtax2 (method we provide value)
  164. $mysoc->country_code='ES';
  165. $mysoc->country_id=4;
  166. $mysoc->localtax1_assuj=0;
  167. $mysoc->localtax2_assuj=0;
  168. $result2=calcul_price_total(10, 10, 0, 10, 0, 0, 0, 'HT', 0, 0); // 10 * 10 HT - 0% discount with 10% vat and 1.4% localtax1, 0% localtax2
  169. print __METHOD__." result2=".join(', ', $result2)."\n";
  170. // result[0,1,2,3,4,5,6,7,8] (total_ht, total_vat, total_ttc, pu_ht, pu_tva, pu_ttc, total_ht_without_discount, total_vat_without_discount, total_ttc_without_discount)
  171. $this->assertEquals(array(100, 10, 110, 10, 1, 11, 100, 10, 110, 0, 0, 0, 0, 0, 0, 0, 100, 10, 110, 10, 1, 11, 100, 10, 110, 0, 0), $result2, 'Test1 ES');
  172. // 10 * 10 HT - 0% discount with 10% vat, seller not using localtax1, not localtax2 (other method autodetect)
  173. $mysoc->country_code='ES';
  174. $mysoc->country_id=4;
  175. $mysoc->localtax1_assuj=0;
  176. $mysoc->localtax2_assuj=0;
  177. $result2=calcul_price_total(10, 10, 0, 10, -1, -1, 0, 'HT', 0, 0); // 10 * 10 HT - 0% discount with 10% vat and 1.4% localtax1, 0% localtax2
  178. print __METHOD__." result2=".join(', ', $result2)."\n";
  179. // result[0,1,2,3,4,5,6,7,8] (total_ht, total_vat, total_ttc, pu_ht, pu_tva, pu_ttc, total_ht_without_discount, total_vat_without_discount, total_ttc_without_discount)
  180. $this->assertEquals(array(100, 10, 110, 10, 1, 11, 100, 10, 110, 0, 0, 0, 0, 0, 0, 0, 100, 10, 110, 10, 1, 11, 100, 10, 110, 0, 0), $result2, 'Test2 ES');
  181. // --------------------------------------------------------
  182. // 10 * 10 HT - 0% discount with 10% vat and 1.4% localtax1 type 3, 0% localtax2 type 5 (method we provide value)
  183. $mysoc->country_code='ES';
  184. $mysoc->country_id=4;
  185. $mysoc->localtax1_assuj=1;
  186. $mysoc->localtax2_assuj=0;
  187. $result2=calcul_price_total(10, 10, 0, 10, 1.4, 0, 0, 'HT', 0, 0);
  188. print __METHOD__." result2=".join(', ', $result2)."\n";
  189. // result[0,1,2,3,4,5,6,7,8] (total_ht, total_vat, total_ttc, pu_ht, pu_tva, pu_ttc, total_ht_without_discount, total_vat_without_discount, total_ttc_without_discount)
  190. $this->assertEquals(array(100, 10, 111.4, 10, 1, 11.14, 100, 10, 111.4, 1.4, 0, 0.14, 0, 0, 1.4, 0, 100, 10, 111.4, 10, 1, 11.14, 100, 10, 111.4, 1.4, 0), $result2, 'Test3 ES');
  191. // 10 * 10 HT - 0% discount with 10% vat and 1.4% localtax1 type 3, 0% localtax2 type 5 (other method autodetect)
  192. $mysoc->country_code='ES';
  193. $mysoc->country_id=4;
  194. $mysoc->localtax1_assuj=1;
  195. $mysoc->localtax2_assuj=0;
  196. $result2=calcul_price_total(10, 10, 0, 10, -1, -1, 0, 'HT', 0, 0);
  197. print __METHOD__." result2=".join(', ', $result2)."\n";
  198. // result[0,1,2,3,4,5,6,7,8] (total_ht, total_vat, total_ttc, pu_ht, pu_tva, pu_ttc, total_ht_without_discount, total_vat_without_discount, total_ttc_without_discount)
  199. $this->assertEquals(array(100, 10, 111.4, 10, 1, 11.14, 100, 10, 111.4, 1.4, 0, 0.14, 0, 0, 1.4, 0, 100, 10, 111.4, 10, 1, 11.14, 100, 10, 111.4, 1.4, 0), $result2, 'Test4 ES');
  200. // --------------------------------------------------------
  201. // 10 * 10 HT - 0% discount with 10% vat and 0% localtax1 type 3, 19% localtax2 type 5 (method we provide value), we provide a service and not a product
  202. $mysoc->country_code='ES';
  203. $mysoc->country_id=4;
  204. $mysoc->localtax1_assuj=0;
  205. $mysoc->localtax2_assuj=1;
  206. $result2=calcul_price_total(10, 10, 0, 10, 0, -19, 0, 'HT', 0, 1);
  207. // result[0,1,2,3,4,5,6,7,8] (total_ht, total_vat, total_ttc, pu_ht, pu_tva, pu_ttc, total_ht_without_discount, total_vat_without_discount, total_ttc_without_discount)
  208. $this->assertEquals(array(100, 10, 91, 10, 1, 9.1, 100, 10, 91, 0, -19, 0, -1.90, 0, 0, -19, 100, 10, 91, 10, 1, 9.1, 100, 10, 91, 0, -19), $result2, 'Test5 ES for service');
  209. // 10 * 10 HT - 0% discount with 10% vat and 0% localtax1 type 3, 21% localtax2 type 5 (other method autodetect), we provide a service and not a product
  210. $mysoc->country_code='ES';
  211. $mysoc->country_id=4;
  212. $mysoc->localtax1_assuj=0;
  213. $mysoc->localtax2_assuj=1;
  214. $result2=calcul_price_total(10, 10, 0, 10, -1, -1, 0, 'HT', 0, 0);
  215. print __METHOD__." result2=".join(', ', $result2)."\n";
  216. // result[0,1,2,3,4,5,6,7,8] (total_ht, total_vat, total_ttc, pu_ht, pu_tva, pu_ttc, total_ht_without_discount, total_vat_without_discount, total_ttc_without_discount)
  217. $this->assertEquals(array(100, 10, 110, 10, 1, 11, 100, 10, 110, 0, 0, 0, 0, 0, 0, 0, 100, 10, 110, 10, 1, 11, 100, 10, 110, 0, 0), $result2, 'Test6 ES for product');
  218. // 10 * 10 HT - 0% discount with 10% vat and 0% localtax1 type 3, 21% localtax2 type 5 (other method autodetect), we provide a product and not a service
  219. $mysoc->country_code='ES';
  220. $mysoc->country_id=4;
  221. $mysoc->localtax1_assuj=0;
  222. $mysoc->localtax2_assuj=1;
  223. $result2=calcul_price_total(10, 10, 0, 10, -1, -1, 0, 'HT', 0, 1);
  224. print __METHOD__." result2=".join(', ', $result2)."\n";
  225. // result[0,1,2,3,4,5,6,7,8] (total_ht, total_vat, total_ttc, pu_ht, pu_tva, pu_ttc, total_ht_without_discount, total_vat_without_discount, total_ttc_without_discount)
  226. $this->assertEquals(array(100, 10, 91, 10, 1, 9.1, 100, 10, 91, 0, -19, 0, -1.90, 0, 0, -19, 100, 10, 91, 10, 1, 9.1, 100, 10, 91, 0, -19), $result2, 'Test6 ES for service');
  227. // --------------------------------------------------------
  228. // Credit Note: 10 * -10 HT - 0% discount with 10% vat and 0% localtax1 type 3, 19% localtax2 type 5 (method we provide value), we provide a product and not a service
  229. $mysoc->country_code='ES';
  230. $mysoc->country_id=4;
  231. $mysoc->localtax1_assuj=0;
  232. $mysoc->localtax2_assuj=1;
  233. $result2=calcul_price_total(10, -10, 0, 10, 0, 19, 0, 'HT', 0, 0);
  234. print __METHOD__." result2=".join(', ', $result2)."\n";
  235. // result[0,1,2,3,4,5,6,7,8] (total_ht, total_vat, total_ttc, pu_ht, pu_tva, pu_ttc, total_ht_without_discount, total_vat_without_discount, total_ttc_without_discount)
  236. $this->assertEquals(array(-100, -10, -110, -10, -1, -11, -100, -10, -110, 0, 0, 0, 0, 0, 0, 0, -100, -10, -110, -10, -1, -11, -100, -10, -110, 0, 0), $result2, 'Test7 ES for product');
  237. // Credit Note: 10 * -10 HT - 0% discount with 10% vat and 1.4% localtax1 type 3, 0% localtax2 type 5 (other method autodetect), we provide a service and not a product
  238. $mysoc->country_code='ES';
  239. $mysoc->country_id=4;
  240. $mysoc->localtax1_assuj=0;
  241. $mysoc->localtax2_assuj=1;
  242. $result2=calcul_price_total(10, -10, 0, 10, -1, -1, 0, 'HT', 0, 1);
  243. print __METHOD__." result2=".join(', ', $result2)."\n";
  244. $this->assertEquals(array(-100, -10, -91, -10, -1, -9.1, -100, -10, -91, 0, 19, 0, 1.90, 0, 0, 19, -100, -10, -91, -10, -1, -9.1, -100, -10, -91, 0, 19), $result2, 'Test8 ES for service');
  245. /*
  246. * Country Côte d'Ivoire
  247. */
  248. // 10 * 10 HT - 0% discount with 18% vat, seller using localtax1 type 2, not localtax2 (method we provide value)
  249. $mysoc->country_code='CI';
  250. $mysoc->country_id=21;
  251. $mysoc->localtax1_assuj=1;
  252. $mysoc->localtax2_assuj=0;
  253. //$localtaxes=getLocalTaxesFromRate(18, 0, null, $mysoc);
  254. //var_dump($locataxes);
  255. $result3=calcul_price_total(10, 10, 0, 18, 7.5, 0, 0, 'HT', 0, 0); // 10 * 10 HT - 0% discount with 18% vat and 7.5% localtax1, 0% localtax2
  256. print __METHOD__." result3=".join(', ', $result3)."\n";
  257. // result[0,1,2,3,4,5,6,7,8] (total_ht, total_vat, total_ttc, pu_ht, pu_tva, pu_ttc, total_ht_without_discount, total_vat_without_discount, total_ttc_without_discount)
  258. $this->assertEquals(array(100, 18, 126.85, 10, 1.8, 12.685, 100, 18, 126.85, 8.85, 0, 0.885, 0, 0, 8.85, 0, 100, 18, 126.85, 10, 1.8, 12.685, 100, 18, 126.85, 8.85, 0), $result3, 'Test9 CI');
  259. // 10 * 10 HT - 0% discount with 18% vat, seller using localtax1 type 2, not localtax2 (other method autodetect)
  260. $mysoc->country_code='CI';
  261. $mysoc->country_id=21;
  262. $mysoc->localtax1_assuj=1;
  263. $mysoc->localtax2_assuj=0;
  264. $result3=calcul_price_total(10, 10, 0, 18, -1, -1, 0, 'HT', 0, 0); // 10 * 10 HT - 0% discount with 18% vat and 7.5% localtax1, 0% localtax2
  265. print __METHOD__." result3=".join(', ', $result3)."\n";
  266. // result[0,1,2,3,4,5,6,7,8] (total_ht, total_vat, total_ttc, pu_ht, pu_tva, pu_ttc, total_ht_without_discount, total_vat_without_discount, total_ttc_without_discount)
  267. $this->assertEquals(array(100, 18, 126.85, 10, 1.8, 12.685, 100, 18, 126.85, 8.85, 0, 0.885, 0, 0, 8.85, 0, 100, 18, 126.85, 10, 1.8, 12.685, 100, 18, 126.85, 8.85, 0), $result3, 'Test10 CI');
  268. return true;
  269. }
  270. /**
  271. * Test function addline and update_price
  272. *
  273. * @return boolean
  274. * @see http://wiki.dolibarr.org/index.php/Draft:VAT_calculation_and_rounding#Standard_usage
  275. */
  276. public function testUpdatePrice()
  277. {
  278. //$this->sharedFixture
  279. global $conf,$user,$langs,$db;
  280. $this->savconf=$conf;
  281. $this->savuser=$user;
  282. $this->savlangs=$langs;
  283. $this->savdb=$db;
  284. $conf->global->MAIN_ROUNDOFTOTAL_NOT_TOTALOFROUND=0;
  285. // Two lines of 1.24 give 2.48 HT and 2.72 TTC with standard vat rounding mode
  286. $localobject=new Facture($this->savdb);
  287. $localobject->initAsSpecimen('nolines');
  288. $invoiceid=$localobject->create($user);
  289. $localobject->addline('Desc', 1.24, 1, 10, 0, 0, 0, 0, '', '', 0, 0, 0, 'HT');
  290. $localobject->addline('Desc', 1.24, 1, 10, 0, 0, 0, 0, '', '', 0, 0, 0, 'HT');
  291. $newlocalobject=new Facture($this->savdb);
  292. $newlocalobject->fetch($invoiceid);
  293. $this->assertEquals(2.48, $newlocalobject->total_ht, "testUpdatePrice test1");
  294. $this->assertEquals(0.24, $newlocalobject->total_tva, "testUpdatePrice test2");
  295. $this->assertEquals(2.72, $newlocalobject->total_ttc, "testUpdatePrice test3");
  296. // Two lines of 1.24 give 2.48 HT and 2.73 TTC with global vat rounding mode
  297. $localobject=new Facture($this->savdb);
  298. $localobject->initAsSpecimen('nolines');
  299. $invoiceid=$localobject->create($user);
  300. $localobject->addline('Desc', 1.24, 1, 10, 0, 0, 0, 0, '', '', 0, 0, 0, 'HT');
  301. $localobject->addline('Desc', 1.24, 1, 10, 0, 0, 0, 0, '', '', 0, 0, 0, 'HT');
  302. $newlocalobject=new Facture($this->savdb);
  303. $newlocalobject->fetch($invoiceid);
  304. $this->assertEquals(2.48, $newlocalobject->total_ht, "testUpdatePrice test4");
  305. //$this->assertEquals(0.25,$newlocalobject->total_tva);
  306. //$this->assertEquals(2.73,$newlocalobject->total_ttc);
  307. }
  308. }