From 0ac2e8514aaf6c264f7618364a4a7e35e407955c Mon Sep 17 00:00:00 2001 From: laurentbarontini Date: Wed, 5 Aug 2026 20:03:29 +0200 Subject: [PATCH] Linkage --- modules/purchase_trade/stock.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/purchase_trade/stock.py b/modules/purchase_trade/stock.py index ebf1891..0c2da8c 100755 --- a/modules/purchase_trade/stock.py +++ b/modules/purchase_trade/stock.py @@ -5194,6 +5194,16 @@ class LotReportLinkageRecord: def _report_line_amount(cls, line): return ShipmentIn._report_line_amount(line) + @classmethod + def _report_lot_quantity_for_line(cls, lot, line): + return ShipmentIn._report_lot_quantity_for_line(lot, line) + + _get_report_linkage_lot_quantities_by_line = ( + ShipmentIn._get_report_linkage_lot_quantities_by_line) + _report_linkage_line_quantity = ( + ShipmentIn._report_linkage_line_quantity) + _report_linkage_line_amount = ShipmentIn._report_linkage_line_amount + @classmethod def _report_fee_amount(cls, fee): return ShipmentIn._report_fee_amount(fee)