I am creating a ZenCart payment module. I can pass through the products, the shipping details as well as the shipping fee, but it won’t pass the coupon through without messing up the currency format.
If i do this, it won’t display the coupon at all
$mCouponCost => $order->info['coupon_cost'] * $order->info['currency_value'];
If i do it like this, it will display the coupon but it messes up the currency format
$mCouponCost = $order->info['coupon_cost'] -> $order->info['currency_value'];
All the code is below:
$mCouponCost = $order->info['coupon_cost'] - $order->info['currency_value'];
if (!empty($mCouponCost)) {
$j++;
$process_button_string .= zen_draw_hidden_field('LIDSKU' . $j, 'Coupon') .
zen_draw_hidden_field('LIDDesc' . $j, 'Coupon Cost') .
zen_draw_hidden_field('LIDPrice' . $j, number_format($mCouponCost, 2, '.', '')) .
zen_draw_hidden_field('LIDQty' . $j, '1') .
zen_draw_hidden_field('ShippingRequired' . $j, '1') .
zen_draw_hidden_field('IsVoucher' . $j, '0');
}
Where am I going wrong?