|
@@ -189,15 +189,17 @@ class UserOrderService{
|
|
|
#用户折扣
|
|
|
$level_amount=bcmul($this->user->level_discount,$total_amount);
|
|
|
$this->order['level_amount']=$level_amount;
|
|
|
+
|
|
|
#优惠总金额
|
|
|
$this->order['discount_amount']=bcadd($this->order['coupon_amount'],$this->order['level_amount']);
|
|
|
|
|
|
$this->order['total_amount']=$total_amount;
|
|
|
$this->order['freights']=$items;
|
|
|
+
|
|
|
+ #先减去用户折扣的
|
|
|
+ $this->order['real_amount']=bcsub($this->order['real_amount'],$level_amount);
|
|
|
#实付的减去优惠券的
|
|
|
$this->order['real_amount']=bcsub($this->order['total_amount'],$this->order['coupon_amount']);
|
|
|
- #实付再减去折扣的
|
|
|
- $this->order['real_amount']=bcsub($this->order['real_amount'],$level_amount);
|
|
|
|
|
|
#可用的优惠券
|
|
|
$coupon=[];
|
|
@@ -228,11 +230,24 @@ class UserOrderService{
|
|
|
}
|
|
|
$distance_price=$out_price;
|
|
|
}
|
|
|
- #宠具
|
|
|
+ #笼子百分比算出运费
|
|
|
+ $cage_float=$this->cage_spec['per']/100;
|
|
|
+ $cage_float_price=bcmul($distance_price,$cage_float);
|
|
|
+
|
|
|
+ #宠具+运费
|
|
|
$cage_price=$this->cage();
|
|
|
- $total = bcadd($distance_price,$cage_price);
|
|
|
+ $total = bcadd($cage_float_price,$cage_price);
|
|
|
+
|
|
|
+ #件数
|
|
|
+ $num=$this->order['num'];
|
|
|
+ $per=$this->config['fast']['out_one_per'];
|
|
|
+ $out_float=$per/100;
|
|
|
+ $num_price=bcmul(bcmul($out_float,$cage_float_price),$num-1);
|
|
|
+ $total=bcadd($total,$num_price);
|
|
|
|
|
|
- $this->recordLog("专车-起步距离:{$start_kilo},起步价:{$start_amount},距离总价:{$distance_price},宠具价格:{$cage_price},".
|
|
|
+ $this->recordLog("专车-起步距离:{$start_kilo},起步价:{$start_amount},距离总价:{$distance_price},宠具百分比:{$cage_float}," .
|
|
|
+ "笼子百分比算出的运费:{$cage_float_price},宠具价格:{$cage_price},".
|
|
|
+ "只数:{$num},超出百分比:{$this->config['fast']['out_one_per']},超出一只总价:{$num_price}".
|
|
|
"总价:{$total}"
|
|
|
);
|
|
|
|
|
@@ -372,4 +387,4 @@ class UserOrderService{
|
|
|
{
|
|
|
$this->log && $this->log->write();
|
|
|
}
|
|
|
-}
|
|
|
+}
|