diff --git a/stock_available_unreserved/models/product_product.py b/stock_available_unreserved/models/product_product.py index 00f11b5a0..09eaa4fdb 100644 --- a/stock_available_unreserved/models/product_product.py +++ b/stock_available_unreserved/models/product_product.py @@ -17,6 +17,8 @@ class ProductProduct(models.Model): digits="Product Unit of Measure", compute="_compute_qty_available_not_reserved", search="_search_quantity_unreserved", + help="Quantity of this product that is " + "not currently reserved for a stock move", ) def _prepare_domain_available_not_reserved(self): diff --git a/stock_available_unreserved/models/product_template.py b/stock_available_unreserved/models/product_template.py index 2b9c83b90..073b32c8d 100644 --- a/stock_available_unreserved/models/product_template.py +++ b/stock_available_unreserved/models/product_template.py @@ -13,6 +13,8 @@ class ProductTemplate(models.Model): digits="Product Unit of Measure", compute="_compute_product_available_not_res", search="_search_quantity_unreserved", + help="Quantity of this product that is " + "not currently reserved for a stock move", ) @api.depends("product_variant_ids.qty_available_not_res")