If user apply a coupon that saves for example 20%, and te item price is 1000€, the discount applied is : 20000 !!! not 200,00 ....if tiried the following on PAYPALCHECKOUT.ASPX.CS :
protected void btnCoupon_Click(object sender, EventArgs e) {
...............
order.DiscountAmount = order.DiscountAmount / 100;
lblCouponInformationDisplay.Text = StoreUtility.GetFormattedAmount(order.DiscountAmount, true);
//re-load the order
order = new OrderController().FetchOrder(WebUtility.GetUserName());
...
}
But after the order=new ordercontroller().... the DISCOUNT is 20000 again.....any ideas please ?