sen in p. m.
thanks
Bye
thanks
Bye
<?php
$this->get_payment_discount( $d['payment_method_id'], $totals['order_subtotal'] + $totals['order_tax'] - @$_SESSION['coupon_discount']);
?>
<?php
$payment_discount = $ps_checkout->get_payment_discount($payment_method_id, $total);
?>
<?php
$payment_discount = $ps_checkout -> get_payment_discount($payment_method_id, $total - @$_SESSION['coupon_discount']);
?>
<?php
if( !empty($d['payment_method_id'])) {
$totals['payment_discount'] = $d['payment_discount'] = $this->get_payment_discount($d['payment_method_id'], $totals['order_subtotal']);
} else {
$totals['payment_discount'] = $d['payment_discount'] = 0.00;
}
?>
<?php
$totals['payment_discount'] = $d['payment_discount'] = $this -> get_payment_discount($d['payment_method_id'], $d['order_subtotal_withtax'] - @$_SESSION['coupon_discount']);
?>
<?php
# seyi_code
if( !empty($d['payment_method_id']))
$totals['payment_discount']
= $d['payment_discount']
= $this->get_payment_discount($d['payment_method_id'],$totals['order_subtotal']+$totals['order_tax']);
?>
<?php
$d['order_tax'] = $totals['order_tax'] = round( $this->calc_order_tax($totals['order_taxable'], $d), 2 );
?>