This is an automated email from the ASF dual-hosted git repository.

arunpati pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/trunk by this push:
     new ade63a8af6 Fixed the display value of allocateInventory on the Store 
screen.  (#1237)
ade63a8af6 is described below

commit ade63a8af6afb82e7671cb3bbe985073d2a24532
Author: Nameet Jain <[email protected]>
AuthorDate: Fri Jul 10 15:54:58 2026 +0530

    Fixed the display value of allocateInventory on the Store screen.  (#1237)
    
    Fixed: Fixed the display value of allocateInventory on the Store screen.
    Allocate Inventory flag is designed to be treated as N. However, on the
    Catalog screen, it shows Y when the flag value is null in the database,
    which is confusing. OFBIZ-12001
    
    Thanks Ankush Upadhyay and Nameet jain for your contribution.
---
 applications/product/widget/catalog/StoreForms.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/applications/product/widget/catalog/StoreForms.xml 
b/applications/product/widget/catalog/StoreForms.xml
index bb3a3c4216..69fb762e8d 100644
--- a/applications/product/widget/catalog/StoreForms.xml
+++ b/applications/product/widget/catalog/StoreForms.xml
@@ -420,6 +420,9 @@ under the License.
         <field name="orderDecimalQuantity" 
tooltip="${uiLabelMap.ProductOrderDecimalQuantityExistsToOverride}">
             <drop-down allow-empty="true" ><option key="Y" 
description="${uiLabelMap.CommonY}"/><option key="N" 
description="${uiLabelMap.CommonN}"/></drop-down>
         </field>
+        <field name="allocateInventory">
+            <drop-down allow-empty="false" no-current-selected-key="N"><option 
key="Y" description="${uiLabelMap.CommonY}"/><option key="N" 
description="${uiLabelMap.CommonN}"/></drop-down>
+        </field>
         <field name="submitButton" title="${uiLabelMap.CommonUpdate}"><submit 
button-type="button"/></field>
         <sort-order>
             <field-group>

Reply via email to