diff --git a/htdocs/supplier_proposal/card.php b/htdocs/supplier_proposal/card.php
index 366b510737b..9e92a5fb4b6 100644
--- a/htdocs/supplier_proposal/card.php
+++ b/htdocs/supplier_proposal/card.php
@@ -1778,45 +1778,45 @@ if ($action == 'create') {
if (!empty($conf->multicurrency->enabled) && ($object->multicurrency_code != $conf->currency)) {
// Multicurrency Amount HT
print '
| '.$form->editfieldkey('MulticurrencyAmountHT', 'multicurrency_total_ht', '', $object, 0).' | ';
- print ''.price($object->multicurrency_total_ht, '', $langs, 0, - 1, - 1, (!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency)).' | ';
+ print ''.price($object->multicurrency_total_ht, '', $langs, 0, - 1, - 1, (!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency)).' | ';
print '
';
// Multicurrency Amount VAT
print '| '.$form->editfieldkey('MulticurrencyAmountVAT', 'multicurrency_total_tva', '', $object, 0).' | ';
- print ''.price($object->multicurrency_total_tva, '', $langs, 0, - 1, - 1, (!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency)).' | ';
+ print ''.price($object->multicurrency_total_tva, '', $langs, 0, - 1, - 1, (!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency)).' | ';
print '
';
// Multicurrency Amount TTC
print '| '.$form->editfieldkey('MulticurrencyAmountTTC', 'multicurrency_total_ttc', '', $object, 0).' | ';
- print ''.price($object->multicurrency_total_ttc, '', $langs, 0, - 1, - 1, (!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency)).' | ';
+ print ''.price($object->multicurrency_total_ttc, '', $langs, 0, - 1, - 1, (!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency)).' | ';
print '
';
}
// Amount HT
print '| '.$langs->trans('AmountHT').' | ';
- print ''.price($object->total_ht, '', $langs, 0, - 1, - 1, $conf->currency).' | ';
+ print ''.price($object->total_ht, '', $langs, 0, - 1, - 1, $conf->currency).' | ';
print '
';
// Amount VAT
print '| '.$langs->trans('AmountVAT').' | ';
- print ''.price($object->total_tva, '', $langs, 0, - 1, - 1, $conf->currency).' | ';
+ print ''.price($object->total_tva, '', $langs, 0, - 1, - 1, $conf->currency).' | ';
print '
';
// Amount Local Taxes
if ($mysoc->localtax1_assuj == "1" || $object->total_localtax1 != 0) { // Localtax1
print '| '.$langs->transcountry("AmountLT1", $mysoc->country_code).' | ';
- print ''.price($object->total_localtax1, '', $langs, 0, - 1, - 1, $conf->currency).' | ';
+ print ''.price($object->total_localtax1, '', $langs, 0, - 1, - 1, $conf->currency).' | ';
print '
';
}
if ($mysoc->localtax2_assuj == "1" || $object->total_localtax2 != 0) { // Localtax2
print '| '.$langs->transcountry("AmountLT2", $mysoc->country_code).' | ';
- print ''.price($object->total_localtax2, '', $langs, 0, - 1, - 1, $conf->currency).' | ';
+ print ''.price($object->total_localtax2, '', $langs, 0, - 1, - 1, $conf->currency).' | ';
print '
';
}
// Amount TTC
print '| '.$langs->trans('AmountTTC').' | ';
- print ''.price($object->total_ttc, '', $langs, 0, - 1, - 1, $conf->currency).' | ';
+ print ''.price($object->total_ttc, '', $langs, 0, - 1, - 1, $conf->currency).' | ';
print '
';
print '';