changeset 358e7c38749d in modules/account:5.2
details: https://hg.tryton.org/modules/account?cmd=changeset;node=358e7c38749d
description:
        Skip manual flag for test tax result

        issue9211
        review289671002
        (grafted from 73c4fc2903c7c589b0b378b1871cde0541d8a28f)
diffstat:

 tax.py |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (11 lines):

diff -r 31c47d61d46d -r 358e7c38749d tax.py
--- a/tax.py    Sat Apr 04 16:56:38 2020 +0200
+++ b/tax.py    Sat Apr 18 13:01:51 2020 +0200
@@ -1736,6 +1736,7 @@
         result = []
         if all([self.tax_date, self.unit_price, self.quantity, self.currency]):
             for taxline in self._get_taxes():
+                del taxline['manual']
                 result.append(Result(**taxline))
         self.result = result
         return self._changed_values.get('result', [])

Reply via email to