Fix warning

This commit is contained in:
Laurent Destailleur 2020-11-28 15:02:05 +01:00
parent 535cfea03d
commit 147a12a922

View File

@ -526,12 +526,12 @@ class pdf_rouget extends ModelePdfExpedition
$pdf->SetXY($this->posxweightvol, $curY);
$weighttxt = '';
if ($object->lines[$i]->fk_product_type == 0 && $object->lines[$i]->weight)
if (empty($object->lines[$i]->fk_product_type) && $object->lines[$i]->weight)
{
$weighttxt = round($object->lines[$i]->weight * $object->lines[$i]->qty_shipped, 5).' '.measuringUnitString(0, "weight", $object->lines[$i]->weight_units, 1);
}
$voltxt = '';
if ($object->lines[$i]->fk_product_type == 0 && $object->lines[$i]->volume)
if (empty($object->lines[$i]->fk_product_type) && $object->lines[$i]->volume)
{
$voltxt = round($object->lines[$i]->volume * $object->lines[$i]->qty_shipped, 5).' '.measuringUnitString(0, "volume", $object->lines[$i]->volume_units ? $object->lines[$i]->volume_units : 0, 1);
}