changeset e49acf5baa3d in modules/account_invoice:default
details: 
https://hg.tryton.org/modules/account_invoice?cmd=changeset;node=e49acf5baa3d
description:
        Update unit price after invoice posted and move done

        issue9962
        review292991002
diffstat:

 invoice.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 2816523d7ceb -r e49acf5baa3d invoice.py
--- a/invoice.py        Thu Jan 28 11:01:11 2021 +0100
+++ b/invoice.py        Wed Feb 03 21:21:03 2021 +0100
@@ -245,7 +245,7 @@
     def __setup__(cls):
         super(Invoice, cls).__setup__()
         cls._check_modify_exclude = ['state', 'payment_lines', 'cancel_move',
-                'invoice_report_cache', 'invoice_report_format']
+                'invoice_report_cache', 'invoice_report_format', 'lines']
         cls._order = [
             ('number', 'DESC'),
             ('id', 'DESC'),

Reply via email to