No Description
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.

ShopCommonLogic.php 6.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 易而优团队 by 陈风任 <491085389@qq.com>
  11. * Date: 2021-01-14
  12. */
  13. namespace app\common\logic;
  14. use think\Model;
  15. use think\Db;
  16. /**
  17. * 商城公共逻辑业务层
  18. * @package common\Logic
  19. */
  20. class ShopCommonLogic extends Model
  21. {
  22. /**
  23. * 初始化操作
  24. */
  25. public function initialize() {
  26. parent::initialize();
  27. $this->users_db = Db::name('users'); // 会员数据表
  28. $this->users_money_db = Db::name('users_money'); // 会员余额明细表
  29. $this->shop_order_db = Db::name('shop_order'); // 订单主表
  30. $this->shop_order_details_db = Db::name('shop_order_details'); // 订单明细表
  31. }
  32. public function GetOrderStatusIfno($Where = array())
  33. {
  34. // 查询订单信息
  35. if (empty($Where)) return '条件错误!';
  36. $OrderData = $this->shop_order_db->where($Where)->field('order_code, use_balance, use_point, order_status')->find();
  37. if (empty($OrderData)) return '订单不存在!';
  38. // 返回处理
  39. switch ($OrderData['order_status']) {
  40. case '-1':
  41. return '订单已取消,不可取消订单!';
  42. break;
  43. case '1':
  44. return '订单已支付,不可取消订单!';
  45. break;
  46. case '2':
  47. return '订单已发货,不可取消订单!';
  48. break;
  49. case '3':
  50. return '订单已完成,不可取消订单!';
  51. break;
  52. case '4':
  53. return '订单已过期,不可取消订单!';
  54. break;
  55. default:
  56. // 订单仅在未支付时返回数组
  57. return $OrderData;
  58. break;
  59. }
  60. }
  61. public function UpdateUsersProcess($GetOrder = array(), $GetUsers = array())
  62. {
  63. // 如果没有传入会员信息则获取session
  64. $Users = $GetUsers ? $GetUsers : session('users');
  65. // 若数据为空则返回false
  66. if (empty($Users) || empty($GetOrder)) return false;
  67. // 当前时间
  68. $time = getTime();
  69. /*返还余额支付的金额*/
  70. if (!empty($GetOrder['use_balance']) && $GetOrder['use_balance'] > 0) {
  71. $UsersMoney['users_money'] = Db::raw('users_money+'.($GetOrder['use_balance']));
  72. $this->users_db->where('users_id', $Users['users_id'])->update($UsersMoney);
  73. /*使用余额支付时,同时添加一条记录到金额明细表*/
  74. $AddMoneyData = [
  75. 'users_id' => $Users['users_id'],
  76. 'money' => $GetOrder['use_balance'],
  77. 'users_old_money' => $Users['users_money'],
  78. 'users_money' => $Users['users_money'] + $GetOrder['use_balance'],
  79. 'cause' => '订单取消,退还使用余额,订单号:' . $GetOrder['order_code'],
  80. 'cause_type' => 2,
  81. 'status' => 3,
  82. 'order_number' => $GetOrder['order_code'],
  83. 'add_time' => $time,
  84. 'update_time' => $time,
  85. ];
  86. $this->users_money_db->add($AddMoneyData);
  87. /* END */
  88. }
  89. /* END */
  90. }
  91. // 前后台通过,记录商品退换货服务单信息
  92. public function AddOrderServiceLog($param = [], $IsUsers = 1)
  93. {
  94. if (empty($param)) return false;
  95. // 维权类型
  96. $service_type = '';
  97. if (!empty($param['service_type']) && 1 === intval($param['service_type'])) {
  98. $service_type = '换货';
  99. } else if (!empty($param['service_type']) && 2 === intval($param['service_type'])) {
  100. $service_type = '退货退款';
  101. } else if (!empty($param['service_type']) && 3 === intval($param['service_type'])) {
  102. $service_type = '退款';
  103. }
  104. // 操作事由
  105. $LogNote = '';
  106. if (2 === intval($param['status'])) {
  107. $LogNote = '同意' . $service_type . '申请!';
  108. } else if (3 === intval($param['status'])) {
  109. $LogNote = '拒绝' . $service_type . '申请!';
  110. } else if (4 === intval($param['status'])) {
  111. $LogNote = '已退货,商家待收货!';
  112. } else if (5 === intval($param['status']) && 1 === intval($param['service_type'])) {
  113. $LogNote = '已收到退货,待重新发货!';
  114. } else if (5 === intval($param['status']) && 2 === intval($param['service_type'])) {
  115. $LogNote = '已收到退货,待转账!';
  116. } else if (6 === intval($param['status'])) {
  117. $LogNote = '已重新发货,请买家注意查收新商品,维权完成!';
  118. } else if (7 === intval($param['status']) && 1 === intval($param['service_type'])) {
  119. $LogNote = '买家已确认收货,' . $service_type . '维权完成!';
  120. } else if (7 === intval($param['status']) && in_array($param['service_type'], [2, 3]) && 1 === intval($param['refund_way'])) {
  121. $LogNote = '商家已退款到余额,' . $service_type . '维权完成!';
  122. } else if (7 === intval($param['status']) && in_array($param['service_type'], [2, 3]) && 2 === intval($param['refund_way'])) {
  123. $LogNote = '商家已线下退款,' . $service_type . '维权完成!';
  124. } else if (8 === intval($param['status'])) {
  125. $LogNote = '关闭' . $service_type . '申请!';
  126. } else if (9 === intval($param['status'])) {
  127. $LogNote = '已拒绝收货,请与买家联系处理!';
  128. }
  129. // 手动退款
  130. if (!empty($param['manual_refund']) && 1 === intval($param['manual_refund'])) {
  131. $LogNote = '商家手动退款完成服务,手动退款原因:' . $param['refund_note'];
  132. }
  133. // 操作人
  134. if (1 == $IsUsers) {
  135. $users_id = $param['users_id'];
  136. $admin_id = 0;
  137. } else {
  138. $admin_id = session('admin_id');
  139. $users_id = 0;
  140. }
  141. OrderServiceLog($param['service_id'], $param['order_id'], $users_id, $admin_id, $LogNote);
  142. }
  143. }