From d8a6752bf757558c58718b13bea366d5a79f79fc Mon Sep 17 00:00:00 2001 From: sinergia Date: Mon, 11 Dec 2023 21:53:57 -0500 Subject: [PATCH] fix: Se corrigen errores en 6.8 --- sale.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sale.py b/sale.py index 3e79ed3..7040d56 100644 --- a/sale.py +++ b/sale.py @@ -17,7 +17,8 @@ class Sale(metaclass=PoolMeta): Monetary( "Total Discount", digits='currency', currency='currency'), 'get_amount') - total_discount_cache = fields.Numeric("Total Discount cache", digits='currency') + total_discount_cache = fields.Numeric( + "Total Discount cache", digits='currency') @classmethod def __setup__(cls):