From 1f3d8e8d64b8e2919b18ac42804a454af4abe9c2 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 (cherry picked from commit a65b200eb7856a5907f9a2af8b6cf1192ec753a5) --- 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 1c1a74a9d2d..96600114e0b 100644 --- a/erpnext/accounts/doctype/pos_invoice/pos_invoice.py +++ b/erpnext/accounts/doctype/pos_invoice/pos_invoice.py @@ -216,6 +216,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