|
@@ -161,6 +161,16 @@ class UserOrder extends Model
|
|
|
}
|
|
|
$this->delete();
|
|
|
}
|
|
|
+ public function submit($data){
|
|
|
+ $this['status']=self::STATUS_WAIT_PAY;
|
|
|
+ $res=$this->allowField(true)->save($data);
|
|
|
+ if(!$res){
|
|
|
+ throw_user('保存失败');
|
|
|
+ }
|
|
|
+ if($this['coupon_id']){
|
|
|
+ UserCoupon::where('id',$this['coupon_id'])->save(['is_used'=>1]);
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
|
@@ -188,5 +198,10 @@ class UserOrder extends Model
|
|
|
$order['no']=order_no();
|
|
|
$order['expired_at']=strtotime("+10minutes");
|
|
|
});
|
|
|
+ self::afterInsert(function (self $order){
|
|
|
+ if(!$order->user->address()->where($order['from_addr'])->find()) {
|
|
|
+ $order->user->address()->save($order['from_addr']);
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
}
|