From a65b200eb7856a5907f9a2af8b6cf1192ec753a5 Mon Sep 17 00:00:00 2001 From: Lewis Date: Tue, 12 Aug 2025 17:17:08 -0400 Subject: [PATCH] fix(pos): populate packed_items table in POS Invoice --- erpnext/accounts/doctype/pos_invoice/pos_invoice.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/accounts/doctype/pos_invoice/pos_invoice.py b/erpnext/accounts/doctype/pos_invoice/pos_invoice.py index 99c3dca704c..a375920fa98 100644 --- a/erpnext/accounts/doctype/pos_invoice/pos_invoice.py +++ b/erpnext/accounts/doctype/pos_invoice/pos_invoice.py @@ -217,6 +217,7 @@ class POSInvoice(SalesInvoice): self.validate_loyalty_transaction() self.validate_company_with_pos_company() self.validate_full_payment() + self.update_packing_list() if self.coupon_code: from erpnext.accounts.doctype.pricing_rule.utils import validate_coupon_code