[OFBiz] SVN: r5911 - in trunk/applications:
accounting/webapp/accounting/lookup
manufacturing/webapp/manufacturing/lookup
manufacturing/webapp/manufacturing/requirement
manufacturing/webapp/manufacturing/routing
marketing/webapp/marketing/lookup order/webapp/ordermgr/lookup
order/webapp/ordermgr/requirement order/widget/ordermgr
party/webapp/partymgr/lookup product/webapp/catalog/lookup
product/webapp/facility/lookup
jonesde at svn.ofbiz.org
jonesde at svn.ofbiz.org
Tue Oct 4 14:54:36 EDT 2005
Author: jonesde
Date: 2005-10-04 13:54:21 -0500 (Tue, 04 Oct 2005)
New Revision: 5911
Modified:
trunk/applications/accounting/webapp/accounting/lookup/FieldLookupForms.xml
trunk/applications/manufacturing/webapp/manufacturing/lookup/FieldLookupForms.xml
trunk/applications/manufacturing/webapp/manufacturing/requirement/RequirementForms.xml
trunk/applications/manufacturing/webapp/manufacturing/routing/RoutingTaskForms.xml
trunk/applications/marketing/webapp/marketing/lookup/LookupForms.xml
trunk/applications/order/webapp/ordermgr/lookup/FieldLookupForms.xml
trunk/applications/order/webapp/ordermgr/requirement/RequirementForms.xml
trunk/applications/order/widget/ordermgr/OrderEntryForms.xml
trunk/applications/party/webapp/partymgr/lookup/LookupForms.xml
trunk/applications/product/webapp/catalog/lookup/FieldLookupForms.xml
trunk/applications/product/webapp/facility/lookup/FieldLookupForms.xml
Log:
Removed default-value=equals from a bunch of text-find fields; not sure how these started or why, but in the passed the default-value was ignored so it wasn't causing any issue
Modified: trunk/applications/accounting/webapp/accounting/lookup/FieldLookupForms.xml
===================================================================
--- trunk/applications/accounting/webapp/accounting/lookup/FieldLookupForms.xml 2005-10-04 07:42:18 UTC (rev 5910)
+++ trunk/applications/accounting/webapp/accounting/lookup/FieldLookupForms.xml 2005-10-04 18:54:21 UTC (rev 5911)
@@ -30,8 +30,8 @@
<form name="lookupFixedAsset" target="LookupFixedAsset" title="" type="single"
default-title-style="tableheadtext" default-tooltip-style="tabletext" default-widget-style="inputBox">
<auto-fields-entity entity-name="FixedAsset" default-field-type="hidden" />
- <field name="fixedAssetId" title="${uiLabelMap.AccountingFixedAssetId}"><text-find default-value="equals"/></field>
- <field name="fixedAssetName" title="${uiLabelMap.AccountingFixedAssetName}"><text-find default-value="equals"/></field>
+ <field name="fixedAssetId" title="${uiLabelMap.AccountingFixedAssetId}"><text-find/></field>
+ <field name="fixedAssetName" title="${uiLabelMap.AccountingFixedAssetName}"><text-find/></field>
<field name="fixedAssetTypeId" title="${uiLabelMap.AccountingFixedAssetTypeId}">
<drop-down allow-empty="true">
<entity-options entity-name="FixedAssetType" description="${description}">
Modified: trunk/applications/manufacturing/webapp/manufacturing/lookup/FieldLookupForms.xml
===================================================================
--- trunk/applications/manufacturing/webapp/manufacturing/lookup/FieldLookupForms.xml 2005-10-04 07:42:18 UTC (rev 5910)
+++ trunk/applications/manufacturing/webapp/manufacturing/lookup/FieldLookupForms.xml 2005-10-04 18:54:21 UTC (rev 5911)
@@ -30,7 +30,7 @@
default-title-style="tableheadtext" default-tooltip-style="tabletext" default-widget-style="inputBox"
target="LookupRouting" title="" type="single">
<auto-fields-service service-name="lookupRoutingTask" default-field-type="hidden"/>
- <field name="workEffortName"><text-find default-value="equals"/></field>
+ <field name="workEffortName"><text-find/></field>
<field name="workEffortTypeId"><hidden value="ROUTING"/></field>
<field name="fixedAssetId"><hidden value=""/>
</field>
Modified: trunk/applications/manufacturing/webapp/manufacturing/requirement/RequirementForms.xml
===================================================================
--- trunk/applications/manufacturing/webapp/manufacturing/requirement/RequirementForms.xml 2005-10-04 07:42:18 UTC (rev 5910)
+++ trunk/applications/manufacturing/webapp/manufacturing/requirement/RequirementForms.xml 2005-10-04 18:54:21 UTC (rev 5911)
@@ -31,7 +31,7 @@
target="ApproveRequirements" title=""
default-title-style="tableheadtext" default-widget-style="tabletext" default-tooltip-style="tabletext">
<field name="hideSearch"><hidden value="Y"/></field>
- <field name="requirementId" title="${uiLabelMap.ManufacturingRequirementId}"><text-find default-value="equals"/></field>
+ <field name="requirementId" title="${uiLabelMap.ManufacturingRequirementId}"><text-find/></field>
<field name="requirementTypeId" title="${uiLabelMap.ManufacturingRequirementTypeId}">
<drop-down allow-empty="true">
<entity-options entity-name="RequirementType" description="${description}"/>
Modified: trunk/applications/manufacturing/webapp/manufacturing/routing/RoutingTaskForms.xml
===================================================================
--- trunk/applications/manufacturing/webapp/manufacturing/routing/RoutingTaskForms.xml 2005-10-04 07:42:18 UTC (rev 5910)
+++ trunk/applications/manufacturing/webapp/manufacturing/routing/RoutingTaskForms.xml 2005-10-04 18:54:21 UTC (rev 5911)
@@ -33,10 +33,10 @@
default-title-style="tableheadtext" default-widget-style="tabletext" default-tooltip-style="tabletext">
<field name="hideSearch"><hidden value="Y"/></field>
<field name="workEffortId" title="${uiLabelMap.ManufacturingRoutingId}">
- <text-find default-value="equals"/>
+ <text-find/>
</field>
<field name="workEffortName" title="${uiLabelMap.ManufacturingRoutingName}">
- <text-find default-value="equals"/>
+ <text-find/>
</field>
<field name="submitButton" title="${uiLabelMap.CommonLookup}" widget-style="smallSubmit">
<submit button-type="button"/>
@@ -80,10 +80,10 @@
default-title-style="tableheadtext" default-widget-style="tabletext" default-tooltip-style="tabletext">
<field name="hideSearch"><hidden value="Y"/></field>
<field name="workEffortId" title="${uiLabelMap.ManufacturingRoutingTaskId}">
- <text-find default-value="equals"/>
+ <text-find/>
</field>
<field name="workEffortName" title="${uiLabelMap.ManufacturingTaskName}">
- <text-find default-value="equals"/>
+ <text-find/>
</field>
<field name="fixedAssetId">
<drop-down allow-empty="true">
Modified: trunk/applications/marketing/webapp/marketing/lookup/LookupForms.xml
===================================================================
--- trunk/applications/marketing/webapp/marketing/lookup/LookupForms.xml 2005-10-04 07:42:18 UTC (rev 5910)
+++ trunk/applications/marketing/webapp/marketing/lookup/LookupForms.xml 2005-10-04 18:54:21 UTC (rev 5911)
@@ -27,10 +27,10 @@
<form name="LookupSegmentGroup" default-title-style="tableheadtext"
default-tooltip-style="tabletext" default-widget-style="inputBox"
target="LookupSegmentGroup" title="" type="single">
- <field name="segmentGroupId" title="${uiLabelMap.SegmentGroupSegmentGroupId}"><text-find default-value="equals"/></field>
- <field name="segmentGroupTypeId" title="${uiLabelMap.SegmentGroupSegmentGroupTypeId}"><text-find default-value="equals"/></field>
- <field name="description" title="${uiLabelMap.SegmentGroupDescription}"><text-find default-value="equals"/></field>
- <field name="productStoreId" title="${uiLabelMap.SegmentGroupProductStoreId}"><text-find default-value="equals"/></field>
+ <field name="segmentGroupId" title="${uiLabelMap.SegmentGroupSegmentGroupId}"><text-find/></field>
+ <field name="segmentGroupTypeId" title="${uiLabelMap.SegmentGroupSegmentGroupTypeId}"><text-find/></field>
+ <field name="description" title="${uiLabelMap.SegmentGroupDescription}"><text-find/></field>
+ <field name="productStoreId" title="${uiLabelMap.SegmentGroupProductStoreId}"><text-find/></field>
<field name="submitButton" title="Lookup" widget-style="smallSubmit"><submit button-type="button"/></field>
</form>
<form name="listLookupSegmentGroup" default-title-style="tableheadtext"
@@ -127,16 +127,16 @@
<form name="LookupGeo" default-title-style="tableheadtext"
default-tooltip-style="tabletext" default-widget-style="inputBox"
target="LookupGeo" title="" type="single" >
- <field name="geoId" title="${uiLabelMap.SegmentGroupGeoId}"><text-find default-value="equals"/></field>
+ <field name="geoId" title="${uiLabelMap.SegmentGroupGeoId}"><text-find/></field>
<field name="geoTypeId" title="${uiLabelMap.SegmentGroupGeoTypeId}">
<drop-down>
<entity-options key-field-name="geoTypeId" entity-name="GeoType" description="${description}"/>
</drop-down>
</field>
- <field name="geoName" title="${uiLabelMap.SegmentGroupGeoName}"><text-find default-value="equals"/></field>
- <field name="geoCode" title="${uiLabelMap.SegmentGroupGeoCode}"><text-find default-value="equals"/></field>
- <field name="geoSecCode" title="${uiLabelMap.SegmentGroupGeoSecCode}"><text-find default-value="equals"/></field>
- <field name="geoAbbr" title="${uiLabelMap.SegmentGroupGeoAbbr}"><text-find default-value="equals"/></field>
+ <field name="geoName" title="${uiLabelMap.SegmentGroupGeoName}"><text-find/></field>
+ <field name="geoCode" title="${uiLabelMap.SegmentGroupGeoCode}"><text-find/></field>
+ <field name="geoSecCode" title="${uiLabelMap.SegmentGroupGeoSecCode}"><text-find/></field>
+ <field name="geoAbbr" title="${uiLabelMap.SegmentGroupGeoAbbr}"><text-find/></field>
<field name="submitButton" title="Lookup" widget-style="smallSubmit"><submit button-type="button"/></field>
</form>
<form name="listLookupGeo" default-title-style="tableheadtext"
Modified: trunk/applications/order/webapp/ordermgr/lookup/FieldLookupForms.xml
===================================================================
--- trunk/applications/order/webapp/ordermgr/lookup/FieldLookupForms.xml 2005-10-04 07:42:18 UTC (rev 5910)
+++ trunk/applications/order/webapp/ordermgr/lookup/FieldLookupForms.xml 2005-10-04 18:54:21 UTC (rev 5911)
@@ -27,7 +27,7 @@
<form name="lookupOrderHeader" target="LookupOrderHeader" title="" type="single"
default-title-style="tableheadtext" default-tooltip-style="tabletext" default-widget-style="inputBox">
<auto-fields-entity entity-name="OrderHeader" default-field-type="find"/>
- <field name="orderHeaderId" title="${uiLabelMap.OrderOrderHeaderId}"><text-find default-value="equals"/></field>
+ <field name="orderHeaderId" title="${uiLabelMap.OrderOrderHeaderId}"><text-find/></field>
<field name="orderTypeId" widget-style="selectBox">
<drop-down>
<entity-options description="${description}" entity-name="OrderType" key-field-name="orderTypeId">
@@ -423,7 +423,7 @@
default-title-style="tableheadtext" default-tooltip-style="tabletext" default-widget-style="inputBox"
target="LookupRequirement" title="" type="single">
<auto-fields-entity entity-name="Requirement" default-field-type="find"/>
- <field name="requirementId" title="${uiLabelMap.OrderRequirementId}"><text-find default-value="equals"/></field>
+ <field name="requirementId" title="${uiLabelMap.OrderRequirementId}"><text-find/></field>
<field name="requirementTypeId" title="${uiLabelMap.OrderRequirementTypeId}">
<drop-down allow-empty="true">
<entity-options entity-name="RequirementType" description="${description}"/>
@@ -473,7 +473,7 @@
<form name="lookupShoppingList" target="LookupShoppingList" title="" type="single"
default-title-style="tableheadtext" default-tooltip-style="tabletext" default-widget-style="inputBox">
<auto-fields-entity entity-name="ShoppingList" default-field-type="find"/>
- <field name="shoppingListId" title="${uiLabelMap.OrderShoppingListId}"><text-find default-value="equals"/></field>
+ <field name="shoppingListId" title="${uiLabelMap.OrderShoppingListId}"><text-find/></field>
<field name="shoppingListTypeId" title="${uiLabelMap.OrderShoppingListTypeId}">
<drop-down allow-empty="true">
<entity-options entity-name="ShoppingListType" description="${description}"/>
Modified: trunk/applications/order/webapp/ordermgr/requirement/RequirementForms.xml
===================================================================
--- trunk/applications/order/webapp/ordermgr/requirement/RequirementForms.xml 2005-10-04 07:42:18 UTC (rev 5910)
+++ trunk/applications/order/webapp/ordermgr/requirement/RequirementForms.xml 2005-10-04 18:54:21 UTC (rev 5911)
@@ -31,7 +31,7 @@
target="FindRequirements" title=""
default-title-style="tableheadtext" default-widget-style="tabletext" default-tooltip-style="tabletext">
<field name="hideSearch"><hidden value="Y"/></field>
- <field name="requirementId" title="${uiLabelMap.OrderRequirementId}"><text-find default-value="equals"/></field>
+ <field name="requirementId" title="${uiLabelMap.OrderRequirementId}"><text-find/></field>
<field name="requirementTypeId" title="${uiLabelMap.OrderRequirementTypeId}">
<drop-down allow-empty="true">
<entity-options entity-name="RequirementType" description="${description}"/>
Modified: trunk/applications/order/widget/ordermgr/OrderEntryForms.xml
===================================================================
--- trunk/applications/order/widget/ordermgr/OrderEntryForms.xml 2005-10-04 07:42:18 UTC (rev 5910)
+++ trunk/applications/order/widget/ordermgr/OrderEntryForms.xml 2005-10-04 18:54:21 UTC (rev 5911)
@@ -24,7 +24,7 @@
<form name="FindRequirements" type="single" target="RequirementsForSupplier" title="" default-title-style="tableheadtext" default-widget-style="tabletext"
default-tooltip-style="tabletext">
<field name="hideSearch"><hidden value="Y"/></field>
- <field name="requirementId"><text-find default-value="equals"/></field>
+ <field name="requirementId"><text-find/></field>
<field name="productId" title="${uiLabelMap.ProductProductId}"><lookup target-form-name="LookupProduct"/></field>
<field name="requirementByDate"><date-find type="date"/></field>
<field name="submitButton" title="${uiLabelMap.CommonLookup}" widget-style="smallSubmit"><submit button-type="button"/></field>
Modified: trunk/applications/party/webapp/partymgr/lookup/LookupForms.xml
===================================================================
--- trunk/applications/party/webapp/partymgr/lookup/LookupForms.xml 2005-10-04 07:42:18 UTC (rev 5910)
+++ trunk/applications/party/webapp/partymgr/lookup/LookupForms.xml 2005-10-04 18:54:21 UTC (rev 5911)
@@ -28,15 +28,15 @@
default-tooltip-style="tabletext" default-widget-style="inputBox"
target="LookupPartyName" title="" type="single">
<!--<auto-fields-entity entity-name="PartyNameView" default-field-type="find" />-->
- <field name="partyId" title="${uiLabelMap.PartyPartyId}"><text-find default-value="equals"/></field>
+ <field name="partyId" title="${uiLabelMap.PartyPartyId}"><text-find/></field>
<field name="partyTypeId" title="${uiLabelMap.PartyTypeId}">
<drop-down allow-empty="true">
<entity-options description="${description}" entity-name="PartyType"/>
</drop-down>
</field>
- <field name="firstName" title="${uiLabelMap.PartyFirstName}"><text-find default-value="equals"/></field>
- <field name="lastName" title="${uiLabelMap.PartyLastName}"><text-find default-value="equals"/></field>
- <field name="groupName" title="${uiLabelMap.PartyGroupName}"><text-find default-value="equals"/></field>
+ <field name="firstName" title="${uiLabelMap.PartyFirstName}"><text-find/></field>
+ <field name="lastName" title="${uiLabelMap.PartyLastName}"><text-find/></field>
+ <field name="groupName" title="${uiLabelMap.PartyGroupName}"><text-find/></field>
<field name="noConditionFind"><hidden value="Y"/><!-- if this isn't there then with all fields empty no query will be done --></field>
<field name="submitButton" title="Lookup" widget-style="smallSubmit"><submit button-type="button"/></field>
</form>
@@ -66,9 +66,9 @@
default-tooltip-style="tabletext" default-widget-style="inputBox"
target="LookupPerson" title="" type="single">
<!--<auto-fields-entity entity-name="Person" default-field-type="find" />-->
- <field name="partyId" title="${uiLabelMap.PartyPartyId}"><text-find default-value="equals"/></field>
- <field name="firstName" title="${uiLabelMap.PartyFirstName}"><text-find default-value="equals"/></field>
- <field name="lastName" title="${uiLabelMap.PartyLastName}"><text-find default-value="equals"/></field>
+ <field name="partyId" title="${uiLabelMap.PartyPartyId}"><text-find/></field>
+ <field name="firstName" title="${uiLabelMap.PartyFirstName}"><text-find/></field>
+ <field name="lastName" title="${uiLabelMap.PartyLastName}"><text-find/></field>
<field name="submitButton" title="Lookup" widget-style="smallSubmit"><submit button-type="button"/></field>
</form>
<form name="listLookupPerson" default-title-style="tableheadtext"
@@ -95,12 +95,12 @@
default-tooltip-style="tabletext" default-widget-style="inputBox"
target="LookupPerson" title="" type="single">
<!--<auto-fields-entity entity-name="PartyAndUserLoginAndPerson" default-field-type="find" />-->
- <field name="partyId" title="${uiLabelMap.PartyPartyId}"><text-find default-value="equals"/></field>
- <field name="userLoginId" title="${uiLabelMap.PartyUserLoginId}"><text-find default-value="equals"/></field>
- <field name="firstName" title="${uiLabelMap.PartyFirstName}"><text-find default-value="equals"/></field>
- <field name="middleName" title="${uiLabelMap.PartyMiddleName}"><text-find default-value="equals"/></field>
- <field name="lastName" title="${uiLabelMap.PartyLastName}"><text-find default-value="equals"/></field>
- <field name="groupName" title="${uiLabelMap.PartyGroupName}"><text-find default-value="equals"/></field>
+ <field name="partyId" title="${uiLabelMap.PartyPartyId}"><text-find/></field>
+ <field name="userLoginId" title="${uiLabelMap.PartyUserLoginId}"><text-find/></field>
+ <field name="firstName" title="${uiLabelMap.PartyFirstName}"><text-find/></field>
+ <field name="middleName" title="${uiLabelMap.PartyMiddleName}"><text-find/></field>
+ <field name="lastName" title="${uiLabelMap.PartyLastName}"><text-find/></field>
+ <field name="groupName" title="${uiLabelMap.PartyGroupName}"><text-find/></field>
<field name="createdDate" title="${uiLabelMap.PartyCreatedDate}"><date-find/></field>
<field name="submitButton" title="Lookup" widget-style="smallSubmit"><submit button-type="button"/></field>
</form>
@@ -125,8 +125,8 @@
<form name="lookupPartyGroup" default-title-style="tableheadtext" default-tooltip-style="tabletext" default-widget-style="inputBox" target="LookupPartyGroup"
title="" type="single">
<!--<auto-fields-entity entity-name="PartyGroup" default-field-type="find"/>-->
- <field name="partyId" title="${uiLabelMap.PartyPartyId}"><text-find default-value="equals"/></field>
- <field name="groupName" title="${uiLabelMap.PartyGroupName}"><text-find default-value="equals"/></field>
+ <field name="partyId" title="${uiLabelMap.PartyPartyId}"><text-find/></field>
+ <field name="groupName" title="${uiLabelMap.PartyGroupName}"><text-find/></field>
<field name="submitButton" title="Find" widget-style="smallSubmit">
<submit button-type="button"/>
</field>
Modified: trunk/applications/product/webapp/catalog/lookup/FieldLookupForms.xml
===================================================================
--- trunk/applications/product/webapp/catalog/lookup/FieldLookupForms.xml 2005-10-04 07:42:18 UTC (rev 5910)
+++ trunk/applications/product/webapp/catalog/lookup/FieldLookupForms.xml 2005-10-04 18:54:21 UTC (rev 5911)
@@ -31,8 +31,8 @@
default-title-style="tableheadtext" default-tooltip-style="tabletext" default-widget-style="inputBox"
target="LookupProduct" title="" type="single">
<!-- <auto-fields-entity entity-name="Product" default-field-type="hidden" /> -->
- <field name="productId" title="${uiLabelMap.ProductProductId}"><text-find default-value="equals"/></field>
- <field name="internalName" title="${uiLabelMap.ProductInternalName}"><text-find default-value="equals"/></field>
+ <field name="productId" title="${uiLabelMap.ProductProductId}"><text-find/></field>
+ <field name="internalName" title="${uiLabelMap.ProductInternalName}"><text-find/></field>
<field name="productTypeId" title="${uiLabelMap.ProductProductType}">
<drop-down allow-empty="true">
<entity-options entity-name="ProductType" description="${description}">
Modified: trunk/applications/product/webapp/facility/lookup/FieldLookupForms.xml
===================================================================
--- trunk/applications/product/webapp/facility/lookup/FieldLookupForms.xml 2005-10-04 07:42:18 UTC (rev 5910)
+++ trunk/applications/product/webapp/facility/lookup/FieldLookupForms.xml 2005-10-04 18:54:21 UTC (rev 5911)
@@ -29,8 +29,8 @@
<form name="lookupFacility" target="LookupFacility" title="" type="single"
default-title-style="tableheadtext" default-tooltip-style="tabletext" default-widget-style="inputBox">
<auto-fields-entity entity-name="Facility" default-field-type="hidden"/>
- <field name="facilityId" title="${uiLabelMap.ProductFacilityId}"><text-find default-value="equals"/></field>
- <field name="facilityName" title="${uiLabelMap.ProductFacilityNameId}"><text-find default-value="equals"/></field>
+ <field name="facilityId" title="${uiLabelMap.ProductFacilityId}"><text-find/></field>
+ <field name="facilityName" title="${uiLabelMap.ProductFacilityNameId}"><text-find/></field>
<field name="facilityTypeId">
<drop-down allow-empty="true">
<entity-options description="${description}" entity-name="FacilityType" key-field-name="facilityTypeId">
More information about the Svn
mailing list