Created
April 4, 2014 09:44
-
-
Save wmfairuz/9971364 to your computer and use it in GitHub Desktop.
Do calculation in mini lang
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- A = B * C --> | |
| <calculate field="A" type="BigDecimal"> | |
| <calcop field="B" operator="multiply"> | |
| <calcop field="C" operator="get"/> | |
| </calcop> | |
| </calculate> | |
| <!-- A = A / 100 --> | |
| <calculate field="A" type="BigDecimal"> | |
| <calcop field="A" operator="divide"> | |
| <number value="100"/> | |
| </calcop> | |
| </calculate> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment