|
@@ -4,13 +4,37 @@ namespace app\service;
|
|
|
use app\common\model\User;
|
|
|
use app\common\model\UserCoupon;
|
|
|
use app\common\model\UserOrder;
|
|
|
+use think\Exception;
|
|
|
|
|
|
class UserOrderService{
|
|
|
- /** @var UserOrder */
|
|
|
protected $order;
|
|
|
protected $user;
|
|
|
/** @var UserCoupon[] */
|
|
|
protected $coupon;
|
|
|
+ protected $user_coupon=[];
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @return UserCoupon[]
|
|
|
+ */
|
|
|
+ public function getCoupon(): array
|
|
|
+ {
|
|
|
+ return $this->coupon;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param UserCoupon[] $coupon
|
|
|
+ */
|
|
|
+ public function setCoupon($coupon)
|
|
|
+ {
|
|
|
+ if($coupon) {
|
|
|
+ $c = $this->getUser()->coupon()->use()->find($coupon);
|
|
|
+ if (!$c) {
|
|
|
+ throw_user('优惠券不存在');
|
|
|
+ }
|
|
|
+ $this->user_coupon = $c;
|
|
|
+ }
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
|
|
|
public function __construct()
|
|
|
{
|
|
@@ -18,7 +42,7 @@ class UserOrderService{
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * @return mixed
|
|
|
+ * @return User
|
|
|
*/
|
|
|
public function getUser()
|
|
|
{
|
|
@@ -38,7 +62,7 @@ class UserOrderService{
|
|
|
/**
|
|
|
* @return mixed
|
|
|
*/
|
|
|
- public function getOrder(): UserOrder
|
|
|
+ public function getOrder()
|
|
|
{
|
|
|
return $this->order;
|
|
|
}
|
|
@@ -46,60 +70,83 @@ class UserOrderService{
|
|
|
/**
|
|
|
* @param mixed $order
|
|
|
*/
|
|
|
- public function setOrder(UserOrder $order): void
|
|
|
+ public function setOrder(UserOrder $order)
|
|
|
{
|
|
|
- $this->order = $order;
|
|
|
+ $data=$order->toArray();
|
|
|
+ $this->order = $data;
|
|
|
+ return $this;
|
|
|
}
|
|
|
|
|
|
- public function import($data){
|
|
|
- $order=new UserOrder($data);
|
|
|
- list($order->agree_date,$order->agree_time)=explode(' ',$data['agree_time']);
|
|
|
- $order->from_city=$data['from_addr']['city'];
|
|
|
- $order->to_city=$data['to_addr']['city'];
|
|
|
- $order->pet_category=Pet::category()[$data['pet_category']]['name'];
|
|
|
- $order->spec=Pet::spec()[$data['spec']]['name'];
|
|
|
+ public function import(&$data){
|
|
|
+ list($data['agree_date'],$data['agree_time'])=explode(' ',$data['agree_time']);
|
|
|
+ $data['from_city']=$data['from_addr']['city'];
|
|
|
+ $data['to_city']=$data['to_addr']['city'];
|
|
|
+ $data['pet_category']=Pet::category()[$data['pet_category']]['name'];
|
|
|
+ $data['spec']=Pet::spec()[$data['spec']]['name'];
|
|
|
if(!empty($data['protect_id'])) {
|
|
|
$protect=Pet::protect()[$data['protect_id']];
|
|
|
- $order->protect_amount = $protect['price'];
|
|
|
- $order->protect_max = $protect['max'];
|
|
|
+ $data['protect_amount'] = $protect['price'];
|
|
|
+ $data['protect_max'] = $protect['max'];
|
|
|
}
|
|
|
- $this->order=$order;
|
|
|
+ $data['coupon_amount']=0;
|
|
|
+ $data['real_amount']=0;
|
|
|
+ $this->order=$data;
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
function prepare(){
|
|
|
$items=[];
|
|
|
+ $total_amount=0;
|
|
|
foreach (UserOrder::$freights as $type=>$_){
|
|
|
$item=[
|
|
|
- 'type'=>$type,
|
|
|
+ 'type'=>$type,//类型
|
|
|
+ 'price'=>0,#实付
|
|
|
+ 'total_price'=>0,#总价
|
|
|
+ 'coupon'=>[],
|
|
|
];
|
|
|
- $item['price']=$this->order[$type]=$this->{$type}();
|
|
|
+ $item['total_price']=$this->{$type}();
|
|
|
+ $item['price']=$item['total_price'];
|
|
|
$coupon=[];
|
|
|
foreach ($this->coupon as $_coupon){
|
|
|
- if($_coupon->fit($item['price'])){
|
|
|
+ $_coupon['selected']=false;
|
|
|
+ if($type==$this->order['freight'] && $this->user_coupon && $_coupon['id']==$this->user_coupon['id'] && $_coupon->fit($item['total_price'])){
|
|
|
+ $_coupon['selected']=true;
|
|
|
+ $this->order['coupon_amount']=$_coupon->amount($item['total_price']);
|
|
|
+ $item['price']=bcsub($item['price'],$this->order['coupon_amount']);
|
|
|
+ }
|
|
|
+ if($_coupon->fit($item['total_price'])){
|
|
|
$coupon[]=$_coupon;
|
|
|
}
|
|
|
}
|
|
|
$item['coupon']=$coupon;
|
|
|
$items[]=$item;
|
|
|
+
|
|
|
+ if($type==$this->order['freight']){
|
|
|
+ $total_amount=bcadd($total_amount,$item['total_price']);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
+ $protect=Pet::protect()[$this->order['protect_id']]??[];
|
|
|
+ $total_amount=bcadd($total_amount,$protect['price']??0);
|
|
|
+
|
|
|
$this->order['freights']=$items;
|
|
|
+ $this->order['total_amount']=$total_amount;
|
|
|
+ $this->order['real_amount']=bcsub($this->order['total_amount'],$this->order['coupon_amount']);
|
|
|
|
|
|
return $this->order;
|
|
|
}
|
|
|
|
|
|
protected function fast(){
|
|
|
- $price=bcmul(bcmul(bcmul(2,$this->order->num),$this->order->weight),$this->order->piece);
|
|
|
+ $price=bcmul(bcmul(bcmul(2,$this->order['num']),$this->order['weight']),$this->order['piece']);
|
|
|
return $price;
|
|
|
}
|
|
|
protected function air(){
|
|
|
- $price=bcmul(bcmul(bcmul(2,$this->order->num),$this->order->weight),$this->order->piece);
|
|
|
+ $price=bcmul(bcmul(bcmul(2,$this->order['num']),$this->order['weight']),$this->order['piece']);
|
|
|
$price=bcmul($price,5);
|
|
|
return $price;
|
|
|
}
|
|
|
protected function special(){
|
|
|
- $price=bcmul(bcmul(bcmul(2,$this->order->num),$this->order->weight),$this->order->piece);
|
|
|
+ $price=bcmul(bcmul(bcmul(2,$this->order['num']),$this->order['weight']),$this->order['piece']);
|
|
|
$price=bcmul($price,2);
|
|
|
return $price;
|
|
|
}
|