Skip to content

Commit 08834f6

Browse files
committed
Sync gross weight instead of net weight on invoice lines
1 parent bb28c48 commit 08834f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Apps/W1/Shopify/App/src/Invoicing/Codeunits/ShpfyPostedInvoiceExport.Codeunit.al

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ codeunit 30362 "Shpfy Posted Invoice Export"
319319
TempOrderLine."Gift Card" := false;
320320
TempOrderLine.Taxable := false;
321321
TempOrderLine."Unit Price" := SalesInvoiceLine."Unit Price";
322-
TempOrderLine.Weight := SalesInvoiceLine."Net Weight";
322+
TempOrderLine.Weight := SalesInvoiceLine."Gross Weight";
323323
TempOrderHeader."Discount Amount" += SalesInvoiceLine."Line Discount Amount";
324324
TempOrderHeader.Modify(false);
325325

0 commit comments

Comments
 (0)