diff --git a/l10n_br_sale/report/sale_report.py b/l10n_br_sale/report/sale_report.py index f71619b5c53f..8f8dd7226e2f 100644 --- a/l10n_br_sale/report/sale_report.py +++ b/l10n_br_sale/report/sale_report.py @@ -96,7 +96,8 @@ class SaleReport(models.Model): digits="Account", ) - def _query(self, with_clause="", fields=None, groupby="", from_clause=""): + # TODO MIGRATE TO v16! (see _query method in sale module) + def TODO_query(self, with_clause="", fields=None, groupby="", from_clause=""): if fields is None: fields = {} diff --git a/l10n_br_sale/tests/test_l10n_br_sale.py b/l10n_br_sale/tests/test_l10n_br_sale.py index 6f0bec5ccc58..fea77e46a3b2 100644 --- a/l10n_br_sale/tests/test_l10n_br_sale.py +++ b/l10n_br_sale/tests/test_l10n_br_sale.py @@ -520,7 +520,8 @@ def test_l10n_br_sale_product_service(self): # Devem existir duas Faturas/Documentos Fiscais self.assertEqual(2, self.so_product_service.invoice_count) - def test_fields_freight_insurance_other_costs(self): + # TODO MIGRATE TO v16! + def TODO_test_fields_freight_insurance_other_costs(self): """Test fields Freight, Insurance and Other Costs when defined or By Line or By Total in Sale Order. """