Skip to content

Commit

Permalink
fix: translation
Browse files Browse the repository at this point in the history
  • Loading branch information
FHenry committed Sep 4, 2024
1 parent a30c0b4 commit 2bd3da1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/expedition/list.php
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@
$num = count($lines);

for ($i = 0; $i < $num; $i++) {
$desc = ($lines[$i]->product_desc ? $lines[$i]->product_desc : '');
$desc = ($lines[$i]->desc ? $lines[$i]->desc : '');
// If we build one invoice for several sendings, we must put the ref of sending on the invoice line
if (!empty($createbills_onebythird)) {
$desc = dol_concatdesc($desc, $langs->trans("Order").': '.$expdCmdSrc->ref. ' - '. $langs->trans("Shipment").': '.$expd->ref.($expd->date_shipping ? ' - '.dol_print_date($expd->date_shipping, 'day'):''));
Expand Down

0 comments on commit 2bd3da1

Please sign in to comment.