截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AfterSale.php 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <?php
  2. namespace app\common\model\after_sale;
  3. use app\common\basics\Models;
  4. use app\common\enum\PayEnum;
  5. use app\common\model\Client_;
  6. use app\common\model\Pay;
  7. use app\common\model\shop\Shop;
  8. use app\common\model\user\User;
  9. use app\common\model\order\Order;
  10. use app\common\model\order\OrderGoods;
  11. use app\common\server\ConfigServer;
  12. use think\facade\Db;
  13. class AfterSale extends Models
  14. {
  15. //售后状态
  16. const STATUS_APPLY_REFUND = 0;//申请退款
  17. const STATUS_REFUSE_REFUND = 1;//商家拒绝
  18. const STATUS_WAIT_RETURN_GOODS = 2;//商品待退货
  19. const STATUS_WAIT_RECEIVE_GOODS = 3;//商家待收货
  20. const STATUS_REFUSE_RECEIVE_GOODS = 4;//商家拒收货
  21. const STATUS_WAIT_REFUND = 5;//等待退款
  22. const STATUS_SUCCESS_REFUND = 6;//退款成功
  23. //退款类型
  24. const TYPE_ONLY_REFUND = 0;//仅退款
  25. const TYPE_REFUND_RETURN = 1;//退款退货
  26. /**
  27. * @notes 售后状态描述
  28. * @param $state
  29. * @return string|string[]
  30. * @author suny
  31. * @date 2021/7/13 6:37 下午
  32. */
  33. public static function getStatusDesc($state)
  34. {
  35. $data = [
  36. self::STATUS_APPLY_REFUND => '申请退款',
  37. self::STATUS_REFUSE_REFUND => '商家拒绝',
  38. self::STATUS_WAIT_RETURN_GOODS => '商品待退货',
  39. self::STATUS_WAIT_RECEIVE_GOODS => '商家待收货',
  40. self::STATUS_REFUSE_RECEIVE_GOODS => '商家拒收货',
  41. self::STATUS_WAIT_REFUND => '等待退款',
  42. self::STATUS_SUCCESS_REFUND => '退款成功',
  43. ];
  44. if ($state === true) {
  45. return $data;
  46. }
  47. return $data[$state] ?? '';
  48. }
  49. /**
  50. * @notes 售后类型描述
  51. * @param $type
  52. * @return string|string[]
  53. * @author suny
  54. * @date 2021/7/13 6:37 下午
  55. */
  56. public static function getRefundTypeDesc($type)
  57. {
  58. $data = [
  59. self::TYPE_ONLY_REFUND => '仅退款',
  60. self::TYPE_REFUND_RETURN => '退款退货',
  61. ];
  62. if ($type === true) {
  63. return $data;
  64. }
  65. return $data[$type] ?? '';
  66. }
  67. /**
  68. * @notes 售后原因
  69. * @return string[]
  70. * @author suny
  71. * @date 2021/7/13 6:37 下午
  72. */
  73. public static function getReasonLists()
  74. {
  75. $data = [
  76. '7天无理由退换货',
  77. '大小尺寸与商品描述不符',
  78. '颜色/图案/款式不符',
  79. '做工粗糙/有瑕疵',
  80. '质量问题',
  81. '卖家发错货',
  82. '少件(含缺少配件)',
  83. '不喜欢/不想要',
  84. '快递/物流一直未送到',
  85. '空包裹',
  86. '快递/物流无跟踪记录',
  87. '货物破损已拒签',
  88. '其他',
  89. ];
  90. return $data;
  91. }
  92. /**
  93. * @notes 预载入OrderGoods
  94. * @return \think\model\relation\HasMany
  95. * @author suny
  96. * @date 2021/7/13 6:38 下午
  97. */
  98. public function orderGoods()
  99. {
  100. return $this->hasMany(OrderGoods::class, 'id', 'order_goods_id');
  101. }
  102. /**
  103. * @notes 预载入user
  104. * @return \think\model\relation\HasOne
  105. * @author suny
  106. * @date 2021/7/13 6:38 下午
  107. */
  108. public function user()
  109. {
  110. return $this->hasOne(User::class, 'id', 'user_id')
  111. ->field('id,sn,nickname,avatar,mobile,sex,create_time');
  112. }
  113. /**
  114. * @notes 预载入order
  115. * @return AfterSale|\think\model\relation\HasOne
  116. * @author suny
  117. * @date 2021/7/13 6:38 下午
  118. */
  119. public function order()
  120. {
  121. return $this->hasOne(Order::class, 'id', 'order_id')
  122. ->field('id,shop_id,order_sn,total_amount,order_amount,pay_way,order_status,delivery_type')
  123. ->append(['delivery_type_text']);
  124. }
  125. /**
  126. * @notes 预载入shop
  127. * @return \think\model\relation\HasOne
  128. * @author suny
  129. * @date 2021/7/13 6:38 下午
  130. */
  131. public function shop()
  132. {
  133. return $this->hasOne(Shop::class, 'id', 'shop_id')
  134. ->field('id,type,name,logo')->append(['type_desc']);
  135. }
  136. /**
  137. * @notes 预载入after_sale_log
  138. * @return \think\model\relation\HasMany
  139. * @author suny
  140. * @date 2021/7/13 6:39 下午
  141. */
  142. public function logs()
  143. {
  144. return $this->hasMany('after_sale_log', 'after_sale_id', 'id')->order('id desc');
  145. }
  146. }