diff --git a/product_export_with_images/__manifest__.py b/product_export_with_images/__manifest__.py index 8ccfbd6f9..fcc0ec1e9 100644 --- a/product_export_with_images/__manifest__.py +++ b/product_export_with_images/__manifest__.py @@ -21,7 +21,7 @@ ############################################################################### { "name": "Export Product Images", - "version": "17.0.1.0.0", + "version": "17.0.1.0.1", "category": "Warehouse", "summary": """To export product details along with the product images.""", "description": "The allowed users can download the product details " diff --git a/product_export_with_images/doc/RELEASE_NOTES.md b/product_export_with_images/doc/RELEASE_NOTES.md index 04e921e71..c888c215b 100644 --- a/product_export_with_images/doc/RELEASE_NOTES.md +++ b/product_export_with_images/doc/RELEASE_NOTES.md @@ -4,3 +4,9 @@ #### Version 17.0.1.0.0 ##### ADD - Initial commit for Export Product Images + + +#### 29.08.2024 +#### Version 17.0.1.0.1 +#### BUGFIX +- Changed both product and product template label names \ No newline at end of file diff --git a/product_export_with_images/wizard/product_export.py b/product_export_with_images/wizard/product_export.py index 0951cf858..c9e471615 100644 --- a/product_export_with_images/wizard/product_export.py +++ b/product_export_with_images/wizard/product_export.py @@ -34,7 +34,7 @@ class ExportWizard(models.TransientModel): "product.template", string="Products", help="Products for exporting") product_ids = fields.Many2many( - "product.product", string="Products", + "product.product", string="Products Variants", help="Product variants for exporting") def action_export_products(self):