Update price.php

This commit is contained in:
Laurent Destailleur 2022-09-13 01:11:09 +02:00 committed by GitHub
parent 3d88e8cc0e
commit 7485188b49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1188,7 +1188,7 @@ if (!empty($conf->global->PRODUIT_MULTIPRICES) || !empty($conf->global->PRODUIT_
print '</td></tr>';
// Price
print '<tr id="selling_price"><td>'.$langs->trans("SellingPrice").'</td><td>';
print '<tr class="field_selling_price"><td>'.$langs->trans("SellingPrice").'</td><td>';
if ($object->price_base_type == 'TTC') {
print price($object->price_ttc).' '.$langs->trans($object->price_base_type);
} else {
@ -1201,7 +1201,7 @@ if (!empty($conf->global->PRODUIT_MULTIPRICES) || !empty($conf->global->PRODUIT_
print '</td></tr>';
// Price minimum
print '<tr id="min_price"><td>'.$langs->trans("MinPrice").'</td><td>';
print '<tr class="field_min_price"><td>'.$langs->trans("MinPrice").'</td><td>';
if ($object->price_base_type == 'TTC') {
print price($object->price_min_ttc).' '.$langs->trans($object->price_base_type);
} else {