UserOrder.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. use traits\model\SoftDelete;
  5. /**
  6. *@property array send_detail 运送详情
  7. *@property float cal_refund 退款手续费
  8. *@property float refund_money 退款金额
  9. */
  10. class UserOrder extends Model
  11. {
  12. use SoftDelete;
  13. protected $deleteTime='deleted_at';
  14. protected $type=[
  15. 'get_time'=>'array',
  16. 'has_cage'=>'boolean',
  17. 'from_addr'=>'json',
  18. 'to_addr'=>'json',
  19. ];
  20. const FREIGHT_FAST='fast';#快车
  21. const FREIGHT_AIR='air';#空运
  22. const FREIGHT_SPECIAL='special';#专车
  23. public static $freights=[
  24. self::FREIGHT_FAST=>'快车',
  25. self::FREIGHT_AIR=>'空运',
  26. self::FREIGHT_SPECIAL=>'专车',
  27. ];
  28. const STATUS_WAIT_PAY=0;
  29. const STATUS_WAIT_GET=1;
  30. const STATUS_WAIT_GETTING=10;
  31. const STATUS_SENDING=20;
  32. const STATUS_GIVING=30;
  33. const STATUS_GIVED=40;
  34. const STATUS_COMPLETE=50;
  35. const STATUS_SET=60;
  36. const STATUS_REFUND=70;
  37. const STATUS_CANCEL=80;
  38. public static $statusList=[
  39. self::STATUS_WAIT_PAY=>'待支付',
  40. self::STATUS_WAIT_GET=>'待接单',
  41. self::STATUS_WAIT_GETTING=>'已接单,取宠中',
  42. self::STATUS_SENDING=>'已取宠,运输中',
  43. self::STATUS_GIVING=>'送宠中',
  44. self::STATUS_GIVED=>'送宠完成,待用户确认',
  45. self::STATUS_COMPLETE=>'已完成,待结算',
  46. self::STATUS_SET=>'已结算',
  47. self::STATUS_REFUND=>'退款中',
  48. self::STATUS_CANCEL=>'已取消',
  49. ];
  50. const REFUND_STATUS_DEFAULT=0;
  51. const REFUND_STATUS_PASS=1;
  52. const REFUND_STATUS_REJECT=2;
  53. public static $refundStatus=[
  54. self::REFUND_STATUS_DEFAULT=>'审核中',
  55. self::REFUND_STATUS_PASS=>'审核通过',
  56. self::REFUND_STATUS_REJECT=>'驳回',
  57. ];
  58. public function user(){
  59. return $this->belongsTo(User::class);
  60. }
  61. public function log(){
  62. return $this->belongsTo(UserOrderLog::class,'order_id')->order('id','desc');
  63. }
  64. public static function payed($params){
  65. $id=$params['id'];
  66. $order=self::find($id);
  67. $order['pay_time']=time();
  68. $order['status']=self::STATUS_WAIT_GET;
  69. $order->save();
  70. }
  71. public function setImagesAttr($v){
  72. if(!$v){
  73. $v=[];
  74. }
  75. return json_encode($v);
  76. }
  77. public function getImagesAttr($v){
  78. return array_filter(json_decode($v));
  79. }
  80. public function cancel(){
  81. if($this['status']!==self::STATUS_WAIT_PAY){
  82. throw_user('状态有误');
  83. }
  84. $this['status']=self::STATUS_CANCEL;
  85. $this['cancel_at']=time();
  86. $this->save();
  87. if($this['coupon_id']){
  88. UserCoupon::where('id',$this['coupon_id'])->save(['is_used'=>0]);
  89. }
  90. }
  91. public function pay(){
  92. if($this['status']!=self::STATUS_WAIT_PAY){
  93. throw_user('状态有误');
  94. }
  95. if($this['pay_type']==1){
  96. $params='';
  97. $this->user->money(bcsub(0,$this['real_amount'],2),$this['user_id'],"订单[{$this['no']}]付款");
  98. self::payed(['id'=>$this['id']]);
  99. }else {
  100. $params = Payment::pay($this->user, $this['real_amount'], self::class, 'payed', ['id' => $this['id']]);
  101. }
  102. return $params;
  103. }
  104. public function complete(){
  105. if($this['status']!=self::STATUS_GIVED){
  106. throw_user('非已送达状态无法确认完成');
  107. }
  108. $this['status']=self::STATUS_COMPLETE;
  109. if(!$this->save()){
  110. throw_user('保存状态失败');
  111. }
  112. }
  113. public function refund($reason,$images){
  114. if(!in_array($this['status'],[self::STATUS_WAIT_GET,self::STATUS_WAIT_GETTING,self::STATUS_SENDING])){
  115. throw_user('当前无法申请退款');
  116. }
  117. $this['refund_reason']=$reason;
  118. $this['refund_amount']=$this->refund_money;
  119. $this['refund_images']=$images;
  120. $this['status']=self::STATUS_REFUND;
  121. $this['refund_status']=self::REFUND_STATUS_DEFAULT;
  122. if(!$this->save()){
  123. throw_user('保存失败');
  124. }
  125. }
  126. public function getCalRefundAttr($v,$data){
  127. if($this['freight']==self::FREIGHT_AIR){
  128. $fee=bcdiv(config('site.order_refund_air'),100,4);
  129. }else{
  130. $fee=bcdiv(config('site.order_refund_land'),100,4);
  131. }
  132. $amount=bcmul($this['real_amount'],$fee);
  133. return $amount;
  134. }
  135. public function getRefundMoneyAttr($v,$data){
  136. return bcsub($this['real_amount'],$this->cal_refund);
  137. }
  138. public function getSendDetailAttr(){
  139. $log=$this->log()->select();
  140. $res['addr']=$this['to_addr']['address'];
  141. $res['log']=$log;
  142. return $res;
  143. }
  144. public function remove(){
  145. if(!in_array($this['status'],[self::STATUS_CANCEL])){
  146. throw_user('非已取消订单无法删除');
  147. }
  148. $this->delete();
  149. }
  150. protected static function init()
  151. {
  152. self::beforeInsert(function (self $order){
  153. $order['no']=order_no();
  154. $order['expired_at']=strtotime("+10minutes");
  155. });
  156. }
  157. }