123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805 |
- <?php
- namespace app\common\model;
- use app\admin\model\Admin;
- use app\service\pay_user\PayUser;
- use app\service\system\OrderConfig;
- use think\Db;
- use think\db\Query;
- use think\Model;
- use think\model\Collection;
- use traits\model\SoftDelete;
- /**
- *@property array send_detail 运送详情
- *@property float cal_refund 退款手续费
- *@property float refund_money 退款金额
- *@property Collection currentSenderOrder
- *@property float settle_amount
- *@property array senders
- *@property array settle_info
- *@property float profit
- *@property boolean is_same_user
- *@property User user
- *@method Query|self expired()
- *@method Query|self show()
- *@method Query|self service()()
- *@method Query|self waitGet()
- *@method Query|self running($from='')
- *@method Query|self success()
- *@method Query|self settled()
- *@method Query|self settle()
- *@method Query|self canceled()
- *@method Query|self completed()
- *@method Query|self caled()
- *@method Query|self profit($data)
- *@method Query|self over()
- *@method Query|self turnover($date='today')
- */
- class UserOrder extends Model
- {
- //use SoftDelete;
- protected $hidden=[
- 'status_bak',
- 'deleted_at',
- ];
- protected $autoWriteTimestamp=true;
- protected $createTime = 'created_at';
- protected $updateTime = 'updated_at';
- protected $deleteTime='deleted_at';
- protected $type=[
- 'has_cage'=>'boolean',
- 'from_addr'=>'json',
- 'to_addr'=>'json',
- 'refund_images'=>'array',
- ];
- const FREIGHT_FAST='fast';#快车
- const FREIGHT_AIR='air';#空运
- const FREIGHT_SPECIAL='special';#专车
- public static $freights=[
- self::FREIGHT_FAST=>'快车',
- self::FREIGHT_AIR=>'空运',
- self::FREIGHT_SPECIAL=>'专车',
- ];
- const STATUS_WAIT_PAY=0;
- const STATUS_WAIT_GET=1;
- const STATUS_GETTING=10;
- const STATUS_SENDING=20;
- const STATUS_GIVING=30;
- const STATUS_GIVED=40;
- const STATUS_COMPLETE=50;
- const STATUS_WAIT_SET=55;
- const STATUS_SET=60;
- const STATUS_SET_REJECT=65;
- const STATUS_REFUND=70;
- const STATUS_CANCEL=80;
- public static $statusList=[
- self::STATUS_WAIT_PAY=>'待支付',
- self::STATUS_WAIT_GET=>'待接单',
- self::STATUS_GETTING=>'已接单,取宠中',
- self::STATUS_SENDING=>'已取宠,运输中',
- self::STATUS_GIVING=>'送宠中',
- self::STATUS_GIVED=>'送宠完成,待用户确认',
- self::STATUS_COMPLETE=>'已完成,待提交结算信息',
- self::STATUS_WAIT_SET=>'已提交结算信息,待后台结算',
- self::STATUS_SET=>'已结算',
- self::STATUS_SET_REJECT=>'已拒绝结算',
- self::STATUS_REFUND=>'退款处理中',
- self::STATUS_CANCEL=>'已取消',
- ];
- const REFUND_STATUS_DEFAULT=0;
- const REFUND_STATUS_PASS=1;
- const REFUND_STATUS_REJECT=2;
- public static $refundStatus=[
- self::REFUND_STATUS_DEFAULT=>'审核中',
- self::REFUND_STATUS_PASS=>'审核通过',
- self::REFUND_STATUS_REJECT=>'驳回',
- ];
- protected $append=[
- 'protect_valid',
- ];
- public function user(){
- return $this->belongsTo(User::class);
- }
- public function log(){
- return $this->hasMany(UserOrderLog::class,'order_id')/*->order('id','desc')*/;
- }
- public static function payed($params){
- $id=$params['id'];
- $order=self::find($id);
- $order['pay_time']=time();
- $order['status']=self::STATUS_WAIT_GET;
- $order->notifyAdmin();
- $order->save();
- }
- public function notifyAdmin(){
- try {
- $admins=config('site.basic_ordered_notify_admin');
- $from_city=$this['from_city'];
- $to_city=$this['to_city'];
- $send_date=$this['agree_date'];
- if($admins){
- $adminUsers=Admin::whereIn('id',$admins)->whereNotNull('mobile')->column('mobile');
- foreach ($adminUsers as $mobile){
- \app\common\library\Sms::send($mobile,null,'ordered',\app\common\library\Sms::orderParam($from_city,$to_city,$send_date));
- }
- }
- }catch (\Exception $e){
- user_log('sms_ordered',[
- 'file'=>$e->getFile(),
- 'msg'=>$e->getMessage(),
- 'trace'=>$e->getTrace(),
- ]);
- }
- }
- public function notifySender(){
- try {
- $users=$this->senderOrder()->group('user_id')->column('user_id');
- $from_city=$this['from_city'];
- $to_city=$this['to_city'];
- $send_date=$this['agree_date'];
- if($users) {
- $userMobile = User::sender()->whereIn('id',$users)->column('mobile');
- foreach ($userMobile as $mobile){
- \app\common\library\Sms::send($mobile,null,'dispatch',\app\common\library\Sms::orderDispatchParam($from_city,$to_city,$send_date));
- }
- }
- }catch (\Exception $e){
- user_log('sms_dispatch',[
- 'file'=>$e->getFile(),
- 'msg'=>$e->getMessage(),
- 'trace'=>$e->getTrace(),
- ]);
- }
- }
- public function setImagesAttr($v){
- if(!$v){
- $v=[];
- }
- return json_encode($v);
- }
- public function getImagesAttr($v){
- return array_filter(json_decode($v));
- }
- /**
- * 取消
- *user.type 1未支付2驳回3退款
- *user.reason
- */
- const CT_NOT_PAY=1;
- const CT_REJECT=2;
- const CT_REFUND=3;
- public function cancel($type=self::CT_NOT_PAY,$force=false){
- if($this['status']!==self::STATUS_WAIT_PAY && !$force){
- throw_user('非待付款订单无法取消');
- }
- $this['status']=self::STATUS_CANCEL;
- $this['cancel_at']=time();
- $this['cancel_type']=$type;
- $this->save();
- if($this['coupon_id']){
- UserCoupon::setUse($this['coupon_id'],0);
- }
- }
- public function pay(){
- if($this['status']!=self::STATUS_WAIT_PAY){
- throw_user('状态有误');
- }
- if($this['expired_at']<time()){
- $this->cancel();
- throw_user('该订单已超时');
- }
- if($this['pay_type']==1){
- $params='';
- $this->user->money(bcsub(0,$this['real_amount'],2),$this['user_id'],MoneyLog::TYPE_ORDER_PAY,"订单[{$this['no']}]付款");
- self::payed(['id'=>$this['id']]);
- }else {
- $params = Payment::pay($this->user, $this['real_amount'], self::class, 'payed', ['id' => $this['id']]);
- }
- return $params;
- }
- public function complete(){
- $this->refunding();
- if($this['status']!=self::STATUS_GIVED){
- throw_user('非已送达状态无法确认完成');
- }
- $this['status']=self::STATUS_COMPLETE;
- $this['completed_at']=time();
- if(!$this->save()){
- throw_user('保存状态失败');
- }
- }
- public function refund($reason,$images){
- if(!in_array($this['status'],[self::STATUS_WAIT_GET,self::STATUS_GETTING,self::STATUS_SENDING])){
- throw_user('当前无法申请退款');
- }
- $this['refund_reason']=$reason;
- $this['refund_apply_at']=time();
- //$this['refund_amount']=$this->refund_money;
- $this['refund_amount']=0;
- $this['refund_images']=$images;
- $this['refund_status']=self::REFUND_STATUS_DEFAULT;
- $this['status_bak']=$this['status'];
- $this['status']=self::STATUS_REFUND;
- if(!$this->save()){
- throw_user('保存失败');
- }
- }
- public function refundCancel(){
- if(!in_array($this['refund_status'],[self::REFUND_STATUS_DEFAULT])){
- throw_user('当前无法取消申请退款');
- }
- $this['refund_status']=-1;
- $this['status']=$this['status_bak'];
- if(!$this->save()){
- throw_user('保存失败');
- }
- }
- public function refunding(bool $throw=true){
- $is=in_array($this['refund_status'],[self::REFUND_STATUS_DEFAULT,self::REFUND_STATUS_PASS]);
- if($throw && $is){
- throw_user('当前正在申请退款或已退款,您无法操作');
- }
- return $is;
- }
- /**
- *处理退款申请
- * @status 1同意2拒绝
- */
- public function dealRefund($data){
- if($data['status']==1){
- $this['refund_status']=self::REFUND_STATUS_PASS;
- $this['refund_amount']=$data['amount'];
- $this['refund_at']=time();
- PayUser::setType($this['pay_type']);
- UserOrderStatic::addData($this,'refund',bcsub(0,$data['amount']));
- UserOrderStatic::addData($this,'refund_profit',bcsub($this['real_amount'],$data['amount']));
- PayUser::getClass()->payment($this['refund_amount'],$this['user'],MoneyLog::TYPE_REFUND,"订单[{$this['no']}]退款",['order_id'=>$this['id']]);
- $this->cancel(self::CT_REFUND,true);
- }elseif($data['status']==2){
- $this['refund_status']=self::REFUND_STATUS_REJECT;
- $this['status']=$this['status_bak'];
- }
- $this->save();
- }
- /**
- *处理结算申请
- * @status 1同意2拒绝
- */
- public function dealSettle($data){
- if($this['status']!=self::STATUS_WAIT_SET){
- throw_user(sprintf('非待结算订单无法结算[%s]',self::$statusList[$this['status']]));
- }
- if($data['status']==1){
- $this['status']=self::STATUS_SET;
- $settle_amount=0;
- foreach ($this->currentSenderOrder()->select() as $senderOrder){
- if(is_null($senderOrder['fee_total'])){
- throw_user('有配送员尚未申请结算,请稍后再试');
- }
- PayUser::getClass()->payment($senderOrder['fee_total'],$senderOrder['user'],MoneyLog::TYPE_SETTLE,"订单[{$this['no']}]结算",['order_id'=>$this['id']]);
- $settle_amount=bcadd($settle_amount,$senderOrder['fee_total']);
- }
- #加一个盈利记录
- User::money($this->profit,0,MoneyLog::TYPE_PROFIT,"订单[{$this['no']}]盈利",['order_id'=>$this['id']],false);
- UserOrderStatic::addData($this,'settle',bcsub(0,$settle_amount));
- UserOrderStatic::addData($this,'profit',$this->profit);
- $this['settled_at']=time();
- }elseif($data['status']==2){
- $this['status']=self::STATUS_COMPLETE;
- $this->currentSenderOrder()->update([
- 'fee_1'=>0,
- 'fee_2'=>0,
- 'fee_3'=>0,
- 'fee_4'=>0,
- 'fee_5'=>0,
- 'fee_6'=>0,
- 'fee_total'=>null,
- ]);
- }
- if(!$this->save()){
- throw_user('保存失败');
- }
- }
- public function getCalRefundAttr($v,$data){
- if($this['freight']==self::FREIGHT_AIR){
- $fee=bcdiv(config('site.order_refund_air'),100,4);
- }else{
- $fee=bcdiv(config('site.order_refund_land'),100,4);
- }
- $amount=bcmul($this['real_amount'],$fee);
- return $amount;
- }
- public function getRefundMoneyAttr($v,$data){
- return bcsub($this['real_amount'],$this->cal_refund);
- }
- public function getSendDetailAttr(){
- $log=$this->log()->user()->select();
- $res['addr']=$this['to_addr']['location'];
- $res['log']=$log;
- return $res;
- }
- public function remove(){
- if(!in_array($this['status'],[self::STATUS_CANCEL,self::STATUS_SET,self::STATUS_SET_REJECT])){
- throw_user('非已取消或完成订单无法删除');
- }
- if($this['user_deleted_at']){
- throw_user('该订单已删除');
- }
- /*$this['user_deleted_at']=time();
- $this->save();*/
- user_log('user_order_deleted',$this->toArray());
- $this->delete();
- }
- public function submit($data){
- $this['status']=self::STATUS_WAIT_PAY;
- #订单手动还是自动接
- $this['way']=(new OrderConfig())->get('order_way','auto');
- $res=$this->allowField(true)->save($data);
- if(!$res){
- throw_user('保存失败');
- }
- if($this['coupon_id']){
- UserCoupon::setUse($this['coupon_id']);
- }
- }
- /** 待接单 */
- public static function wait(User $user){
- $q=self::alias('user_order');
- $city=$user->area()->column('name');
- $sendType=$user->send()->column('type');
- if(!$sendType){
- $sendType=[0];
- }
- if(empty($city)){
- $q->where('user_order.id',0);
- return $q;
- }
- $q
- ->join('sender_order b','user_order.id=b.user_order_id and b.now=1','LEFT')
- ->whereIn('user_order.from_city|user_order.to_city',$city)
- ->whereIn('user_order.freight',$sendType)
- ->whereIn('user_order.way','auto')
- ->whereBetween('user_order.status',[self::STATUS_WAIT_GET,self::STATUS_GIVING])
- ->whereNotExists("select user_id from sender_order where user_order_id=user_order.id and user_id={$user['id']}")
- ->group('user_order.id')
- ->having('COUNT(b.id)<2')
- ->order('user_order.id','desc');
- return $q;
- }
- public function getProtectValidAttr($v,$d){
- if(!isset($this['status'])){
- return false;
- }
- return $this['status']>=self::STATUS_WAIT_GET && $this['status']<=self::STATUS_GIVED;
- }
- public function senderOrder(){
- return $this->hasMany(SenderOrder::class)->removeOption('soft_delete');
- }
- /** 当前的配送员订单 */
- public function currentSenderOrder($user_id=null){
- $q=$this->senderOrder()->where('now',1)->removeOption('soft_delete')->order('type');
- if($user_id){
- $q->where('user_id',$user_id);
- }
- return $q;
- }
- /** 是否能接单 */
- public function checkGet(User $user){
- if($this->currentSenderOrder()->count()>1){
- throw_user('订单已被接单,您暂时无法接单(1)');
- }
- $type=$user->getSendType($this);
- /*if($user->isSendGet($type) && $this['status'] != self::STATUS_WAIT_GET) {
- throw_user("订单已被接单,您暂时无法接单(2)");
- }*/
- return $type;
- }
- /** 接单 */
- public function accept(User $user){
- $type=$this->checkGet($user);
- if($this['status']==self::STATUS_WAIT_GET) {
- $this['status'] = self::STATUS_GETTING;
- }
- #取送都是自己,取送订单创建
- if($user->isSendAll($type)){
- $time=time();
- $get=$this->senderOrder()->save([
- 'user_id'=>$user['id'],
- 'status' =>$this['status'],
- 'type' =>1,
- 'now' =>1,
- 'get_at' =>$time,
- ]);
- if(!$get){
- throw_user('保存取宠订单失败');
- }
- $sender=$this->senderOrder()->save([
- 'user_id'=>$user['id'],
- 'status' =>$this['status'],
- 'type' =>2,
- 'now' =>1,
- 'get_at' =>$time,
- ]);
- if(!$sender){
- throw_user('保存送宠订单失败');
- }
- }else{
- $sender_order=$this->senderOrder()->save([
- 'user_id'=>$user['id'],
- 'status' =>$this['status'],
- 'type' =>$type,
- 'now' =>1,
- 'get_at' =>time(),
- ]);
- if(!$sender_order){
- throw_user('保存配送订单失败');
- }
- }
- if(!$this['get_at']){
- $this['get_at']=time();
- }
- $this->save();
- }
- public function manualGet(User $getUser,User $sendUser){
- //$getUser->checkOrderArea($this['from_city']);
- //$sendUser->checkOrderArea($this['to_city']);
- $this['status'] = self::STATUS_GETTING;
- #取送都是自己,取送订单创建
- $sender_order=$this->senderOrder()->save([
- 'user_id'=>$getUser['id'],
- 'status' =>$this['status'],
- 'type' =>1,
- 'now' =>1,
- 'get_at' =>time(),
- ]);
- if(!$sender_order){
- throw_user('保存配送订单1失败');
- }
- $sender_order=$this->senderOrder()->save([
- 'user_id'=>$sendUser['id'],
- 'status' =>$this['status'],
- 'type' =>2,
- 'now' =>1,
- 'get_at' =>time(),
- ]);
- if(!$sender_order){
- throw_user('保存配送订单2失败');
- }
- if(!$this['get_at']){
- $this['get_at']=time();
- }
- $this->save();
- $this->notifySender();
- }
- /** 更新状态 */
- public function updateStatus($status,User $user){
- if(in_array($status,[0,1])){
- return $status;
- }
- $this->refunding();
- $senderS=[
- self::STATUS_GETTING=>self::STATUS_SENDING,
- self::STATUS_SENDING=>self::STATUS_GIVING,
- ];
- $recS=[
- self::STATUS_GIVING=>self::STATUS_GIVED,
- ];
- $arr=$senderS+$recS;
- if($this['status']!=$status){
- throw_user('状态'.self::$statusList[$this['status']].'有误');
- }
- if(!$this->is_same_user) {
- $type = $user->getSendType($this);
- if ($user->isSendGet($type) && !isset($senderS[$status])) {
- throw_user('您是取宠人,无法更新状态' . self::$statusList[$status]);
- } elseif ($user->isSendSend($type) && !isset($recS[$status])) {
- throw_user('您是送宠人,无法更新状态' . self::$statusList[$status]);
- }
- }
- $this['status']=$arr[$status];
- if(!$this->save()){
- throw_user('更新失败');
- }
- return $this['status'];
- }
- /**
- * 进行中的订单
- * @param static|Query $query
- */
- public function scopeRunning(Query $query,$from=''){
- $status=[];
- if($from=='user'){
- $status=[
- self::STATUS_WAIT_GET,
- ];
- }
- $query
- ->show()
- ->whereIn('status',array_merge($status,[
- self::STATUS_GETTING,
- self::STATUS_SENDING,
- self::STATUS_GIVING,
- self::STATUS_GIVED,
- self::STATUS_REFUND,
- ]));
- }
- /** 计算收益 */
- public static function calcProfit($date=null){
- }
- /** 结算金额 */
- public function getSettleAmountAttr($v,$data){
- $sender_order=$this->currentSenderOrder()->select();
- $amount=0;
- foreach ($sender_order as $order){
- $amount=bcadd($amount,$order['fee_total']);
- }
- return $amount;
- }
- /** 配送员 */
- public function getSendersAttr($v,$data){
- $sender_order=$this->currentSenderOrder()->select();
- $new=[];
- #按0取1送的键值排序
- foreach ($sender_order as $item){
- $item->append(['user']);
- $new[$item['type']-1]=$item;
- }
- return array_column($new,null);
- }
- /** 结算总的金额 */
- public function getSettleInfoAttr($v,$data){
- $arr=$this->senders;
- $total=[
- 'fee_total'=>0
- ];
- foreach ($arr as $item){
- for ($i=1;$i<=6;$i++) {
- $total["fee_$i"] = bcadd($total["fee_$i"]??0,$item["fee_$i"]);
- }
- $total['fee_total']=bcadd($total['fee_total']??0,$item['fee_total']);
- }
- return $total;
- }
- /** 盈利总的金额 */
- public function getProfitAttr($v,$data){
- return bcsub($this['real_amount'],$this->settle_info['fee_total']);
- }
- /** 是否相同接单人 */
- public function getIsSameUserAttr(){
- $senders=$this->currentSenderOrder()->select();
- return $senders->count()==2 && count(array_unique($senders->column('user_id')))==1;
- }
- protected function getCreatedAtAttr($a){
- return date('Y-m-d H:i:s',$a)?:'';
- }
- protected function getPayTimeAttr($a){
- if(!$a){
- return '';
- }
- return date('Y-m-d H:i:s',$a);
- }
- protected function getCompletedAtAttr($a){
- if(!$a){
- return '';
- }
- return date('Y-m-d H:i:s',$a);
- }
- protected function getRefundApplyAtAttr($a){
- if(!$a){
- return '';
- }
- return date('Y-m-d H:i:s',$a);
- }
- protected function getRefundAtAttr($a){
- if(!$a){
- return '';
- }
- return date('Y-m-d H:i:s',$a);
- }
- /** init */
- protected static function init()
- {
- self::beforeInsert(function (self $order){
- $order['no']=order_no();
- $order['expired_at']=strtotime("+10minutes");
- });
- self::afterInsert(function (self $order){
- /* if(!$order->user->address()->exists($order['from_addr'])->find()) {
- $addr=$order['from_addr'];
- $addr['user_id']=$order->user_id;
- (new UserAddress())->allowField(true)->save($addr);
- }*/
- });
- self::afterUpdate(function (self $order){
- #更新配送订单状态
- $data=$order->getChangedData();
- if(isset($data['status'])){
- $order->senderOrder()->update(['status'=>$data['status']]);
- }
- #增加记录
- if(isset($data['status']) && $data['status']==self::STATUS_WAIT_GET){
- UserOrderStatic::addData($order,'pay',$order['real_amount']);
- }
- });
- self::afterDelete(function (self $order){
- user_log('user_order_deleted',$order->senderOrder()->select()->toArray());
- user_log('user_order_static',UserOrderStatic::where('no',$order['no'])->select()->toArray());
- $order->senderOrder()->delete();
- });
- }
- /** scope */
- /**
- * 待结算
- * @param Query $query
- */
- public function scopeSettle(Query $query){
- $query->where('status',self::STATUS_WAIT_SET);
- }
- /**
- * 待处理退款
- * @param Query $query
- */
- public function scopeWaitRefund(Query $query){
- $query->where('status',self::STATUS_REFUND);
- }
- /**
- * 售后
- * @param static $query
- */
- public function scopeService(Query $query){
- $query->show()->where('refund_status','>',-1);
- }
- /**
- * 总营业额
- * @param Query $query
- * @param null|array $date
- */
- public function scopeTurnover(Query $query,$date='today'){
- $query
- ->whereBetween(($table=$this->getTable()).'.status', [self::STATUS_WAIT_GET, self::STATUS_SET]);
- if($date=='today') {
- $query->whereTime($table.'.created_at', $date);
- }elseif(is_array($date)){
- list($type,$time)=$date;
- if($type=='day'){
- $query->whereBetween($table.'.created_at',[strtotime($time),strtotime("+1day",strtotime($time))]);
- }elseif ($type=='month'){
- if (substr_count($time,'-')==1){
- $time="$time-01 00:00:00";
- }
- $query->whereBetween($table.'.created_at',[strtotime($time),strtotime("+1month",strtotime($time))]);
- }elseif ($type=='year'){
- $query->whereBetween($table.'.created_at',[strtotime("$time-01-01"),strtotime(($time+1).'-01-01')]);
- }
- }
- }
- /**
- * 盈利统计
- * @param null $date
- * @param bool $detail
- * @return string
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function scopeProfit(Query $query,$date=null){
- $profit=$query
- ->join('sender_order b','user_order.id=b.user_order_id and b.now=1')
- ->where('user_order.status',self::STATUS_SET)
- ->show()
- ->group('user_order.id')
- ->fieldRaw("(user_order.real_amount-SUM(b.fee_total)) AS profit,SUM(b.fee_total) as fee_total");
- if(is_null($date)){
- $profit->whereTime('user_order.created_at','today');
- }else{
- list($type,$time)=$date;
- if($type=='day'){
- $profit->whereBetween('user_order.created_at',[$datTime=strtotime($time),$datTime+86400]);
- }elseif ($type=='month'){
- if (substr_count($time,'-')==1){
- $time="$time-01 00:00:00";
- }
- $profit->whereBetween('user_order.created_at',[strtotime($time),strtotime("+1month",strtotime($time))]);
- }elseif ($type=='year'){
- $profit->whereBetween('user_order.created_at',[strtotime("$time-01-01"),strtotime(($time+1).'-01-01')]);
- }
- }
- }
- /** 已付款,代接单 */
- public function scopeWaitGet(Query $query){
- $query
- ->show()
- ->where('status',self::STATUS_WAIT_GET);
- }
- /** 已完成 */
- public function scopeSuccess(Query $query){
- $query
- ->show()
- ->whereBetween('status',[
- self::STATUS_COMPLETE,
- self::STATUS_WAIT_SET,
- ]);
- }
- /** 已结算
- * @param Query|static $query
- */
- public function scopeSettled(Query $query){
- $query
- ->whereIn('status',[self::STATUS_SET,self::STATUS_SET_REJECT]);
- }
- /**
- * 已取消
- * @param Query|self $query
- */
- public function scopeCanceled(Query $query){
- $query->where('status',self::STATUS_CANCEL);
- }
- /** 已超时 */
- public function scopeExpired(Query $query,$limit=10){
- $query->where('expired_at','<',time())
- ->where('status',self::STATUS_WAIT_PAY)
- ->order('id','desc')
- ->limit($limit);
- }
- /**
- * 已完成
- * @param Query|self $query
- */
- public function scopeOver(Query $query){
- $query
- ->show()
- ->whereBetween('status',[self::STATUS_COMPLETE,self::STATUS_SET_REJECT]);
- }
- /** 展示的 */
- public function scopeShow(Query $query){
- $query->whereNull("{$this->getTable()}.user_deleted_at");
- }
- /** 后台使用已完成 */
- public function scopeCompleted(Query $query){
- $query->where('status',UserOrder::STATUS_COMPLETE)
- ->show()
- ->order('id','desc');
- }
- /** 后台使用已结算 */
- public function scopeCaled(Query $query){
- $query->where('status',UserOrder::STATUS_SET)
- ->show()
- ->order('id','desc');
- }
- /** 已付款的 */
- public function scopeHasPayed(Query $query){
- $query->where('user_order.status','>',self::STATUS_WAIT_PAY);
- }
- /** trashed */
- public static function withTrashed(){
- return new self;
- }
- }
|