[
https://issues.apache.org/jira/browse/OFBIZ-2256?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Jacques Le Roux closed OFBIZ-2256.
----------------------------------
Resolution: Won't Fix
Assignee: Jacques Le Roux
Sorry Pratik,
Most of what you submitted have been converted this week end.
I used Eclipse S/R regexps, please see OFBIZ-2243. This was more secure and actually doing it by hand would have take time and would have been more error prone. For instance look at
{code}
<field name="deleteLink" title=" " widget-style="buttontext">
<hyperlink target="removeRoutingProductLink" description="${uiLabelMap.CommonDelete}" also-hidden="false">
<parameter param-name="productId"/>
<parameter param-name="workEffortId"/>
<parameter param-name="fromDate"/>
<parameter param-name="workEffortGoodStdTypeId"/>
</hyperlink>
{code}
actually should have been
{code}
<field name="deleteLink" title="${uiLabelMap.CommonEmptyHeader}" widget-style="buttontext">
<hyperlink target="removeRoutingProductLink" description="${uiLabelMap.CommonDelete}" also-hidden="false">
<parameter param-name="workEffortId" from-field="workEffortId"/>
<parameter param-name="productId" from-field="productId"/>
<parameter param-name="fromDate" from-field="fromDate"/>
<parameter param-name="workEffortGoodStdTypeId" value="ROU_PROD_TEMPLATE"/>
</hyperlink>
{code}
Also
{code}
<field name="removeCostComponentCalc" title="${uiLabelMap.CommonEmptyHeader}" widget-style="buttontext">
<hyperlink target="removeCostComponentCalc?costComponentCalcId=${costComponentCalcId}" description="${uiLabelMap.CommonRemove}" also-hidden="false"/>
{code}
can't be translated as you did (update and look how I did)
ProductionRunForms.xml has errors too...
Nevertheless, I forgot to work on <link in screens and menus and your patch remind me to do so
Thanks!
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.