I am checking the subscription in a beta channel and the doOrder command is returning 0 for the prize of the product even though the prize is deducting properly and subscription is a success.
here is my order details:
myOrder = CreateObject("roSGNode", "ContentNode")
product = myOrder.CreateChild("ContentNode")
product.addFields({ "code": m.product.code, "name": m.product.name, "qty": 1 })
m.store.order = myOrder
m.store.command = "doOrder"
what I am doing wrong any idea??