From 7d081ee7c0a8a216a0c04067371597325d0f7dad Mon Sep 17 00:00:00 2001 From: Rodia Date: Sun, 27 Jul 2025 00:13:08 -0300 Subject: [PATCH] fix: Machete Calzabana --- sale.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sale.py b/sale.py index 52ff358..a6135bf 100644 --- a/sale.py +++ b/sale.py @@ -151,8 +151,8 @@ class Sale(metaclass=PoolMeta): invoice = record.invoices[0] data = {} data['invoice_number'] = invoice.number - subtype = invoice.subtype - data['resolution'] = cls.get_invoice_resolution(subtype) + #subtype = invoice.subtype + #data['resolution'] = cls.get_invoice_resolution(subtype) return data @@ -171,8 +171,8 @@ class Sale(metaclass=PoolMeta): data["shop_nit"] = shop.company.party.tax_identifier.code data["shop_address"] = shop.address.street data['invoice'] = cls.get_invoice(record) - data['fe_cufe'] = record.fe_qrcode - data['cufe'] = record.fe_cufe + # data['fe_cufe'] = record.fe_qrcode + # data['cufe'] = record.fe_cufe data["party"] = record.party.name data["tax_identifier_type"] = record.party.tax_identifier.type_string data["tax_identifier_code"] = record.party.tax_identifier.code