...
|
...
|
@@ -1949,13 +1949,13 @@ class Car extends Base |
|
|
$pay_fee = $order['price'];
|
|
|
$rebook_fee = 0;
|
|
|
}else if($newrefund_time>3600 & $newrefund_time<7200){
|
|
|
$pay_fee = bcmul($order['price'],0.8,2);
|
|
|
$pay_fee = bcmul($order['price'],0.2,2);
|
|
|
$rebook_fee = $pay_fee;
|
|
|
}else if($newrefund_time>7200 & $newrefund_time<28800){
|
|
|
$pay_fee = bcmul($order['price'],0.9,2);
|
|
|
$pay_fee = bcmul($order['price'],0.1,2);
|
|
|
$rebook_fee = $pay_fee;
|
|
|
}else if($newrefund_time>28800 & $newrefund_time<43200){
|
|
|
$pay_fee = bcmul($order['price'],0.9,2);
|
|
|
$pay_fee = bcmul($order['price'],0.1,2);
|
|
|
$rebook_fee = $pay_fee;
|
|
|
}else if($newrefund_time>43200){
|
|
|
$pay_fee = $order['price'];
|
...
|
...
|
|