Update card.php

This commit is contained in:
Laurent Destailleur 2020-08-23 19:51:13 +02:00 committed by GitHub
parent e24027fb1e
commit a6f838a6e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1072,8 +1072,14 @@ if ($action == 'create')
print '<td class="center">'.$langs->trans("QtyOrdered").'</td>';
print '<td class="center">'.$langs->trans("QtyShipped").'</td>';
print '<td class="center">'.$langs->trans("QtyToShip");
print ' <br>(<a href="#" id="autofill">'.$langs->trans("Fill").'</a>';
print ' / <a href="#" id="autoreset">'.$langs->trans("Reset").'</a>)';
if (empty($conf->productbatch->enabled))
{
print '<br><a href="#" id="autofill">'.$langs->trans("Fill").'</a>';
print ' / ';
} else {
print '<br>';
}
print '<a href="#" id="autoreset">'.$langs->trans("Reset").'</a>';
print '</td>';
if (!empty($conf->stock->enabled))
{