瀏覽代碼

fixing the total ttc in the multicurrency section

FLIO 2 年之前
父節點
當前提交
819e44fb7c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      htdocs/commande/card.php

+ 1 - 1
htdocs/commande/card.php

@@ -2741,7 +2741,7 @@ if ($action == 'create' && $usercancreate) {
 		print '<td class="valuefield nowrap right amountcard">' . price($object->total_ttc, 1, '', 1, -1, -1, $conf->currency) . '</td>';
 		if (isModEnabled("multicurrency") && ($object->multicurrency_code && $object->multicurrency_code != $conf->currency)) {
 			// Multicurrency Amount TTC
-			print '<td class="valuefield nowrap right amountcard">' . price($object->total_ttc, 1, '', 1, -1, -1, $object->multicurrency_code) . '</td>';
+			print '<td class="valuefield nowrap right amountcard">' . price($object->multicurrency_total_ttc, 1, '', 1, -1, -1, $object->multicurrency_code) . '</td>';
 		}
 		print '</tr>';