diff --git a/product_warranty/models/product_supplierinfo.py b/product_warranty/models/product_supplierinfo.py index e9c3dd64..070b7606 100644 --- a/product_warranty/models/product_supplierinfo.py +++ b/product_warranty/models/product_supplierinfo.py @@ -18,7 +18,7 @@ class ProductSupplierInfo(models.Model): @api.depends("warranty_return_partner") def _compute_warranty_return_address(self): - """ Method to return the partner delivery address or if none, the + """Method to return the partner delivery address or if none, the default address """ for record in self: diff --git a/setup/product_warranty/setup.py b/setup/product_warranty/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/product_warranty/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)