|
@@ -224,22 +224,22 @@ class UserOrderService{
|
|
|
return $this->order;
|
|
|
}
|
|
|
|
|
|
- protected function fast(){
|
|
|
+ public function fast(){
|
|
|
#距离
|
|
|
- $distance=$this->order['distance'];
|
|
|
+ $distance=$this->order['distance']??401;
|
|
|
$start_kilo=$this->config['fast']['start_kilo'];
|
|
|
$start_amount=$this->config['fast']['start_amount'];
|
|
|
if($distance<=$start_kilo){
|
|
|
$distance_price=$start_amount;
|
|
|
}else{
|
|
|
- $out_price=$start_amount;
|
|
|
- foreach ($this->config['fast']['detail'] as $detail){
|
|
|
- if($distance>=$detail['start_kilo'] && $distance<$detail['end_kilo']){
|
|
|
- $out_price=bcadd($out_price,bcmul($detail['amount'],$distance));
|
|
|
+ $distance_price=0;
|
|
|
+ foreach ($this->config['fast']['detail'] as $k=>$detail){
|
|
|
+ if($distance>$detail['start_kilo'] && $distance<=$detail['end_kilo']){
|
|
|
+ $calc=str_replace('距离数',$distance,$detail['amount']);
|
|
|
+ $distance_price=eval("return $calc;");
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
|
- $distance_price=$out_price;
|
|
|
}
|
|
|
#笼子百分比算出运费
|
|
|
$cage_float=$this->cage_spec['per']/100;
|