Fix qty must not use html type "number" but "text" (need decimal values)

This commit is contained in:
Laurent Destailleur 2021-10-20 11:05:40 +02:00
parent 0371183ed9
commit 289f90fb1e
2 changed files with 2 additions and 2 deletions

View File

@ -1219,7 +1219,7 @@ if ($id > 0 || !empty($ref)) {
// Qty
print '<td class="right">';
if ($action == 'editline' && $lineid == $objp->dispatchlineid) {
print '<input style="width: 50px;" type="number" min="1" name="qty" value="'.$objp->qty.'" />';
print '<input style="width: 50px;" type="text" min="1" name="qty" value="'.$objp->qty.'" />';
} else {
print $objp->qty;
}

View File

@ -479,7 +479,7 @@ if ($resql) {
// var_dump($obj);
print ' <td><input class="minwidth200" name="dateinput" value="'. date('Y-m-d', dol_stringtotime($obj->date_sync)) .'" type="date"></td>';
print '<td>' . $form->selectMultiCurrency($obj->code, 'multicurrency_code', 1, " code != '".$conf->currency."'", true) . '</td>';
print ' <td><input type="number" min ="0" step="any" class="minwidth200" name="rateinput" value="' . dol_escape_htmltag($obj->rate) . '"></td>';
print ' <td><input type="text" min ="0" step="any" class="minwidth200" name="rateinput" value="' . dol_escape_htmltag($obj->rate) . '"></td>';
print '<td class="center nowrap ">';
print '<input type="hidden" name="page" value="'.dol_escape_htmltag($page).'">';