Skip to content

Commit

Permalink
All <dropdown> fields at order/widget/ordermgr/CustRequestForms.xml#F…
Browse files Browse the repository at this point in the history
…indRequests were updated with allow-multiple="true" to enable multi-value searches

https://issues.apache.org/jira/browse/OFBIZ-6315



git-svn-id: https://svn.apache.org/repos/asf/ofbiz/trunk@1683578 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
ccarlow committed Jun 4, 2015
1 parent 1821c0d commit 49ea792
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions applications/order/widget/ordermgr/CustRequestForms.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,20 @@ under the License.
header-row-style="header-row" default-table-style="basic-table">
<auto-fields-entity entity-name="CustRequest" default-field-type="find"/>
<field name="custRequestTypeId" position="2">
<drop-down allow-empty="true">
<drop-down allow-empty="true" allow-multiple="true">
<entity-options description="${description}" entity-name="CustRequestType" key-field-name="custRequestTypeId"/>
</drop-down>
</field>
<field name="statusId">
<drop-down allow-empty="true">
<drop-down allow-empty="true" allow-multiple="true">
<entity-options entity-name="StatusItem" description="${description}">
<entity-constraint name="statusTypeId" operator="equals" value="CUSTREQ_STTS"/>
<entity-order-by field-name="sequenceId"/>
</entity-options>
</drop-down>
</field>
<field name="salesChannelEnumId" title="${uiLabelMap.OrderSalesChannel}" position="2">
<drop-down allow-empty="true">
<drop-down allow-empty="true" allow-multiple="true">
<entity-options entity-name="Enumeration" description="${description}" key-field-name="enumId">
<entity-constraint name="enumTypeId" value="ORDER_SALES_CHANNEL"/>
<entity-order-by field-name="sequenceId"/>
Expand All @@ -58,7 +58,7 @@ under the License.
<field name="closedDateTime" position="2"><date-find/></field>
<field name="responseRequiredDate" position="2"><date-find/></field>
<field name="productStoreId" title="${uiLabelMap.ProductProductStore}">
<drop-down allow-empty="true">
<drop-down allow-empty="true" allow-multiple="true">
<entity-options description="${storeName}" entity-name="ProductStore" key-field-name="productStoreId">
<entity-order-by field-name="storeName"/>
</entity-options>
Expand Down

0 comments on commit 49ea792

Please sign in to comment.