From 8e35891b20709d0f8bf0357bc828abc4a241bd9c Mon Sep 17 00:00:00 2001 From: RisvanaCybro Date: Tue, 25 Jun 2024 18:45:06 +0530 Subject: [PATCH] Jun 25: [FIX] Bug Fixed 'low_stocks_product_alert' --- low_stocks_product_alert/__manifest__.py | 2 +- low_stocks_product_alert/models/product_product.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/low_stocks_product_alert/__manifest__.py b/low_stocks_product_alert/__manifest__.py index ac7c9e6ff..ab0cebc8a 100644 --- a/low_stocks_product_alert/__manifest__.py +++ b/low_stocks_product_alert/__manifest__.py @@ -21,7 +21,7 @@ ############################################################################# { 'name': "Product Low Stock Alert", - 'version': '16.0.1.0.0', + 'version': '16.0.1.0.1', 'summary': """Product Low Stock Alert Display in Point of Sale and Product Views""", "category": 'Warehouse,Point of Sale', diff --git a/low_stocks_product_alert/models/product_product.py b/low_stocks_product_alert/models/product_product.py index 82c3d3fd7..c334e0289 100644 --- a/low_stocks_product_alert/models/product_product.py +++ b/low_stocks_product_alert/models/product_product.py @@ -36,7 +36,7 @@ class ProductProduct(models.Model): alert_tag = fields.Char( string='Product Alert Tag', compute='_compute_alert_tag', - help='This field represents the alert tag of the product.', store=True) + help='This field represents the alert tag of the product.') is_low_stock_alert = fields.Boolean( string="Low Stock Alert", help='This field determines the minimum stock quantity at which a low '