From 3255a6ac027f4145c906cd498333fdad397b6f40 Mon Sep 17 00:00:00 2001 From: wilson gomez Date: Thu, 10 Feb 2022 07:41:00 -0500 Subject: [PATCH] minor fix --- invoice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invoice.py b/invoice.py index 658ca7e..39c536e 100644 --- a/invoice.py +++ b/invoice.py @@ -31,7 +31,7 @@ class InvoiceLine(metaclass=PoolMeta): def get_move_lines(self): Sale = Pool().get('sale.sale') if self.origin and self.invoice.type == 'out': - Sale._create_productions([self.origin]) + # Sale._create_productions([self.origin]) pass result = super(InvoiceLine, self).get_move_lines()