Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
Hi,If I have the following records:foyer_modelfoyer_uomfoyer_pricefoyer_qtyfoyer_amtHow can I select foyer_price and multiply it by foyer_qty to obtain foyer_amt to be saved in the database.Thank you.
Hi,use this code in Before record added event:
$values["foyer_amt"]=$values["foyer_price"] * $values["foyer_qty"];
Thanks for your help.Figured that out <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=17648&image=1&table=forumreplies' class='bbc_emoticon' alt=':lol:' />
Hi,