Fix issue #10186 no display of stock per batch series.
This commit is contained in:
Laurent Destailleur 2018-12-14 19:34:11 +01:00 committed by GitHub
commit 45115a9590
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1376,7 +1376,7 @@ if ($action == 'create')
$detail.= $langs->trans("Batch").': '.$dbatch->batch;
$detail.= ' - '.$langs->trans("SellByDate").': '.dol_print_date($dbatch->sellby,"day");
$detail.= ' - '.$langs->trans("EatByDate").': '.dol_print_date($dbatch->eatby,"day");
$detail.= ' - '.$langs->trans("Qty").': '.$dbatch->dluo_qty;
$detail.= ' - '.$langs->trans("Qty").': '.$dbatch->qty;
$detail.= '<br>';
print $detail;