diff --git a/htdocs/reception/card.php b/htdocs/reception/card.php
index 0610430ba13..ffbb5dbd765 100644
--- a/htdocs/reception/card.php
+++ b/htdocs/reception/card.php
@@ -1918,7 +1918,7 @@ else if ($id || $ref)
// Warehouse source
print '
' . $formproduct->selectWarehouses($lines[$i]->fk_entrepot, 'entl'.$line_id, '', 1, 0, $lines[$i]->fk_product, '', 1). ' | ';
// Batch number managment
- if($conf->productbatch->enabled){
+ if($conf->productbatch->enabled && !empty($lines[$i]->product->status_batch)){
print ' ';
print $langs->trans('EatByDate').' : ';
print $form->select_date($lines[$i]->eatby,'dlc' .$line_id , '', '', 1, ""). '';
|