Author: diveshdutta
Date: Sat Sep 17 11:02:39 2016 New Revision: 1761192 URL: http://svn.apache.org/viewvc?rev=1761192&view=rev Log: Improved:Display from date with default to now timestamp and also add asterisk sign to all the forms where it is part of primary key in all the components. (OFBIZ-7650) (OFBIZ-7651) (OFBIZ-7653) (OFBIZ-7660) (OFBIZ-7662) (OFBIZ-7665) (OFBIZ-7666) (OFBIZ-8028)(OFBIZ-8029) (OFBIZ-8255) Thanks: Anuj Jain and Ratnesh for the pathes and Swapnil Shah for reporting the issues. Modified: ofbiz/trunk/applications/accounting/widget/AgreementForms.xml ofbiz/trunk/applications/accounting/widget/BillingAccountForms.xml ofbiz/trunk/applications/accounting/widget/FinAccountForms.xml ofbiz/trunk/applications/accounting/widget/GlSetupForms.xml ofbiz/trunk/applications/content/widget/content/ContentForms.xml ofbiz/trunk/applications/content/widget/content/DataResourceForms.xml ofbiz/trunk/applications/content/widget/forum/ForumForms.xml ofbiz/trunk/applications/content/widget/website/WebSiteForms.xml ofbiz/trunk/applications/humanres/widget/forms/EmplLeaveForms.xml ofbiz/trunk/applications/humanres/widget/forms/EmplPositionForms.xml ofbiz/trunk/applications/humanres/widget/forms/EmploymentForms.xml ofbiz/trunk/applications/humanres/widget/forms/PartyQualForms.xml ofbiz/trunk/applications/humanres/widget/forms/PerfReviewForms.xml ofbiz/trunk/applications/manufacturing/template/bom/EditProductBom.ftl ofbiz/trunk/applications/manufacturing/template/mrp/FindInventoryEventPlan.ftl ofbiz/trunk/applications/manufacturing/template/routing/EditRoutingTaskAssoc.ftl ofbiz/trunk/applications/manufacturing/widget/manufacturing/BomForms.xml ofbiz/trunk/applications/manufacturing/widget/manufacturing/ProductionRunForms.xml ofbiz/trunk/applications/manufacturing/widget/manufacturing/RoutingTaskForms.xml ofbiz/trunk/applications/order/widget/ordermgr/CustRequestForms.xml ofbiz/trunk/applications/order/widget/ordermgr/QuoteForms.xml ofbiz/trunk/applications/party/widget/partymgr/PartyClassificationForms.xml ofbiz/trunk/applications/party/widget/partymgr/PartyContactListForms.xml ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml ofbiz/trunk/applications/product/template/product/EditProductFeatures.ftl ofbiz/trunk/applications/product/widget/catalog/ProductForms.xml ofbiz/trunk/applications/product/widget/facility/FacilityForms.xml ofbiz/trunk/applications/product/widget/facility/FacilityGroupForms.xml ofbiz/trunk/applications/workeffort/widget/TimesheetForms.xml ofbiz/trunk/applications/workeffort/widget/WorkEffortForms.xml ofbiz/trunk/applications/workeffort/widget/WorkEffortPartyAssignForms.xml ofbiz/trunk/specialpurpose/projectmgr/widget/forms/ProjectForms.xml ofbiz/trunk/specialpurpose/projectmgr/widget/forms/TaskForms.xml Modified: ofbiz/trunk/applications/accounting/widget/AgreementForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/AgreementForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/accounting/widget/AgreementForms.xml (original) +++ ofbiz/trunk/applications/accounting/widget/AgreementForms.xml Sat Sep 17 11:02:39 2016 @@ -130,6 +130,7 @@ under the License. <field name="partyIdTo" title="${uiLabelMap.AccountingPartyIdTo}"> <lookup target-form-name="LookupPartyName"/> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonSubmit}" widget-style="smallSubmit"> <submit button-type="button"/> @@ -303,7 +304,7 @@ under the License. </entity-options> </drop-down> </field> - <field name="fromDate"><date-time/></field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="thruDate"><date-time/></field> <field name="uploadedFile" title="${uiLabelMap.ContentFile}"><file/></field> <field name="submitButton" title="${uiLabelMap.CommonUpload}"><submit/></field> @@ -568,7 +569,7 @@ under the License. </field> <field use-when="agreementPromoAppl!=null" name="fromDate"><display/></field> - <field use-when="agreementPromoAppl==null" name="fromDate"><date-time/></field> + <field use-when="agreementPromoAppl==null" name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonSubmit}" widget-style="smallSubmit"> <submit button-type="button"/> </field> Modified: ofbiz/trunk/applications/accounting/widget/BillingAccountForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/BillingAccountForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/accounting/widget/BillingAccountForms.xml (original) +++ ofbiz/trunk/applications/accounting/widget/BillingAccountForms.xml Sat Sep 17 11:02:39 2016 @@ -152,6 +152,7 @@ under the License. <field name="availableBalance" title="${uiLabelMap.AccountingBillingAvailableBalance}" tooltip="${uiLabelMap.AccountingBillingAvailableBalanceMessage}"> <display type="currency" currency="${billingAccount.accountCurrencyUomId}"/> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonCreate}" use-when="billingAccount == null" widget-style="smallSubmit"><submit button-type="button"/></field> <field name="submitButton" title="${uiLabelMap.CommonUpdate}" use-when="billingAccount!=null" widget-style="smallSubmit"><submit button-type="button"/></field> </form> @@ -201,6 +202,7 @@ under the License. </entity-options> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="partyId" title="${uiLabelMap.PartyPartyId}"><lookup target-form-name="LookupPartyName"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> Modified: ofbiz/trunk/applications/accounting/widget/FinAccountForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/FinAccountForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/accounting/widget/FinAccountForms.xml (original) +++ ofbiz/trunk/applications/accounting/widget/FinAccountForms.xml Sat Sep 17 11:02:39 2016 @@ -133,6 +133,7 @@ under the License. <field name="isRefundable"> <drop-down no-current-selected-key="Y"><option key="Y" description="${uiLabelMap.CommonY}"/><option key="N" description="${uiLabelMap.CommonN}"/></drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" use-when="finAccountId==null" title="${uiLabelMap.CommonCreate}" widget-style="smallSubmit"><submit button-type="button"/></field> <field name="submitButton" use-when="finAccountId!=null" title="${uiLabelMap.CommonUpdate}" widget-style="smallSubmit"><submit button-type="button"/></field> <field name="actualBalance"><display/></field> @@ -174,7 +175,7 @@ under the License. </entity-options> </drop-down> </field> - <field name="fromDate"><date-time/></field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="thruDate"><date-time/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> @@ -242,7 +243,7 @@ under the License. <field name="finAccountAuthId"><hidden/></field> <field name="amount"><text/></field> <field name="authorizationDate"><date-time/></field> - <field name="fromDate"><date-time/></field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="thruDate"><date-time/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> Modified: ofbiz/trunk/applications/accounting/widget/GlSetupForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/GlSetupForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/accounting/widget/GlSetupForms.xml (original) +++ ofbiz/trunk/applications/accounting/widget/GlSetupForms.xml Sat Sep 17 11:02:39 2016 @@ -419,7 +419,7 @@ under the License. </drop-down> </field> <field name="conversionFactor"><text/></field> - <field name="fromDate"><date-time/></field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="thruDate"><date-time/></field> <field name="submitButton" title="${uiLabelMap.AccountingUpdateFX}"><submit/></field> </form> @@ -732,6 +732,7 @@ under the License. </entity-options> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonCreate}"><submit/></field> </form> @@ -1182,7 +1183,7 @@ under the License. <entity-options description="${glAccountId}" entity-name="GlAccount"/> </drop-down> </field> - <field name="fromDate"><date-time/></field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="thruDate"><date-time/></field> <field name="amountPercentage"><text/></field> <field name="submit" title="${uiLabelMap.CommonAdd}"><submit button-type="button"/></field> Modified: ofbiz/trunk/applications/content/widget/content/ContentForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/widget/content/ContentForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/content/widget/content/ContentForms.xml (original) +++ ofbiz/trunk/applications/content/widget/content/ContentForms.xml Sat Sep 17 11:02:39 2016 @@ -265,6 +265,7 @@ under the License. <entity-options entity-name="MetaDataPredicate"/> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonCreate}" widget-style="smallSubmit"> <submit button-type="button"/> </field> @@ -352,6 +353,7 @@ under the License. </entity-options> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit"> <submit button-type="button"/> </field> @@ -522,6 +524,7 @@ under the License. </entity-options> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> <form name="ListWorkEffortContents" type="list" target="updateWorkEffortContent" list-name="workEffortContents" Modified: ofbiz/trunk/applications/content/widget/content/DataResourceForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/widget/content/DataResourceForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/content/widget/content/DataResourceForms.xml (original) +++ ofbiz/trunk/applications/content/widget/content/DataResourceForms.xml Sat Sep 17 11:02:39 2016 @@ -393,6 +393,7 @@ under the License. <entity-options entity-name="RoleType" key-field-name="roleTypeId"/> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> <form name="ListDataResourceRole" list-name="dataResourceRole" target="updateDataResourceRole" title="" type="list" Modified: ofbiz/trunk/applications/content/widget/forum/ForumForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/widget/forum/ForumForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/content/widget/forum/ForumForms.xml (original) +++ ofbiz/trunk/applications/content/widget/forum/ForumForms.xml Sat Sep 17 11:02:39 2016 @@ -74,7 +74,7 @@ under the License. <field name="forumGroupId"><hidden value="${parameters.forumGroupId}"/></field> <field name="forumName" parameter-name="contentName"><text/></field> <field name="forumDescription" parameter-name="description"><text/></field> - <field name="caFromDate"><date-time/></field> + <field name="caFromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="contentTypeId"><hidden value="WEB_SITE_PUB_PT"/></field> <field name="ownerContentId"><hidden value="${parameters.forumGroupId}"/></field> <field name="caContentId"><hidden value="${parameters.forumGroupId}"/></field> @@ -134,6 +134,7 @@ under the License. <drop-down> <entity-options entity-name="RoleType"></entity-options> </drop-down></field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="addButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> Modified: ofbiz/trunk/applications/content/widget/website/WebSiteForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/widget/website/WebSiteForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/content/widget/website/WebSiteForms.xml (original) +++ ofbiz/trunk/applications/content/widget/website/WebSiteForms.xml Sat Sep 17 11:02:39 2016 @@ -125,7 +125,7 @@ under the License. <field name="webSiteId"><display/></field> <field name="pathAlias" use-when="webSitePathAlias!=null"><display/></field> <field name="pathAlias" use-when="webSitePathAlias==null"><text/></field> - + <field name="fromDate" required-field="true"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" use-when="webSitePathAlias!=null" title="${uiLabelMap.CommonUpdate}" widget-style="smallSubmit"><submit button-type="button"/></field> <field name="submitButton" use-when="webSitePathAlias==null" title="${uiLabelMap.CommonCreate}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> @@ -190,6 +190,7 @@ under the License. </entity-options> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}"><submit button-type="button"/></field> </form> Modified: ofbiz/trunk/applications/humanres/widget/forms/EmplLeaveForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/humanres/widget/forms/EmplLeaveForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/humanres/widget/forms/EmplLeaveForms.xml (original) +++ ofbiz/trunk/applications/humanres/widget/forms/EmplLeaveForms.xml Sat Sep 17 11:02:39 2016 @@ -108,7 +108,7 @@ <entity-options key-field-name="emplLeaveReasonTypeId" entity-name="EmplLeaveReasonType"/> </drop-down> </field> - <field name="fromDate" required-field="true"><date-time type="date"/></field> + <field name="fromDate" required-field="true"><date-time type="date" default-value="${nowTimestamp}"/></field> <field name="thruDate" required-field="true"><date-time type="date"/></field> <field name="leaveStatus"><hidden value="LEAVE_CREATED"/></field> <field name="submitButton" use-when="leaveApp==null" title="${uiLabelMap.CommonCreate}" widget-style="smallSubmit"><submit button-type="button"/></field> Modified: ofbiz/trunk/applications/humanres/widget/forms/EmplPositionForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/humanres/widget/forms/EmplPositionForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/humanres/widget/forms/EmplPositionForms.xml (original) +++ ofbiz/trunk/applications/humanres/widget/forms/EmplPositionForms.xml Sat Sep 17 11:02:39 2016 @@ -130,7 +130,7 @@ under the License. <auto-fields-service service-name="createEmplPositionFulfillment"/> <field name="emplPositionId"><hidden /></field> <field name="partyId" title="${uiLabelMap.PartyPartyId}" required-field="true"><lookup target-form-name="LookupPartyName"/></field> - <field name="fromDate" title="${uiLabelMap.CommonFromDate}" required-field="true"/> + <field name="fromDate" title="${uiLabelMap.CommonFromDate}" required-field="true"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}"><submit button-type="button"/></field> </form> @@ -164,7 +164,7 @@ under the License. <field name="emplPositionId"><hidden value="${parameters.emplPositionId}"/></field> <field name="emplPositionIdReportingTo" required-field="true"><lookup target-form-name="LookupEmplPosition"/></field> <field name="emplPositionIdManagedBy" required-field="true"><hidden value="${parameters.emplPositionId}"/></field> - <field name="fromDate" required-field="true"/> + <field name="fromDate" required-field="true"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}"><submit button-type="button"/></field> </form> <form name="ListReportedToEmplPositionReportingStructs" type="list" target="updateEmplPositionReportingStruct" title="" paginate-target="EditReportedToEmplPositionReportingStruct" @@ -197,7 +197,7 @@ under the License. <field name="emplPositionId"><hidden value="${parameters.emplPositionId}"/></field> <field name="emplPositionIdReportingTo"><hidden value="${parameters.emplPositionId}"/></field> <field name="emplPositionIdManagedBy" required-field="true"><lookup target-form-name="LookupEmplPosition"/></field> - <field name="fromDate" required-field="true"/> + <field name="fromDate" required-field="true"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}"><submit button-type="button"/></field> </form> <form name="ListEmplPositionResponsibilities" type="list" target="updateEmplPositionResponsibility" title="" paginate-target="findEmplPositionResponsibilities" @@ -232,6 +232,7 @@ under the License. </entity-options> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}" /></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}"><submit button-type="button"/></field> </form> <form name="ListValidResponsibilities" type="list" target="updateValidResponsibility" title="" paginate-target="findValidResponsibilities" Modified: ofbiz/trunk/applications/humanres/widget/forms/EmploymentForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/humanres/widget/forms/EmploymentForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/humanres/widget/forms/EmploymentForms.xml (original) +++ ofbiz/trunk/applications/humanres/widget/forms/EmploymentForms.xml Sat Sep 17 11:02:39 2016 @@ -125,8 +125,8 @@ <field name="partyIdFrom" use-when="employment!=null" title="${uiLabelMap.HumanResEmploymentPartyIdFrom}"><hidden/></field> <field name="partyIdTo" use-when="employment==null" title="${uiLabelMap.HumanResEmployeePartyIdTo}" required-field="true"><lookup target-form-name="LookupPartyName"/></field> <field name="partyIdTo" use-when="employment!=null" title="${uiLabelMap.HumanResEmployeePartyIdTo}"><hidden/></field> - <field name="fromDate" use-when="employment==null" title="${uiLabelMap.CommonFromDate}" required-field="true"><date-time/></field> - <field name="fromDate" use-when="employment!=null" title="${uiLabelMap.CommonFromDate}"><display/></field> + <field name="fromDate" use-when="employment==null" title="${uiLabelMap.CommonFromDate}" required-field="true"><date-time default-value="${nowTimestamp}"/></field> + <field name="fromDate" use-when="employment!=null" title="${uiLabelMap.CommonFromDate}"><display default-value="${nowTimestamp}"/></field> <field name="thruDate" use-when="employment!=null" title="${uiLabelMap.CommonThruDate}"><date-time/></field> <field name="terminationReasonId" use-when="employment!=null" title="${uiLabelMap.HumanResTerminationReasonId}"> <drop-down allow-empty="true" no-current-selected-key="------"> Modified: ofbiz/trunk/applications/humanres/widget/forms/PartyQualForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/humanres/widget/forms/PartyQualForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/humanres/widget/forms/PartyQualForms.xml (original) +++ ofbiz/trunk/applications/humanres/widget/forms/PartyQualForms.xml Sat Sep 17 11:02:39 2016 @@ -130,6 +130,7 @@ under the License. </entity-options> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonCreate}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> </forms> Modified: ofbiz/trunk/applications/humanres/widget/forms/PerfReviewForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/humanres/widget/forms/PerfReviewForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/humanres/widget/forms/PerfReviewForms.xml (original) +++ ofbiz/trunk/applications/humanres/widget/forms/PerfReviewForms.xml Sat Sep 17 11:02:39 2016 @@ -83,6 +83,7 @@ under the License. </field> <field name="paymentId" title="${uiLabelMap.FormFieldTitle_paymentId}"><lookup target-form-name="LookupPayment"/></field> <field name="emplPositionId" title="${uiLabelMap.FormFieldTitle_emplPositionId}"><lookup target-form-name="LookupEmplPosition"/></field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" use-when="perfReview==null" title="${uiLabelMap.CommonCreate}" widget-style="smallSubmit"><submit button-type="button"/></field> <field name="submitButton" use-when="perfReview!=null" title="${uiLabelMap.CommonUpdate}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> Modified: ofbiz/trunk/applications/manufacturing/template/bom/EditProductBom.ftl URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/template/bom/EditProductBom.ftl?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/manufacturing/template/bom/EditProductBom.ftl (original) +++ ofbiz/trunk/applications/manufacturing/template/bom/EditProductBom.ftl Sat Sep 17 11:02:39 2016 @@ -121,7 +121,7 @@ function lookupBom() { <td align="right">${uiLabelMap.CommonFromDate}</td> <td> </td> <td> - <@htmlTemplate.renderDateTimeField name="fromDate" event="" action="" className="" alert="" title="Format: yyyy-MM-dd HH:mm:ss.SSS" value="" size="25" maxlength="50" id="fromDate_1" dateType="date" shortDateInput=false timeDropdownParamName="" defaultDateTimeString="" localizedIconTitle="" timeDropdown="" timeHourName="" classString="" hour1="" hour2="" timeMinutesName="" minutes="" isTwelveHour="" ampmName="" amSelected="" pmSelected="" compositeType="" formName=""/> + <@htmlTemplate.renderDateTimeField name="fromDate" event="" action="" className="" alert="" title="Format: yyyy-MM-dd HH:mm:ss.SSS" value="${nowTimestamp}" size="25" maxlength="50" id="fromDate_1" dateType="date" shortDateInput=false timeDropdownParamName="" defaultDateTimeString="" localizedIconTitle="" timeDropdown="" timeHourName="" classString="" hour1="" hour2="" timeMinutesName="" minutes="" isTwelveHour="" ampmName="" amSelected="" pmSelected="" compositeType="" formName=""/> <span class="tooltip">(${uiLabelMap.ManufacturingWillBeSetToNow})</span> </td> </tr> Modified: ofbiz/trunk/applications/manufacturing/template/mrp/FindInventoryEventPlan.ftl URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/template/mrp/FindInventoryEventPlan.ftl?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/manufacturing/template/mrp/FindInventoryEventPlan.ftl (original) +++ ofbiz/trunk/applications/manufacturing/template/mrp/FindInventoryEventPlan.ftl Sat Sep 17 11:02:39 2016 @@ -72,7 +72,7 @@ function lookupInventory() { <td width='20%' align='right' class="label">${uiLabelMap.CommonFromDate}</td> <td width='5%'> </td> <td> - <@htmlTemplate.renderDateTimeField name="eventDate" event="" action="" className="" alert="" title="Format: yyyy-MM-dd HH:mm:ss.SSS" value="${requestParameters.eventDate!}" size="25" maxlength="30" id="fromDate_2" dateType="date" shortDateInput=false timeDropdownParamName="" defaultDateTimeString="" localizedIconTitle="" timeDropdown="" timeHourName="" classString="" hour1="" hour2="" timeMinutesName="" minutes="" isTwelveHour="" ampmName="" amSelected="" pmSelected="" compositeType="" formName=""/> + <@htmlTemplate.renderDateTimeField name="eventDate" event="" action="" className="" alert="" title="Format: yyyy-MM-dd HH:mm:ss.SSS" value="${requestParameters.eventDate!nowTimestamp}" size="25" maxlength="30" id="fromDate_2" dateType="date" shortDateInput=false timeDropdownParamName="" defaultDateTimeString="" localizedIconTitle="" timeDropdown="" timeHourName="" classString="" hour1="" hour2="" timeMinutesName="" minutes="" isTwelveHour="" ampmName="" amSelected="" pmSelected="" compositeType="" formName=""/> </td> </tr> <tr> Modified: ofbiz/trunk/applications/manufacturing/template/routing/EditRoutingTaskAssoc.ftl URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/template/routing/EditRoutingTaskAssoc.ftl?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/manufacturing/template/routing/EditRoutingTaskAssoc.ftl (original) +++ ofbiz/trunk/applications/manufacturing/template/routing/EditRoutingTaskAssoc.ftl Sat Sep 17 11:02:39 2016 @@ -48,7 +48,7 @@ function addRoutingTask() { ${uiLabelMap.CommonFromDate} </th> <td> - <@htmlTemplate.renderDateTimeField name="fromDate" event="" action="" className="" alert="" title="Format: yyyy-MM-dd HH:mm:ss.SSS" value="" size="25" maxlength="30" id="fromDate_1" dateType="date" shortDateInput=false timeDropdownParamName="" defaultDateTimeString="" localizedIconTitle="" timeDropdown="" timeHourName="" classString="" hour1="" hour2="" timeMinutesName="" minutes="" isTwelveHour="" ampmName="" amSelected="" pmSelected="" compositeType="" formName=""/> + <@htmlTemplate.renderDateTimeField name="fromDate" event="" action="" className="" alert="" title="Format: yyyy-MM-dd HH:mm:ss.SSS" value="${nowTimestamp}" size="25" maxlength="30" id="fromDate_1" dateType="date" shortDateInput=false timeDropdownParamName="" defaultDateTimeString="" localizedIconTitle="" timeDropdown="" timeHourName="" classString="" hour1="" hour2="" timeMinutesName="" minutes="" isTwelveHour="" ampmName="" amSelected="" pmSelected="" compositeType="" formName=""/> </td> <td align="center" width="40%"> </td> </tr> Modified: ofbiz/trunk/applications/manufacturing/widget/manufacturing/BomForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/widget/manufacturing/BomForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/manufacturing/widget/manufacturing/BomForms.xml (original) +++ ofbiz/trunk/applications/manufacturing/widget/manufacturing/BomForms.xml Sat Sep 17 11:02:39 2016 @@ -34,7 +34,7 @@ under the License. </drop-down> </field> <field name="fromDate" title="${uiLabelMap.ManufacturingFromDate}"> - <date-time/> + <date-time default-value="${nowTimestamp}"/> </field> <field name="quantity" title="${uiLabelMap.CommonQuantity}"> <text default-value="1"/> @@ -112,6 +112,7 @@ under the License. <field name="productIdIn"> <lookup target-form-name="LookupVirtualProduct"/> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="productIdInSubst"> <lookup target-form-name="LookupProduct"/> </field> Modified: ofbiz/trunk/applications/manufacturing/widget/manufacturing/ProductionRunForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/widget/manufacturing/ProductionRunForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/manufacturing/widget/manufacturing/ProductionRunForms.xml (original) +++ ofbiz/trunk/applications/manufacturing/widget/manufacturing/ProductionRunForms.xml Sat Sep 17 11:02:39 2016 @@ -48,7 +48,7 @@ under the License. header-row-style="header-row" default-table-style="basic-table"> <field name="productId" title="${uiLabelMap.ProductProductId}" required-field="true"><lookup target-form-name="LookupProduct" size="16"/></field> <field name="quantity" title="${uiLabelMap.ManufacturingQuantity}" required-field="true"><text size="6"/></field> - <field name="startDate" title="${uiLabelMap.ManufacturingStartDate}" required-field="true"><date-time/></field> + <field name="startDate" title="${uiLabelMap.ManufacturingStartDate}" required-field="true"><date-time default-value="${nowTimestamp}"/></field> <field name="facilityId"> <drop-down allow-empty="false"> <entity-options entity-name="Facility" description="${facilityName} [${facilityId}]"> @@ -80,7 +80,7 @@ under the License. </field> <field name="productId" title="${uiLabelMap.ProductProductId}"><lookup target-form-name="LookupProduct"/></field> <field name="workEffortName" title="${uiLabelMap.ManufacturingProductionRunName}"><text-find/></field> - <field name="estimatedStartDate" title="${uiLabelMap.ManufacturingStartDate}"><date-find/></field> + <field name="estimatedStartDate" title="${uiLabelMap.ManufacturingStartDate}"><date-find default-value="${nowTimestamp}"/></field> <field name="facilityId" title="${uiLabelMap.ProductFacilityId}"> <drop-down allow-empty="true"> <entity-options entity-name="Facility" key-field-name="facilityId" description="${facilityName} [${facilityId}]"> @@ -145,7 +145,7 @@ under the License. </drop-down> </field> <field name="quantity" title="${uiLabelMap.ManufacturingQuantity}"><text size="10"/></field> - <field name="estimatedStartDate" title="${uiLabelMap.ManufacturingStartDate}"><date-time/></field> + <field name="estimatedStartDate" title="${uiLabelMap.ManufacturingStartDate}"><date-time default-value="${nowTimestamp}"/></field> <field name="estimatedCompletionDate" title="${uiLabelMap.ManufacturingEstimatedCompletionDate}"><display/></field> <field name="workEffortName" title="${uiLabelMap.ManufacturingProductionRunName}"><text/></field> <field name="description"><text/></field> @@ -265,7 +265,7 @@ under the License. <field name="workEffortName" title="${uiLabelMap.ManufacturingTaskName}"><text/></field> <field name="description"><text/></field> <field name="reservPersons"><text/></field> - <field name="estimatedStartDate" title="${uiLabelMap.ManufacturingStartDate}"><date-time/></field> + <field name="estimatedStartDate" title="${uiLabelMap.ManufacturingStartDate}"><date-time default-value="${nowTimestamp}"/></field> <field name="estimatedCompletionDate" title="${uiLabelMap.ManufacturingEstimatedCompletionDate}"><display/></field> <field name="estimatedSetupMillis" title="${uiLabelMap.ManufacturingTaskEstimatedSetupMillis}"><text/></field> <field name="estimatedMilliSeconds" title="${uiLabelMap.ManufacturingTaskEstimatedMilliSeconds}"><text/></field> @@ -491,7 +491,7 @@ under the License. <field name="workEffortName" title="${uiLabelMap.ManufacturingTaskName}"><display/></field> <field name="description"><display/></field> <field name="estimatedCompletionDate" title="${uiLabelMap.ManufacturingEstimatedCompletionDate}"><display/></field> - <field name="fromDate" title="${uiLabelMap.ManufacturingFromDate}"><date-time/></field> + <field name="fromDate" title="${uiLabelMap.ManufacturingFromDate}"><date-time default-value="${nowTimestamp}"/></field> <field name="toDate" title="${uiLabelMap.ManufacturingToDate}"><date-time/></field> <field name="estimatedSetupMillis" title="${uiLabelMap.ManufacturingTaskEstimatedSetupMillis}"><display/></field> <field name="actualSetupMillis" title="${uiLabelMap.ManufacturingTaskActualSetupMillis}"><display/></field> Modified: ofbiz/trunk/applications/manufacturing/widget/manufacturing/RoutingTaskForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/widget/manufacturing/RoutingTaskForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/manufacturing/widget/manufacturing/RoutingTaskForms.xml (original) +++ ofbiz/trunk/applications/manufacturing/widget/manufacturing/RoutingTaskForms.xml Sat Sep 17 11:02:39 2016 @@ -207,6 +207,7 @@ under the License. </entity-options> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonSubmit}"> <submit button-type="button"/> </field> @@ -364,7 +365,7 @@ under the License. <field name="productId" title="${uiLabelMap.ProductProductId}" use-when="routingProductLink==null" > <lookup target-form-name="LookupProduct"/> </field> - <field name="fromDate" title="${uiLabelMap.CommonFromDate}" use-when="routingProductLink!=null"><display/></field> + <field name="fromDate" title="${uiLabelMap.CommonFromDate}" use-when="routingProductLink!=null"><date-time default-value="${nowTimestamp}"/></field> <field name="thruDate" title="${uiLabelMap.CommonThruDate}"></field> <field name="submitButton" title="${uiLabelMap.CommonUpdate}"> <submit button-type="button"/> Modified: ofbiz/trunk/applications/order/widget/ordermgr/CustRequestForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/widget/ordermgr/CustRequestForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/order/widget/ordermgr/CustRequestForms.xml (original) +++ ofbiz/trunk/applications/order/widget/ordermgr/CustRequestForms.xml Sat Sep 17 11:02:39 2016 @@ -494,7 +494,7 @@ under the License. <option key="REQ_MANAGER" description="${uiLabelMap.WorkEffortRequestManager}"/> </drop-down> </field> - <field name="fromDate" title="${uiLabelMap.CommonFromDate}"><date-time/></field> + <field name="fromDate" title="${uiLabelMap.CommonFromDate}"><date-time default-value="${nowTimestamp}"/></field> <field name="thruDate" title="${uiLabelMap.CommonThruDate}"><date-time/></field> <field name="submitButton" title="${uiLabelMap.CommonCreate}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> Modified: ofbiz/trunk/applications/order/widget/ordermgr/QuoteForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/widget/ordermgr/QuoteForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/order/widget/ordermgr/QuoteForms.xml (original) +++ ofbiz/trunk/applications/order/widget/ordermgr/QuoteForms.xml Sat Sep 17 11:02:39 2016 @@ -183,6 +183,7 @@ under the License. </entity-options> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonSubmit}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> <form name="ListQuoteItems" list-name="quoteItems" target="" title="" type="list" Modified: ofbiz/trunk/applications/party/widget/partymgr/PartyClassificationForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/PartyClassificationForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/party/widget/partymgr/PartyClassificationForms.xml (original) +++ ofbiz/trunk/applications/party/widget/partymgr/PartyClassificationForms.xml Sat Sep 17 11:02:39 2016 @@ -94,7 +94,7 @@ under the License. </entity-options> </drop-down> </field> - <field name="fromDate" title="${uiLabelMap.CommonFromDate}"><date-time/></field> + <field name="fromDate" title="${uiLabelMap.CommonFromDate}" required-field="true"><date-time default-value="${nowTimestamp}"/></field> <field name="thruDate" title="${uiLabelMap.CommonThruDate}"><date-time/></field> <field name="submitButton" title="${uiLabelMap.CommonSave}" widget-style="smallSubmit"><submit button-type="text-link"/></field> <!-- <field name="cancelLink" title=" " widget-style="smallSubmit"> Modified: ofbiz/trunk/applications/party/widget/partymgr/PartyContactListForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/PartyContactListForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/party/widget/partymgr/PartyContactListForms.xml (original) +++ ofbiz/trunk/applications/party/widget/partymgr/PartyContactListForms.xml Sat Sep 17 11:02:39 2016 @@ -71,7 +71,7 @@ under the License. header-row-style="header-row" default-table-style="basic-table"> <field name="contactListId"><lookup target-form-name="LookupContactList"/></field> <field name="partyId"><hidden/></field> - <field name="fromDate"><date-time/></field> + <field name="fromDate" required-field="true"><date-time default-value="${nowTimestamp}"/></field> <field name="thruDate"><date-time/></field> <field name="statusId"> <drop-down no-current-selected-key="CLPT_PENDING"> Modified: ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml (original) +++ ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml Sat Sep 17 11:02:39 2016 @@ -773,7 +773,7 @@ under the License. <entity-options entity-name="ContentType"/> </drop-down> </field> - <field name="fromDate" use-when="partyContent==null"><date-time/></field> + <field name="fromDate" use-when="partyContent==null" required-field="true"><date-time default-value="${nowTimestamp}"/></field> <field name="fromDate" use-when="partyContent!=null" map-name="partyContent"><display/></field> <field name="thruDate" map-name="partyContent"><date-time/></field> <field name="statusId" use-when="content==null"> @@ -1066,7 +1066,7 @@ under the License. </entity-options> </drop-down> </field> - <field name="fromDate"><date-time/></field> + <field name="fromDate" required-field="true"><date-time default-value="${nowTimestamp}"/></field> <field name="thruDate"><date-time/></field> <field name="securityGroupId" title="${uiLabelMap.CommonSecurityGroupId}"> <drop-down allow-empty="true" text-size="60"> Modified: ofbiz/trunk/applications/product/template/product/EditProductFeatures.ftl URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/template/product/EditProductFeatures.ftl?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/product/template/product/EditProductFeatures.ftl (original) +++ ofbiz/trunk/applications/product/template/product/EditProductFeatures.ftl Sat Sep 17 11:02:39 2016 @@ -197,7 +197,7 @@ under the License. </#list> </select> <br /> - <span class="label">${uiLabelMap.CommonFrom} : </span><@htmlTemplate.renderDateTimeField name="fromDate" event="" action="" className="" alert="" title="Format: yyyy-MM-dd HH:mm:ss.SSS" value="" size="25" maxlength="30" id="fromDate2" dateType="date" shortDateInput=false timeDropdownParamName="" defaultDateTimeString="" localizedIconTitle="" timeDropdown="" timeHourName="" classString="" hour1="" hour2="" timeMinutesName="" minutes="" isTwelveHour="" ampmName="" amSelected="" pmSelected="" compositeType="" formName=""/> + <span class="label">${uiLabelMap.CommonFrom} : </span><@htmlTemplate.renderDateTimeField name="fromDate" event="" action="" className="" alert="" title="Format: yyyy-MM-dd HH:mm:ss.SSS" value="${nowTimestamp}" size="25" maxlength="30" id="fromDate2" dateType="date" shortDateInput=false timeDropdownParamName="" defaultDateTimeString="" localizedIconTitle="" timeDropdown="" timeHourName="" classString="" hour1="" hour2="" timeMinutesName="" minutes="" isTwelveHour="" ampmName="" amSelected="" pmSelected="" compositeType="" formName=""/> <span class="label">${uiLabelMap.CommonThru} : </span><@htmlTemplate.renderDateTimeField name="thruDate" event="" action="" className="" alert="" title="Format: yyyy-MM-dd HH:mm:ss.SSS" value="" size="25" maxlength="30" id="thruDate2" dateType="date" shortDateInput=false timeDropdownParamName="" defaultDateTimeString="" localizedIconTitle="" timeDropdown="" timeHourName="" classString="" hour1="" hour2="" timeMinutesName="" minutes="" isTwelveHour="" ampmName="" amSelected="" pmSelected="" compositeType="" formName=""/> <span class="label">${uiLabelMap.CommonSequence} : </span><input type="text" size="5" name="sequenceNum"/> <input type="submit" value="${uiLabelMap.CommonAdd}"/> Modified: ofbiz/trunk/applications/product/widget/catalog/ProductForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/widget/catalog/ProductForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/product/widget/catalog/ProductForms.xml (original) +++ ofbiz/trunk/applications/product/widget/catalog/ProductForms.xml Sat Sep 17 11:02:39 2016 @@ -425,6 +425,7 @@ under the License. <form name="AddProductPrice" type="single" target="createProductPrice" title="" header-row-style="header-row" default-table-style="basic-table"> <auto-fields-service service-name="createProductPrice"/> + <field name="fromDate" required-field="true"><date-time default-value="${nowTimestamp}"/></field> <field name="productId"><hidden/></field> <field name="productPriceTypeId" title="${uiLabelMap.ProductPriceType}"> <drop-down allow-empty="false" no-current-selected-key="DEFAULT_PRICE"> @@ -531,6 +532,7 @@ under the License. <form name="AddProductPaymentMethodType" type="single" target="createProductPaymentMethodType" title="" header-row-style="header-row" default-table-style="basic-table"> <auto-fields-service service-name="createProductPaymentMethodType"/> + <field name="fromDate" required-field="true"><date-time default-value="${nowTimestamp}"/></field> <field name="productId"><hidden/></field> <field name="productPricePurposeId" title="${uiLabelMap.CommonPurpose}" widget-style="smallSelect"> <drop-down allow-empty="false"> @@ -570,7 +572,7 @@ under the License. <auto-fields-service service-name="safeAddProductToCategory"/> <field name="productId" title="${uiLabelMap.ProductProductId}" map-name="product"><hidden/></field> <field name="productCategoryId" title="${uiLabelMap.ProductProductCategoryId}"><lookup target-form-name="LookupProductCategory"></lookup></field> - <field name="fromDate" title="${uiLabelMap.CommonFromDate}" ></field> + <field name="fromDate" title="${uiLabelMap.CommonFromDate}" required-field="true"><date-time default-value="${nowTimestamp}"/></field> <field name="thruDate" title="${uiLabelMap.CommonThruDate}" ></field> <field name="sequenceNum" title="${uiLabelMap.ProductSequenceNum}" ></field> <field name="quantity" title="${uiLabelMap.ProductQuantity}" ></field> @@ -646,7 +648,7 @@ under the License. </entity-options> </drop-down> </field> - <field name="fromDate" title="${uiLabelMap.CommonFromDate}" ></field> + <field name="fromDate" title="${uiLabelMap.CommonFromDate}" required-field="true"><date-time default-value="${nowTimestamp}"></date-time></field> <field name="thruDate" title="${uiLabelMap.CommonThruDate}"></field> <field name="purchaseFromDate" title="${uiLabelMap.ProductPurchaseFromDate}"></field> <field name="purchaseThruDate" title="${uiLabelMap.ProductPurchaseThruDate}"></field> @@ -1400,13 +1402,16 @@ under the License. <entity-options entity-name="CostComponentCalc"/> </drop-down> </field> - <field name="fromDate" title="${uiLabelMap.CommonFromDate}"><date-time/></field> + <field name="fromDate" title="${uiLabelMap.CommonFromDate}" required-field="true"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonSubmit}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> <form name="EditCostComponent" type="single" target="createCostComponent" title="" default-map-name="costComponent" header-row-style="header-row" default-table-style="basic-table"> <alt-target use-when="costComponent!=null" target="updateCostComponent"/> <auto-fields-service service-name="createCostComponent"/> + <field name="fromDate" title="${uiLabelMap.CommonFromDate}"> + <date-time default-value="${nowTimestamp}"/> + </field> <field name="productId"><hidden/></field> <field name="costComponentId" use-when="costComponent!=null"><display/></field> <field name="costComponentId" use-when="costComponent==null"><hidden/></field> @@ -1789,7 +1794,7 @@ under the License. <form name="AddProductSubscriptionResource" type="single" target="createProductSubscriptionResource" header-row-style="header-row" default-table-style="basic-table"> <auto-fields-service service-name="createProductSubscriptionResource"/> - + <field name="fromDate" required-field="true"><date-time default-value="${nowTimestamp}"/></field> <field name="productId"><hidden/></field> <field name="subscriptionResourceId"> <drop-down allow-empty="false"> @@ -1900,6 +1905,7 @@ under the License. <form name="AddProductWorkEffort" target="createWorkEffortGoodStandard" title="" type="single" header-row-style="header-row" default-table-style="basic-table"> <auto-fields-service service-name="createWorkEffortGoodStandard"/> + <field name="fromDate" required-field="true"><date-time default-value="${nowTimestamp}"/></field> <field name="productId"><hidden value="${parameters.productId}"/></field> <field name="workEffortId"> <lookup target-form-name="LookupWorkEffort"/> @@ -2273,6 +2279,7 @@ under the License. <form name="AddProductRole" type="single" target="addPartyToProduct" title="" header-row-style="header-row" default-table-style="basic-table"> <auto-fields-service service-name="addPartyToProduct"/> + <field name="fromDate" required-field="true"><date-time default-value="${nowTimestamp}"/></field> <field name="productId"><hidden/></field> <field name="partyId"><lookup target-form-name="LookupPartyName"/></field> <field name="roleTypeId"> Modified: ofbiz/trunk/applications/product/widget/facility/FacilityForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/widget/facility/FacilityForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/product/widget/facility/FacilityForms.xml (original) +++ ofbiz/trunk/applications/product/widget/facility/FacilityForms.xml Sat Sep 17 11:02:39 2016 @@ -630,6 +630,7 @@ under the License. <entity-options entity-name="FacilityGroup" key-field-name="facilityGroupId" description="${facilityGroupName}"/> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonSubmit}"><submit button-type="button"/></field> </form> @@ -666,6 +667,7 @@ under the License. <entity-options entity-name="RoleType"/> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonSubmit}"><submit button-type="button"/></field> </form> <form name="ListInventoryItemTotals" type="list" target="" title="" list-name="inventoryItemTotals" Modified: ofbiz/trunk/applications/product/widget/facility/FacilityGroupForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/widget/facility/FacilityGroupForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/product/widget/facility/FacilityGroupForms.xml (original) +++ ofbiz/trunk/applications/product/widget/facility/FacilityGroupForms.xml Sat Sep 17 11:02:39 2016 @@ -86,6 +86,7 @@ under the License. </entity-options> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}"><submit button-type="button"/></field> </form> <form name="UpdateFacilityGroupRollupFrom" type="list" target="updateFacilityGroupToGroup" title="" list-name="parentGroupRollups" @@ -123,6 +124,7 @@ under the License. </entity-options> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}"><submit button-type="button"/></field> </form> <form name="UpdateFacilityGroupMembers" type="list" target="updateFacilityToGroup" title="" list-name="facilityGroupMembers" @@ -157,6 +159,7 @@ under the License. </entity-options> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}"><submit button-type="button"/></field> </form> <form name="UpdateFacilityGroupRoles" type="list" target="removePartyFromFacilityGroup" title="" list-name="facilityRoles" Modified: ofbiz/trunk/applications/workeffort/widget/TimesheetForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/widget/TimesheetForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/workeffort/widget/TimesheetForms.xml (original) +++ ofbiz/trunk/applications/workeffort/widget/TimesheetForms.xml Sat Sep 17 11:02:39 2016 @@ -104,6 +104,7 @@ under the License. <field name="partyId" title="${uiLabelMap.PartyParty}*"><lookup target-form-name="LookupPartyName"/></field> <field name="clientPartyId"><lookup target-form-name="LookupPartyName"/></field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="statusId" title="${uiLabelMap.CommonStatus}*" position="1"> <drop-down no-current-selected-key="TIMESHEET_IN_PROCESS"> <entity-options entity-name="StatusItem" key-field-name="statusId"> Modified: ofbiz/trunk/applications/workeffort/widget/WorkEffortForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/widget/WorkEffortForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/workeffort/widget/WorkEffortForms.xml (original) +++ ofbiz/trunk/applications/workeffort/widget/WorkEffortForms.xml Sat Sep 17 11:02:39 2016 @@ -328,7 +328,7 @@ under the License. </drop-down> </field> <field name="sequenceNum"><text/></field> - <field name="fromDate"><date-time/></field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="thruDate"><date-time/></field> <field name="submitButton" title="${uiLabelMap.CommonSave}" widget-style="smallSubmit"><submit/></field> <field name="cancelLink" title=" " widget-style="buttontext"><hyperlink target="${donePage}" also-hidden="false" description="${uiLabelMap.CommonCancelDone}"/></field> @@ -874,6 +874,7 @@ under the License. <field name="timesheetId"><lookup size="10" target-form-name="LookupTimesheet"/></field> <field name="partyId" title="${uiLabelMap.PartyParty}"><lookup target-form-name="LookupPartyName" default-value="${timesheet.partyId}"/></field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="rateTypeId" title="${uiLabelMap.WorkEffortTimesheetRateType}"> <drop-down no-current-selected-key="STANDARD"> <entity-options entity-name="RateType"> @@ -1004,6 +1005,7 @@ under the License. </entity-options> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> <form name="ListWorkEffortContents" type="list" target="updateWorkEffortContent" list-name="workEffortContents" @@ -1050,6 +1052,7 @@ under the License. </entity-options> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="statusId" title="${uiLabelMap.CommonStatus}"> <drop-down allow-empty="true"> <entity-options entity-name="StatusItem" key-field-name="statusId"> @@ -1317,7 +1320,7 @@ under the License. <!-- <alt-target target="updateWorkEffortFixedAssetAssign" use-when="workEffortFixedAssetAssign!=null"/> --> <field name="workEffortId"><hidden/></field> <field name="fixedAssetId"><lookup target-form-name="LookupFixedAsset"/></field> - <field name="fromDate"><date-time/></field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="thruDate"><date-time/></field> <field name="statusId"> <drop-down allow-empty="true"> @@ -1398,7 +1401,7 @@ under the License. </entity-options> </drop-down> </field> - <field name="actualStartDate" title="${uiLabelMap.CommonFrom}" position="2"><date-time/></field> + <field name="actualStartDate" title="${uiLabelMap.CommonFrom}" position="2"><date-time default-value="${nowTimestamp}"/></field> <field name="actualCompletionDate" title="${uiLabelMap.CommonTo}" position="3"><date-time/></field> <field name="submitButton" title="${uiLabelMap.CommonSave}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> @@ -1433,7 +1436,7 @@ under the License. <list-options list-name="roleList" key-name="roleTypeId"/> </drop-down> </field> - <field name="fromDate"><date-time/></field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="thruDate"><date-time/></field> <field name="comments"><text size="60" maxlength="255"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit"><submit button-type="button"/></field> Modified: ofbiz/trunk/applications/workeffort/widget/WorkEffortPartyAssignForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/widget/WorkEffortPartyAssignForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/applications/workeffort/widget/WorkEffortPartyAssignForms.xml (original) +++ ofbiz/trunk/applications/workeffort/widget/WorkEffortPartyAssignForms.xml Sat Sep 17 11:02:39 2016 @@ -89,7 +89,7 @@ under the License. </entity-options> </drop-down> </field> - <field name="fromDate"><date-time/></field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="thruDate"><date-time/></field> <field name="statusId"> <drop-down no-current-selected-key="PRTYASGN_ASSIGNED"> Modified: ofbiz/trunk/specialpurpose/projectmgr/widget/forms/ProjectForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/projectmgr/widget/forms/ProjectForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/projectmgr/widget/forms/ProjectForms.xml (original) +++ ofbiz/trunk/specialpurpose/projectmgr/widget/forms/ProjectForms.xml Sat Sep 17 11:02:39 2016 @@ -656,7 +656,7 @@ </entity-options> </drop-down> </field> - <field entry-name="xx" name="fromDate"><date-time type="date"/></field> + <field entry-name="xx" name="fromDate"><date-time type="date" default-value="${nowTimestamp}"/></field> <field entry-name="xx" name="thruDate"><date-time type="date"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> @@ -790,7 +790,7 @@ </entity-options> </drop-down> </field> - <field entry-name="test" name="fromDate"><date-time type="date"/></field> + <field entry-name="test" name="fromDate"><date-time type="date" default-value="${nowTimestamp}"/></field> <field entry-name="test" name="thruDate"><date-time type="date"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> @@ -818,7 +818,7 @@ </entity-options> </drop-down> </field> - <field entry-name="test" name="fromDate"><date-time type="date"/></field> + <field entry-name="test" name="fromDate"><date-time type="date" default-value="${nowTimestamp}"/></field> <field entry-name="test" name="thruDate"><date-time type="date"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> Modified: ofbiz/trunk/specialpurpose/projectmgr/widget/forms/TaskForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/projectmgr/widget/forms/TaskForms.xml?rev=1761192&r1=1761191&r2=1761192&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/projectmgr/widget/forms/TaskForms.xml (original) +++ ofbiz/trunk/specialpurpose/projectmgr/widget/forms/TaskForms.xml Sat Sep 17 11:02:39 2016 @@ -111,7 +111,7 @@ </entity-options> </drop-down> </field> - <field name="estimatedStartDate" title="${uiLabelMap.FormFieldTitle_estimatedStartDate}" position="1"><date-time type="date"/></field> + <field name="estimatedStartDate" title="${uiLabelMap.FormFieldTitle_estimatedStartDate}" position="1"><date-time type="date" default-value="${nowTimestamp}"/></field> <field name="estimatedCompletionDate" title="${uiLabelMap.FormFieldTitle_estimatedCompletionDate}" position="2"><date-time type="date"/></field> <field name="add" title="${uiLabelMap.CommonAdd}" use-when="task==void || task==null"><submit/></field> <field name="add" title="${uiLabelMap.CommonSave}" use-when="task!=void @and task!=null"><submit/></field> @@ -764,6 +764,7 @@ <entity-options entity-name="Survey" description="${surveyName}"/> </drop-down> </field> + <field name="fromDate"><date-time default-value="${nowTimestamp}"/></field> <field name="submitButton" title="${uiLabelMap.CommonAdd}"><submit button-type="button"/></field> </form> </forms> |
Free forum by Nabble | Edit this page |