Author: mridulpathak
Date: Sat Dec 19 13:45:22 2015
New Revision: 1720925
URL: http://svn.apache.org/viewvc?rev=1720925&view=rev
Log:
[OFBIZ-6185] Type-ahead regarding LookupInvoice in AP doesn't return result. Applying patch
from OFBIZ-6185. Thanks Pierre Smits for reporting the issue. Applying fix from trunk r1720920.
Modified:
ofbiz/branches/release12.04/applications/accounting/widget/ap/LookupScreens.xml
ofbiz/branches/release12.04/applications/accounting/widget/ar/LookupScreens.xml
Modified: ofbiz/branches/release12.04/applications/accounting/widget/ap/LookupScreens.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/release12.04/applications/accounting/widget/ap/LookupScreens.xml?rev=1720925&r1=1720924&r2=1720925&view=diff
==============================================================================
--- ofbiz/branches/release12.04/applications/accounting/widget/ap/LookupScreens.xml (original)
+++ ofbiz/branches/release12.04/applications/accounting/widget/ap/LookupScreens.xml Sat Dec
19 13:45:22 2015
@@ -33,6 +33,8 @@ under the License.
<set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer"
default-value="0"/>
<property-to-field resource="widget" property="widget.form.defaultViewSize"
field="viewSizeDefaultValue"/>
<set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer"
default-value="${viewSizeDefaultValue}"/>
+ <set field="entityName" value="Invoice"/>
+ <set field="searchFields" value="[invoiceId, partyIdFrom, partyId, description,
currencyUomId]"/>
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
Modified: ofbiz/branches/release12.04/applications/accounting/widget/ar/LookupScreens.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/release12.04/applications/accounting/widget/ar/LookupScreens.xml?rev=1720925&r1=1720924&r2=1720925&view=diff
==============================================================================
--- ofbiz/branches/release12.04/applications/accounting/widget/ar/LookupScreens.xml (original)
+++ ofbiz/branches/release12.04/applications/accounting/widget/ar/LookupScreens.xml Sat Dec
19 13:45:22 2015
@@ -33,6 +33,8 @@ under the License.
<set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer"
default-value="0"/>
<property-to-field resource="widget" property="widget.form.defaultViewSize"
field="viewSizeDefaultValue"/>
<set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer"
default-value="${viewSizeDefaultValue}"/>
+ <set field="entityName" value="Invoice"/>
+ <set field="searchFields" value="[invoiceId, partyIdFrom, partyId, description,
currencyUomId]"/>
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
|