...
|
...
|
@@ -1861,13 +1861,13 @@ class Car extends Base |
|
|
];
|
|
|
$this->success("222请求成功", $data);
|
|
|
}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'];
|
...
|
...
|
|