How should my microflow look like if I have these entities in my domain model?

0
hey see the screenshot, i am trying to add products in the cart and want to get the total price of those producs, How should my microflow look like if I have these entities in my domain model?  
asked
1 answers
0

Make a microflow with the Cart as parameter so you can pass the right Cart object to the microflow. Then retrieve all the Cartitems over the association from Cart. Then do a list operation on that Cartitem list where you sum the price attribute and store that value in the Cart/TotalPrice.

Regards,

Ronald

 

answered