Hi, I might have found a possible bug.
I want to do a simple invoicing app
My data is:
ListPrice (the list price of the item)
DiscountPercent (% of discount)
DiscountReverse (the % opposite of discount. helps with calculation. i.e: if DiscountPercent =30%, DiscountReverse = 70%).
PriceEach (=ListPrice * DiscountReverse)
Quantity
PriceTotal (=PriceEach * Quantity)
I would like to show a repeating group with all these fields as input boxes
for each input box, there is a workflow of the type: When ____ is changed --> run the calculation
all the calculation formulas are fine, checked with the debugger
I consistently have issues with the PriceTotal field. The field is calculated fine and saved correctly into the database, but the value shown will only update once.
how to reproduce the issue:
change the value in the “quantity” field once --> the PriceTotal field is correctly updated
change the value in the “quantity” field again --> the PriceTotal field is no longer updated
I have added a second PriceTotal field and this is correctly updated. If I delete the misbehaving one, then the second will break.
any thoughts?