From 635874b0a7b7d29c052cadf369a617a617ffdc20 Mon Sep 17 00:00:00 2001
From: Tatuya Kamada <tatuya@nexedi.com>
Date: Thu, 12 Nov 2009 01:33:14 +0000
Subject: [PATCH] Rename the properties name min/max stock with min/max
 inventory. Because the names are more proper for the model.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@30511 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5/PropertySheet/FlowCapacity.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/product/ERP5/PropertySheet/FlowCapacity.py b/product/ERP5/PropertySheet/FlowCapacity.py
index 237dba6c7c..d7ff4081a2 100644
--- a/product/ERP5/PropertySheet/FlowCapacity.py
+++ b/product/ERP5/PropertySheet/FlowCapacity.py
@@ -60,13 +60,13 @@ class FlowCapacity:
       'type'        : 'float',
       'default'     : 0.0,
       'mode'        : 'w' },
-    { 'id'          : 'min_stock',
-      'description' : """The minimal stock quantity of a resource.""",
+    { 'id'          : 'min_inventory',
+      'description' : """The minimal quantity of a resource in inventory.""",
       'type'        : 'float',
       'default'     : 0.0,
       'mode'        : 'w' },
-    { 'id'          : 'max_stock',
-      'description' : """The maximal stock quantity of a resource.""",
+    { 'id'          : 'max_inventory',
+      'description' : """The maximal quantity of a resource in inventory.""",
       'type'        : 'float',
       'default'     : 0.0,
       'mode'        : 'w' },
-- 
2.30.9