[MIG] base_global_discount: Migration to 13.0

[UPD] Update base_global_discount.pot

Update translation files

Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: server-backend-13.0/server-backend-13.0-base_global_discount
Translate-URL: https://translation.odoo-community.org/projects/server-backend-13-0/server-backend-13-0-base_global_discount/
This commit is contained in:
Ernesto Tejeda
2020-11-03 19:07:07 -05:00
committed by Omar (Comunitea)
parent bfda1e6a6a
commit b215abe4f7
15 changed files with 85 additions and 40 deletions

View File

@@ -9,10 +9,10 @@ class TestGlobalDiscount(common.SavepointCase):
super().setUpClass()
cls.global_discount_obj = cls.env["global.discount"]
cls.global_discount_1 = cls.global_discount_obj.create(
{"name": "Test Discount 1", "discount_scope": "sale", "discount": 20,}
{"name": "Test Discount 1", "discount_scope": "sale", "discount": 20}
)
cls.global_discount_2 = cls.global_discount_obj.create(
{"name": "Test Discount 2", "discount_scope": "sale", "discount": 30,}
{"name": "Test Discount 2", "discount_scope": "sale", "discount": 30}
)
def test_01_global_discounts(self):