截流自动化的商城平台
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.

IntegralOrder.php 7.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\model\integral;
  20. use app\common\basics\Models;
  21. use app\common\enum\IntegralGoodsEnum;
  22. use app\common\enum\IntegralOrderEnum;
  23. use app\common\enum\PayEnum;
  24. use app\common\model\user\User;
  25. use app\common\server\AreaServer;
  26. /**
  27. * 积分订单
  28. * Class IntegralOrder
  29. * @package app\common\model\integral
  30. */
  31. class IntegralOrder extends Models
  32. {
  33. // 设置json类型字段
  34. protected $json = ['goods_snap'];
  35. // 设置JSON数据返回数组
  36. protected $jsonAssoc = true;
  37. /**
  38. * @notes 订单用户
  39. * @return \think\model\relation\HasOne
  40. * @author suny
  41. * @date 2021/7/13 6:48 下午
  42. */
  43. public function user()
  44. {
  45. return $this->hasOne(User::class, 'id', 'user_id')
  46. ->field('id,sn,nickname,avatar,level,mobile,sex,create_time');
  47. }
  48. /**
  49. * @notes 收货地址
  50. * @param $value
  51. * @param $data
  52. * @return mixed|string
  53. * @author 段誉
  54. * @date 2022/3/2 10:33
  55. */
  56. public function getDeliveryAddressAttr($value, $data)
  57. {
  58. return AreaServer::getAddress([
  59. $data['province'],
  60. $data['city'],
  61. $data['district']
  62. ], $data['address']);
  63. }
  64. /**
  65. * @notes 汇付斗拱参数
  66. * @param $fieldValue
  67. * @param $data
  68. * @return array
  69. * @author lbzy
  70. * @datetime 2023-10-23 17:28:25
  71. */
  72. function getHfdgParamsAttr($fieldValue, $data)
  73. {
  74. return $fieldValue ? ((array) json_decode($fieldValue, true)) : [];
  75. }
  76. function setHfdgParamsAttr($fieldValue, $data)
  77. {
  78. if (is_string($fieldValue)) {
  79. return $fieldValue;
  80. }
  81. return json_encode((array) $fieldValue, JSON_UNESCAPED_UNICODE);
  82. }
  83. /**
  84. * @notes 按钮
  85. * @param $value
  86. * @param $data
  87. * @return array
  88. * @author 段誉
  89. * @date 2022/3/2 9:43
  90. */
  91. public function getBtnsAttr($value, $data)
  92. {
  93. $goods_snap = $data['goods_snap'];
  94. $btns = [
  95. 'pay_btn' => $this->getPayBtn($data),
  96. 'cancel_btn' => $this->getCancelBtn($data, $goods_snap),
  97. 'delivery_btn' => $this->getDeliveryBtn($data, $goods_snap),
  98. 'confirm_btn' => $this->getConfirmBtn($data, $goods_snap),
  99. 'del_btn' => $this->getDelBtn($data),
  100. ];
  101. return $btns;
  102. }
  103. /**
  104. * @notes 是否显示支付按钮
  105. * @param $data
  106. * @return int
  107. * @author 段誉
  108. * @date 2022/3/2 9:36
  109. */
  110. public function getPayBtn($data)
  111. {
  112. $btn = 0;
  113. if ($data['order_status'] == IntegralOrderEnum::ORDER_STATUS_NO_PAID && $data['pay_status'] == PayEnum::UNPAID) {
  114. $btn = 1;
  115. }
  116. return $btn;
  117. }
  118. /**
  119. * @notes 返回是否显示取消订单按钮
  120. * @param $data
  121. * @return int
  122. * @author 段誉
  123. * @date 2022/3/2 9:37
  124. */
  125. public function getCancelBtn($data, $goods_snap)
  126. {
  127. $btn = 0;
  128. // 积分订单 商品类型为红包时 不可取消
  129. if ($goods_snap['type'] == IntegralGoodsEnum::TYPE_BALANCE) {
  130. return $btn;
  131. }
  132. // 未支付的订单 或 已支付但未发货 可以取消
  133. if (is_string($data['create_time'])) {
  134. $data['create_time'] = strtotime($data['create_time']);
  135. }
  136. if (($data['order_status'] == IntegralOrderEnum::ORDER_STATUS_NO_PAID && $data['pay_status'] == PayEnum::UNPAID)
  137. || ($data['pay_status'] == PayEnum::ISPAID && $data['order_status'] == IntegralOrderEnum::ORDER_STATUS_DELIVERY)) {
  138. $btn = 1;
  139. }
  140. return $btn;
  141. }
  142. /**
  143. * @notes 返回是否显示物流按钮
  144. * @param $data
  145. * @return mixed
  146. * @author 段誉
  147. * @date 2022/3/2 9:37
  148. */
  149. public function getDeliveryBtn($data, $goods_snap)
  150. {
  151. // 红包类型 或 商品无需物流
  152. if ($goods_snap['type'] == IntegralGoodsEnum::TYPE_BALANCE || $goods_snap['delivery_way'] == 0) {
  153. return 0;
  154. }
  155. return $data['shipping_status'];
  156. }
  157. /**
  158. * @notes 返回是否显示确认收货按钮
  159. * @param $data
  160. * @return int
  161. * @author 段誉
  162. * @date 2022/3/2 9:37
  163. */
  164. public function getConfirmBtn($data, $goods_snap)
  165. {
  166. $btn = 0;
  167. // 红包类型 或 订单无需物流
  168. if ($goods_snap['type'] == IntegralGoodsEnum::TYPE_BALANCE || $goods_snap['delivery_way'] == 0) {
  169. return $btn;
  170. }
  171. // 订单待收货 且 已发货状态
  172. if ($data['order_status'] == IntegralOrderEnum::ORDER_STATUS_GOODS && $data['shipping_status'] == 1) {
  173. $btn = 1;
  174. }
  175. return $btn;
  176. }
  177. /**
  178. * @notes 返回是否显示删除按钮
  179. * @param $data
  180. * @return int
  181. * @author 段誉
  182. * @date 2022/3/2 9:37
  183. */
  184. public function getDelBtn($data)
  185. {
  186. $btn = 0;
  187. if ($data['order_status'] == IntegralOrderEnum::ORDER_STATUS_DOWN) {
  188. if ($data['pay_status'] == PayEnum::UNPAID || $data['refund_status'] == 1) {
  189. $btn = 1;
  190. }
  191. }
  192. return $btn;
  193. }
  194. /**
  195. * @notes 兑换类型
  196. * @param $value
  197. * @param $data
  198. * @return string|string[]
  199. * @author ljj
  200. * @date 2022/3/2 6:06 下午
  201. */
  202. public function getTypeDescAttr($value,$data)
  203. {
  204. return IntegralGoodsEnum::getTypeDesc($data['exchange_type']);
  205. }
  206. /**
  207. * @notes 订单状态
  208. * @param $value
  209. * @param $data
  210. * @return array|mixed|string|string[]
  211. * @author ljj
  212. * @date 2022/3/2 6:16 下午
  213. */
  214. public function getOrderStatusDescAttr($value,$data)
  215. {
  216. return IntegralOrderEnum::getOrderStatus($data['order_status']);
  217. }
  218. /**
  219. * @notes 支付状态
  220. * @param $value
  221. * @param $data
  222. * @return string|string[]
  223. * @author ljj
  224. * @date 2022/3/3 11:06 上午
  225. */
  226. public function getPayStatusDescAttr($value,$data)
  227. {
  228. return PayEnum::getPayStatus($data['pay_status']);
  229. }
  230. /**
  231. * @notes 支付方式
  232. * @param $value
  233. * @param $data
  234. * @return array|mixed|string|string[]
  235. * @author ljj
  236. * @date 2022/3/3 11:10 上午
  237. */
  238. public function getPayWayDescAttr($value,$data)
  239. {
  240. return PayEnum::getPayWay($data['pay_way']);
  241. }
  242. }