90function calcul_price_total($qty, $pu, $remise_percent_ligne, $txtva, $uselocaltax1_rate, $uselocaltax2_rate, $remise_percent_global, $price_base_type, $info_bits, $type, $seller =
null, $localtaxes_array = [], $progress = 100, $multicurrency_tx = 1, $pu_devise = 0, $multicurrency_code =
'')
97 if (empty($info_bits)) {
103 if (empty($seller) || !is_object($seller)) {
104 dol_syslog(
"Price.lib::calcul_price_total Warning: function is called with parameter seller that is missing", LOG_WARNING);
112 if (empty($localtaxes_array) || !is_array($localtaxes_array)) {
113 dol_syslog(
"Price.lib::calcul_price_total Warning: function is called with parameter localtaxes_array that is missing or empty", LOG_WARNING);
115 if (!is_numeric($txtva)) {
116 dol_syslog(
"Price.lib::calcul_price_total Warning: function was called with a parameter vat rate that is not a real numeric value. There is surely a bug.", LOG_ERR);
117 } elseif ($txtva >= 1000) {
118 dol_syslog(
"Price.lib::calcul_price_total Warning: function was called with a bad value for vat rate (should be often < 100, always < 1000). There is surely a bug.", LOG_ERR);
123 $countryid = $seller->country_id;
125 if (is_numeric($uselocaltax1_rate)) {
126 $uselocaltax1_rate = (float) $uselocaltax1_rate;
128 if (is_numeric($uselocaltax2_rate)) {
129 $uselocaltax2_rate = (float) $uselocaltax2_rate;
132 if ($uselocaltax1_rate < 0) {
133 $uselocaltax1_rate = $seller->localtax1_assuj;
135 if ($uselocaltax2_rate < 0) {
136 $uselocaltax2_rate = $seller->localtax2_assuj;
140 dol_syslog(
'Price.lib::calcul_price_total qty='.$qty.
' pu='.$pu.
' remise_percent_ligne='.$remise_percent_ligne.
' txtva='.$txtva.
' uselocaltax1_rate='.$uselocaltax1_rate.
' uselocaltax2_rate='.$uselocaltax2_rate.
' remise_percent_global='.$remise_percent_global.
' price_base_type='.$price_base_type.
' type='.$type.
' progress='.$progress);
145 $localtax1_rate = 1000;
146 $localtax2_rate = 1000;
148 if (is_array($localtaxes_array) && count($localtaxes_array)) {
149 $localtax1_type = $localtaxes_array[0];
150 $localtax1_rate = $localtaxes_array[1];
151 $localtax2_type = $localtaxes_array[2];
152 $localtax2_rate = $localtaxes_array[3];
156 dol_syslog(
"Price.lib::calcul_price_total search vat information using old deprecated method", LOG_WARNING);
158 $sql =
"SELECT taux, localtax1, localtax2, localtax1_type, localtax2_type";
159 $sql .=
" FROM ".MAIN_DB_PREFIX.
"c_tva as cv";
160 $sql .=
" WHERE cv.taux = ".((float) $txtva);
161 $sql .=
" AND cv.fk_pays = ".((int) $countryid);
162 $sql .=
" AND cv.entity IN (".getEntity(
'c_tva').
")";
163 $resql =
$db->query($sql);
165 $obj =
$db->fetch_object($resql);
167 $localtax1_rate = (float) $obj->localtax1;
168 $localtax2_rate = (float) $obj->localtax2;
169 $localtax1_type = $obj->localtax1_type;
170 $localtax2_type = $obj->localtax2_type;
179 if (empty($pu) && !empty($pu_devise)) {
180 if (!empty($multicurrency_tx)) {
181 $pu = $pu_devise / $multicurrency_tx;
183 dol_syslog(
'Price.lib::calcul_price_total function called with bad parameters combination (multicurrency_tx empty when pu_devise not) ', LOG_ERR);
191 if (empty($pu_devise) && !empty($multicurrency_tx)) {
192 if (is_numeric($pu) && is_numeric($multicurrency_tx)) {
193 $pu_devise = $pu * $multicurrency_tx;
195 dol_syslog(
'Price.lib::calcul_price_total function called with bad parameters combination (pu or multicurrency_tx are not numeric)', LOG_ERR);
203 if ($remise_percent_ligne &&
getDolGlobalString(
'MAIN_APPLY_DISCOUNT_ON_UNIT_PRICE_THEN_ROUND_BEFORE_MULTIPLICATION_BY_QTY')) {
204 $tot_sans_remise = $pu * $qty * ($progress / 100);
205 $pudiscount = (float)
price2num($pu * ((
float) $remise_percent_ligne / 100),
getDolGlobalString(
'MAIN_APPLY_DISCOUNT_ON_UNIT_PRICE_THEN_ROUND_BEFORE_MULTIPLICATION_BY_QTY'));
206 $tot_avec_remise_ligne = (float)
price2num($pu - $pudiscount,
getDolGlobalString(
'MAIN_APPLY_DISCOUNT_ON_UNIT_PRICE_THEN_ROUND_BEFORE_MULTIPLICATION_BY_QTY')) * $qty * ($progress / 100);
208 $tot_sans_remise = $pu * $qty * ($progress / 100);
209 $tot_avec_remise_ligne = $tot_sans_remise * (1 - ((float) $remise_percent_ligne / 100));
211 $tot_avec_remise = $tot_avec_remise_ligne * (1 - ((float) $remise_percent_global / 100));
214 for ($i = 0; $i <= 15; $i++) {
221 if ($price_base_type !=
'TTC') {
222 $tot_sans_remise_withvat =
price2num($tot_sans_remise * (1 + ($txtva / 100)),
'MU');
223 $tot_avec_remise_withvat =
price2num($tot_avec_remise * (1 + ($txtva / 100)),
'MU');
225 $tot_sans_remise_withoutvat = $tot_sans_remise;
226 $tot_avec_remise_withoutvat = $tot_avec_remise;
228 $pu_withouttax = $pu;
229 $pu_withmainvat =
price2num($pu * (1 + ($txtva / 100)),
'MU');
231 $tot_sans_remise_withvat = $tot_sans_remise;
232 $tot_avec_remise_withvat = $tot_avec_remise;
234 $tot_sans_remise_withoutvat =
price2num($tot_sans_remise / (1 + ($txtva / 100)),
'MU');
235 $tot_avec_remise_withoutvat =
price2num($tot_avec_remise / (1 + ($txtva / 100)),
'MU');
237 $pu_withouttax =
price2num($pu / (1 + ($txtva / 100)),
'MU');
238 $pu_withmainvat = $pu;
243 $localtaxes = array(0, 0, 0);
245 switch ($localtax1_type) {
261 if ($uselocaltax1_rate && $apply_tax) {
262 $result[14] =
price2num(($tot_sans_remise_withvat * (1 + ($localtax1_rate / 100))) - $tot_sans_remise_withvat,
'MT');
263 $localtaxes[0] += $result[14];
265 $result[9] =
price2num(($tot_avec_remise_withvat * (1 + ($localtax1_rate / 100))) - $tot_avec_remise_withvat,
'MT');
266 $localtaxes[1] += $result[9];
268 $result[11] =
price2num(($pu_withmainvat * (1 + ($localtax1_rate / 100))) - $pu_withmainvat,
'MU');
269 $localtaxes[2] += $result[11];
273 switch ($localtax2_type) {
288 if ($uselocaltax2_rate && $apply_tax) {
289 $result[15] =
price2num(($tot_sans_remise_withvat * (1 + ($localtax2_rate / 100))) - $tot_sans_remise_withvat,
'MT');
290 $localtaxes[0] += $result[15];
292 $result[10] =
price2num(($tot_avec_remise_withvat * (1 + ($localtax2_rate / 100))) - $tot_avec_remise_withvat,
'MT');
293 $localtaxes[1] += $result[10];
295 $result[12] =
price2num(($pu_withmainvat * (1 + ($localtax2_rate / 100))) - $pu_withmainvat,
'MU');
296 $localtaxes[2] += $result[12];
300 if ($price_base_type !=
'TTC') {
302 $result[6] =
price2num($tot_sans_remise,
'MT');
303 $result[8] =
price2num($tot_sans_remise * (1 + ((($info_bits & 1) ? 0 : $txtva) / 100)) + $localtaxes[0],
'MT');
304 $result8bis =
price2num($tot_sans_remise * (1 + ($txtva / 100)) + $localtaxes[0],
'MT');
305 $result[7] =
price2num((
float) $result8bis - ((
float) $result[6] + $localtaxes[0]),
'MT');
307 $result[0] =
price2num($tot_avec_remise,
'MT');
308 $result[2] =
price2num($tot_avec_remise * (1 + ((($info_bits & 1) ? 0 : $txtva) / 100)) + $localtaxes[1],
'MT');
309 $result2bis =
price2num($tot_avec_remise * (1 + ($txtva / 100)) + $localtaxes[1],
'MT');
310 $result[1] =
price2num((
float) $result2bis - ((
float) $result[0] + $localtaxes[1]),
'MT');
313 $result[5] =
price2num($pu * (1 + ((($info_bits & 1) ? 0 : $txtva) / 100)) + $localtaxes[2],
'MU');
314 $result5bis =
price2num($pu * (1 + ($txtva / 100)) + $localtaxes[2],
'MU');
315 $result[4] =
price2num((
float) $result5bis - ((
float) $result[3] + $localtaxes[2]),
'MU');
318 $result[8] =
price2num($tot_sans_remise + $localtaxes[0],
'MT');
319 $result[6] =
price2num($tot_sans_remise / (1 + ((($info_bits & 1) ? 0 : $txtva) / 100)),
'MT');
320 $result6bis =
price2num($tot_sans_remise / (1 + ($txtva / 100)),
'MT');
321 $result[7] =
price2num((
float) $result[8] - ((
float) $result6bis + $localtaxes[0]),
'MT');
323 $result[2] =
price2num((
float) $tot_avec_remise + (
float) $localtaxes[1],
'MT');
324 $result[0] =
price2num((
float) $tot_avec_remise / (1 + ((($info_bits & 1) ? 0 : (float) $txtva) / 100)),
'MT');
325 $result0bis =
price2num((
float) $tot_avec_remise / (1 + ((
float) $txtva / 100)),
'MT');
326 $result[1] =
price2num((
float) $result[2] - ((
float) $result0bis + (
float) $localtaxes[1]),
'MT');
328 $result[5] =
price2num($pu + $localtaxes[2],
'MU');
329 $result[3] =
price2num($pu / (1 + ((($info_bits & 1) ? 0 : $txtva) / 100)),
'MU');
330 $result3bis =
price2num($pu / (1 + ($txtva / 100)),
'MU');
331 $result[4] =
price2num((
float) $result[5] - ((
float) $result3bis + (
float) $localtaxes[2]),
'MU');
337 switch ($localtax1_type) {
352 if ($uselocaltax1_rate && $apply_tax) {
353 $result[14] =
price2num(($tot_sans_remise_withoutvat * (1 + ($localtax1_rate / 100))) - $tot_sans_remise_withoutvat,
'MT');
354 $result[8] += $result[14];
356 $result[9] =
price2num(($tot_avec_remise_withoutvat * (1 + ($localtax1_rate / 100))) - $tot_avec_remise_withoutvat,
'MT');
357 $result[2] += $result[9];
359 $result[11] =
price2num(($pu_withouttax * (1 + ($localtax1_rate / 100))) - $pu_withouttax,
'MU');
360 $result[5] += $result[11];
364 switch ($localtax2_type) {
379 if ($uselocaltax2_rate && $apply_tax) {
380 $result[15] =
price2num(($tot_sans_remise_withoutvat * (1 + ($localtax2_rate / 100))) - $tot_sans_remise_withoutvat,
'MT');
381 $result[8] += $result[15];
383 $result[10] =
price2num(($tot_avec_remise_withoutvat * (1 + ($localtax2_rate / 100))) - $tot_avec_remise_withoutvat,
'MT');
384 $result[2] += $result[10];
386 $result[12] =
price2num(($pu_withouttax * (1 + ($localtax2_rate / 100))) - $pu_withouttax,
'MU');
387 $result[5] += $result[12];
392 if ($price_base_type !=
'TTC') {
397 $result[2] =
price2num((
float) $result[0] + (
float) $result[1] + (
float) $result[9] + (
float) $result[10],
'MT');
403 $result[0] =
price2num((
float) $result[2] - (
float) $result[1] - (
float) $result[9] - (
float) $result[10],
'MT');
408 if ($multicurrency_tx != 1) {
409 if ($multicurrency_code) {
415 $keyforforeignMAIN_MAX_DECIMALS_UNIT =
'MAIN_MAX_DECIMALS_UNIT_'.$multicurrency_code;
416 $keyforforeignMAIN_MAX_DECIMALS_TOT =
'MAIN_MAX_DECIMALS_TOT_'.$multicurrency_code;
417 $keyforforeignMAIN_ROUNDING_RULE_TOT =
'MAIN_ROUNDING_RULE_TOT_'.$multicurrency_code;
426 $newresult =
calcul_price_total($qty, $pu_devise, $remise_percent_ligne, $txtva, $uselocaltax1_rate, $uselocaltax2_rate, $remise_percent_global, $price_base_type, $info_bits, $type, $seller, $localtaxes_array, $progress, 1, 0,
'');
428 if ($multicurrency_code) {
430 $conf->global->MAIN_MAX_DECIMALS_UNIT = $savMAIN_MAX_DECIMALS_UNIT;
431 $conf->global->MAIN_MAX_DECIMALS_TOT = $savMAIN_MAX_DECIMALS_TOT;
432 $conf->global->MAIN_ROUNDING_RULE_TOT = $savMAIN_ROUNDING_RULE_TOT;
435 $result[16] = $newresult[0];
436 $result[17] = $newresult[1];
437 $result[18] = $newresult[2];
438 $result[19] = $newresult[3];
439 $result[20] = $newresult[4];
440 $result[21] = $newresult[5];
441 $result[22] = $newresult[6];
442 $result[23] = $newresult[7];
443 $result[24] = $newresult[8];
444 $result[25] = $newresult[9];
445 $result[26] = $newresult[10];
447 $result[16] = $result[0];
448 $result[17] = $result[1];
449 $result[18] = $result[2];
450 $result[19] = $result[3];
451 $result[20] = $result[4];
452 $result[21] = $result[5];
453 $result[22] = $result[6];
454 $result[23] = $result[7];
455 $result[24] = $result[8];
456 $result[25] = $result[9];
457 $result[26] = $result[10];
460 dol_syslog(
'Price.lib::calcul_price_total MAIN_ROUNDING_RULE_TOT='.
getDolGlobalString(
'MAIN_ROUNDING_RULE_TOT').
' pu='.$pu.
' qty='.$qty.
' price_base_type='.$price_base_type.
' total_ht='.$result[0].
'-total_vat='.$result[1].
'-total_ttc='.$result[2]);
463 $parameters = array(
'result' => $result);
467 $reshook = $hookmanager->executeHooks(
'calcul_price_total', $parameters, $tmpobject, $tmpaction);
468 if ($reshook > 0 && !empty($hookmanager->resArray[
'result'])) {
469 $result = $hookmanager->resArray[
'result'];