You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "Jacques Le Roux (JIRA)" <ji...@apache.org> on 2010/06/17 15:06:23 UTC

[jira] Closed: (OFBIZ-3821) Using number value with calcop operator does not work as thought

     [ https://issues.apache.org/jira/browse/OFBIZ-3821?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jacques Le Roux closed OFBIZ-3821.
----------------------------------

    Resolution: Fixed

Thanks Shubham,

Your patch is in trunk at r955568, R10.04 at r955571


> Using number value with calcop operator does not work as thought
> ----------------------------------------------------------------
>
>                 Key: OFBIZ-3821
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-3821
>             Project: OFBiz
>          Issue Type: Bug
>          Components: framework
>            Reporter: Jacques Le Roux
>             Fix For: Release Branch 10.04, SVN trunk
>
>         Attachments: OFBIZ-3821.patch.zip, Patch_OFBIZ-3821.patch
>
>
> For instance if you use
> {code}
> <calcop operator="multiply" field="parameters.numberSpecified">
>     <number value="${uomConversion.conversionFactor}"/>
> {code}
> and have a value > 1000 in conversionFactor you will get 1,000  for number value. It works well if you replace by
> {code}
> <calcop operator="multiply">
>     <calcop operator="get" field="parameters.numberSpecified"/>
>     <calcop operator="get" field="uomConversion.conversionFactor"/>
> {code}
> The problem exists in trunk and certainly R10.04 (not tested) maybe in previous release though I don't think so, it looks like something introduced with UEL

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.