Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ShopOrderService.php 30KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629
  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\admin\model;
  14. use think\Model;
  15. use think\Page;
  16. use think\Config;
  17. use think\Db;
  18. use app\common\logic\ShopCommonLogic;
  19. /**
  20. * 商品退换货服务数据模型
  21. */
  22. class ShopOrderService extends Model
  23. {
  24. //初始化
  25. protected function initialize()
  26. {
  27. // 需要调用`Model`的`initialize`方法
  28. parent::initialize();
  29. // 会员表
  30. $this->users_db = Db::name('users');
  31. // 订单主表
  32. $this->shop_order_db = Db::name('shop_order');
  33. // 订单明细表
  34. $this->shop_order_details_db = Db::name('shop_order_details');
  35. // 订单退换明细表
  36. $this->shop_order_service_db = Db::name('shop_order_service');
  37. // 订单退换服务记录表
  38. $this->shop_order_service_log_db = Db::name('shop_order_service_log');
  39. // common商城业务层,前后台共用
  40. $this->shop_common = new ShopCommonLogic();
  41. }
  42. // 读取所有退换货服务信息处理返回
  43. public function GetAllServiceInfo($param = [], $isMerchant = false)
  44. {
  45. // 初始化数组和条件
  46. $Return = [];
  47. $where = [
  48. 'a.merchant_id' => !empty($isMerchant) ? ['>', 0] : 0
  49. ];
  50. // 订单号查询
  51. $order_code = !empty($param['order_code']) ? trim($param['order_code']) : '';
  52. if (!empty($order_code)) $where['a.order_code|a.product_name|a.refund_code'] = array('LIKE', "%{$order_code}%");
  53. // 支付方式查询
  54. $pay_name = input('pay_name/s', '');
  55. $Return['pay_name'] = $pay_name;
  56. if (!empty($pay_name)) $where['c.pay_name'] = $pay_name;
  57. // 订单下单终端查询
  58. $order_terminal = input('order_terminal/d', 0);
  59. $Return['order_terminal'] = $order_terminal;
  60. if (!empty($order_terminal)) $where['c.order_terminal'] = $order_terminal;
  61. // 查询类型
  62. $queryStatus = input('queryStatus/d', 0);
  63. if (!empty($queryStatus) && 1 === intval($queryStatus)) {
  64. $where['a.status'] = ['IN', [1]];
  65. } else if (!empty($queryStatus) && 2 === intval($queryStatus)) {
  66. $where['a.status'] = ['IN', [2, 4, 5, 6]];
  67. } else if (!empty($queryStatus) && 3 === intval($queryStatus)) {
  68. $where['a.status'] = ['IN', [7]];
  69. }
  70. // 商品类型查询
  71. // $contains_virtual = input('contains_virtual/d');
  72. // if (!empty($contains_virtual)) $where['b.prom_type'] = 10 == $contains_virtual ? 0 : $contains_virtual;
  73. if (!empty($isMerchant)) {
  74. // 时间检索条件
  75. $add_time = input('add_time/s', '');
  76. if (!empty($add_time)) {
  77. $add_time = explode('~', $add_time);
  78. $begin = strtotime(rtrim($add_time[0]));
  79. $finish = strtotime(rtrim($add_time[1]));
  80. $where['a.add_time'] = ['between', "$begin, $finish"];
  81. }
  82. } else {
  83. // 时间检索条件
  84. $begin = strtotime(input('param.add_time_begin/s'));
  85. $end = input('param.add_time_end/s');
  86. !empty($end) && $end .= ' 23:59:59';
  87. $end = strtotime($end);
  88. // 时间检索
  89. if ($begin > 0 && $end > 0) {
  90. $where['a.add_time'] = array('between', "$begin, $end");
  91. } else if ($begin > 0) {
  92. $where['a.add_time'] = array('egt', $begin);
  93. } else if ($end > 0) {
  94. $where['a.add_time'] = array('elt', $end);
  95. }
  96. }
  97. $count = $this->shop_order_service_db->alias('a')->join('__SHOP_ORDER_DETAILS__ b', 'a.details_id = b.details_id', 'LEFT')->join('__SHOP_ORDER__ c', 'a.order_id = c.order_id', 'LEFT')->where($where)->count('a.service_id');
  98. $pageObj = new Page($count, config('paginate.list_rows'));
  99. /*查询退换货订单信息*/
  100. if (!empty($isMerchant)) {
  101. $Service = $this->shop_order_service_db->alias('a')
  102. ->field('a.*, b.product_price, b.num, b.data as detailsData, c.order_status, c.order_amount, d.merchant_name')
  103. ->join('__SHOP_ORDER_DETAILS__ b', 'a.details_id = b.details_id', 'LEFT')
  104. ->join('__SHOP_ORDER__ c', 'a.order_id = c.order_id', 'LEFT')
  105. ->join('__WEAPP_MULTI_MERCHANT__ d', 'a.merchant_id = d.merchant_id', 'LEFT')
  106. ->limit($pageObj->firstRow.','.$pageObj->listRows)
  107. ->where($where)
  108. ->order('a.service_id desc')
  109. ->select();
  110. } else {
  111. $field = 'a.*, b.product_price, b.num, b.data as detailsData, c.order_status, c.order_amount';
  112. $weappInfo = model('ShopPublicHandle')->getWeappPointsShop();
  113. if (!empty($weappInfo)) $field .= ', c.points_shop_order';
  114. $Service = $this->shop_order_service_db->alias('a')
  115. ->field($field)
  116. ->join('__SHOP_ORDER_DETAILS__ b', 'a.details_id = b.details_id', 'LEFT')
  117. ->join('__SHOP_ORDER__ c', 'a.order_id = c.order_id', 'LEFT')
  118. ->limit($pageObj->firstRow.','.$pageObj->listRows)
  119. ->where($where)
  120. ->order('a.service_id desc')
  121. ->select();
  122. }
  123. $DetailsID = get_arr_column($Service, 'details_id');
  124. /* END */
  125. // /*查询订单数据*/
  126. // $field_new = 'b.details_id, b.product_price, b.num, a.shipping_fee, a.order_total_num';
  127. // $where_new = [
  128. // 'b.apply_service' => 1,
  129. // 'b.details_id' => ['IN', $DetailsID]
  130. // ];
  131. // $OrderData = $this->shop_order_db->alias('a')
  132. // ->field($field_new)
  133. // ->join('__SHOP_ORDER_DETAILS__ b', 'a.order_id = b.order_id', 'LEFT')
  134. // ->where($where_new)
  135. // ->getAllWithIndex('details_id');
  136. // /* END */
  137. // 手机端后台管理插件特定使用参数
  138. $isMobile = input('param.isMobile/d', 0);
  139. // 获取商品前台URL
  140. $Archives = get_archives_data($Service, 'product_id');
  141. foreach ($Service as $key => $value) {
  142. $detailsData = !empty($value['detailsData']) ? unserialize($value['detailsData']) : [];
  143. $Service[$key]['Details'][]['pointsGoodsBuyField'] = !empty($detailsData['pointsGoodsBuyField']) ? json_decode($detailsData['pointsGoodsBuyField'], true) : [];
  144. $Service[$key]['handle'] = in_array($value['status'], [6, 7, 8]) ? '已完成' : '处理中';
  145. // 添加时间
  146. $Service[$key]['add_time'] = date('Y-m-d H:i:s', $value['add_time']);
  147. // 商品封面图
  148. $Service[$key]['product_img'] = handle_subdir_pic(get_default_pic($value['product_img']));
  149. // 商品前台URL
  150. $Service[$key]['arcurl'] = get_arcurl($Archives[$value['product_id']]);
  151. // 商品规格,组合数据
  152. $value['product_spec'] = explode('&lt;br/&gt;', $value['product_spec']);
  153. $valueData = '';
  154. foreach ($value['product_spec'] as $key_1 => $value_1) {
  155. $delimiter = '';//!empty($isMobile) ? ';' : '';
  156. if (!empty($value_1)) $valueData .= '<span>' . trim(strrchr($value_1, ':'),':') . '</span>' . $delimiter;
  157. }
  158. $Service[$key]['product_spec'] = $valueData;
  159. // $Service[$key]['product_spec'] = rtrim(trim(str_replace("&lt;br/&gt;", " || ", $value['product_spec'])), '||');
  160. /* 计算退还金额 */
  161. // $DetailsData = $OrderData[$value['details_id']];
  162. // $product_total_price = sprintf("%.2f", $DetailsData['product_price'] * (string)$DetailsData['num']);
  163. // $Service[$key]['product_total_price'] = $product_total_price > 0 ? $product_total_price : $Service[$key]['refund_price'];
  164. if (1 == $value['service_type']) {
  165. $Service[$key]['ShippingFee'] = $Service[$key]['refund_price'] = '0.00';
  166. } else if (2 == $value['service_type']) {
  167. // 运费计算
  168. $ShippingFee = 0;
  169. $Service[$key]['ShippingFee'] = $ShippingFee;
  170. // if (!empty($DetailsData['shipping_fee'])) {
  171. // $ShippingFee = sprintf("%.2f", ($DetailsData['shipping_fee'] / (string)$DetailsData['order_total_num']) * (string)$value['product_num']);
  172. // $Service[$key]['ShippingFee'] = $ShippingFee;
  173. // }
  174. // 计算退还金额
  175. $ProductPrice = 0;
  176. if (!empty($value['product_price'])) {
  177. $ProductPrice = sprintf("%.2f", ($value['product_price'] * (string)$value['num']) - $ShippingFee);
  178. $Service[$key]['refund_price'] = $ProductPrice;
  179. }
  180. }
  181. /* END */
  182. }
  183. // 存在积分商城订单则执行
  184. $weappInfo = model('ShopPublicHandle')->getWeappPointsShop();
  185. if (!empty($weappInfo)) {
  186. $pointsShopOrder = !empty($Service) ? get_arr_column($Service, 'points_shop_order') : [];
  187. if (!empty($pointsShopOrder) && in_array(1, $pointsShopOrder)) {
  188. $pointsShopLogic = new \weapp\PointsShop\logic\PointsShopLogic();
  189. $Service = $pointsShopLogic->pointsShopOrderDataHandle($Service);
  190. foreach ($Service as $key => $value) {
  191. $value['product_price'] = !empty($value['Details'][0]['product_price']) ? $value['Details'][0]['product_price'] : $value['product_price'];
  192. $value['refund_price'] = !empty($value['order_total_amount']) ? $value['order_total_amount'] : $value['refund_price'];
  193. if (1 === intval($value['service_type']) && 1 === intval($value['points_shop_order'])) {
  194. $value['refund_price'] = preg_replace('/\d+/', 0, $value['refund_price']);
  195. }
  196. $Service[$key] = $value;
  197. }
  198. }
  199. }
  200. // dump($Service);exit;
  201. $Return['Service'] = $Service;
  202. $Return['pageObj'] = $pageObj;
  203. $Return['pageStr'] = $pageObj->show();
  204. return $Return;
  205. }
  206. public function GetFieldServiceInfo($service_id = null)
  207. {
  208. // 手机端后台管理插件特定使用参数
  209. $isMobile = input('param.isMobile/d', 0);
  210. $Return = [];
  211. if (empty($service_id)) return $Return;
  212. // 退换货信息
  213. $Service[0] = $this->shop_order_service_db->where('service_id', $service_id)->find();
  214. $array_new = get_archives_data($Service, 'product_id');
  215. $Service = $Service[0];
  216. $Service['arcurl'] = get_arcurl($array_new[$Service['product_id']]);
  217. $Service['StatusName'] = Config::get('global.order_service_status')[$Service['status']];
  218. $Service['product_img'] = handle_subdir_pic(get_default_pic($Service['product_img']));
  219. $Service['TypeName'] = Config::get('global.order_service_type')[$Service['service_type']];
  220. $Service['product_num'] = (string)$Service['product_num'];
  221. $Service['add_time'] = date('Y-m-d H:i:s', $Service['add_time']);
  222. $Service['upload_img'] = !empty($Service['upload_img']) ? explode(',', $Service['upload_img']) : [];
  223. // if (!empty($Service['upload_img'])) unset($Service['upload_img'][count($Service['upload_img']) - 1]);
  224. $Service['audit_time'] = !empty($Service['audit_time']) ? date('Y-m-d H:i:s', $Service['audit_time']) : 0;
  225. $Service['update_time'] = !empty($Service['update_time']) ? date('Y-m-d H:i:s', $Service['update_time']) : 0;
  226. $Service['manual_time'] = !empty($Service['manual_time']) ? date('Y-m-d H:i:s', $Service['manual_time']) : 0;
  227. if (empty($Service['manual_time']) && 1 === intval($Service['manual_refund'])) $Service['manual_time'] = $Service['update_time'];
  228. $Service['status_text'] = Config::get('global.order_service_status')[$Service['status']];
  229. $Service['service_type_text'] = Config::get('global.order_service_type')[$Service['service_type']];
  230. $Service['users_delivery'] = !empty($Service['users_delivery']) ? unserialize($Service['users_delivery']) : [];
  231. $Service['admin_delivery'] = !empty($Service['admin_delivery']) ? unserialize($Service['admin_delivery']) : [];
  232. if (!empty($Service['admin_delivery']['time'])) $Service['admin_delivery']['time'] = date('Y-m-d H:i:s', $Service['admin_delivery']['time']);
  233. $Service['actual_price'] = floatval($Service['actual_price']) > 0 ? floatval($Service['actual_price']) : floatval($Service['refund_price']);
  234. $Service['actual_points'] = floatval($Service['actual_points']) > 0 ? floatval($Service['actual_points']) : floatval($Service['refund_price']);
  235. // 商品规格,组合数据
  236. $Service['product_spec'] = explode('&lt;br/&gt;', $Service['product_spec']);
  237. $valueData = '';
  238. foreach ($Service['product_spec'] as $key_1 => $value_1) {
  239. $delimiter = '';//!empty($isMobile) ? ';' : '';
  240. if (!empty($value_1)) $valueData .= '<span>' . trim(strrchr($value_1, ':'),':') . '</span>' . $delimiter;
  241. }
  242. $Service['product_spec'] = $valueData;
  243. // 查询订单数据
  244. $where = [
  245. 'order_id' => $Service['order_id'],
  246. ];
  247. $Order = $this->shop_order_db->where($where)->find();
  248. if (empty($Order['prom_type'])) {
  249. $Order['prom_type_name'] = '普通订单';
  250. } else {
  251. $Order['prom_type_name'] = '虚拟订单';
  252. }
  253. if (!empty($Order['is_seckill_order'])) $Order['prom_type_name'] = '秒杀订单';
  254. if (!empty($Order['points_shop_order'])) $Order['prom_type_name'] = '积分订单';
  255. // 订单来源
  256. $Order['order_terminal_show'] = '电脑端';
  257. if (!empty($Order['order_terminal']) && 2 === intval($Order['order_terminal'])) {
  258. $Order['order_terminal_show'] = '手机端';
  259. } else if (!empty($Order['order_terminal']) && 3 === intval($Order['order_terminal'])) {
  260. $Order['order_terminal_show'] = '微信小程序';
  261. }
  262. // 收获地址省市区县
  263. $Order['city'] = get_city_name($Order['city']);
  264. $Order['district'] = get_area_name($Order['district']);
  265. $Order['province'] = get_province_name($Order['province']);
  266. // 备注条数
  267. $Order['admin_note_count'] = !empty($Order['admin_note']) ? count(unserialize($Order['admin_note'])) : 0;
  268. // 获取订单方式名称
  269. $Order['pay_name_show'] = !empty($Order['pay_name']) ? Config::get('global.pay_method_arr')[$Order['pay_name']] : '微信支付';
  270. // 查询订单数据
  271. $where = [
  272. 'order_id' => $Service['order_id'],
  273. 'details_id' => $Service['details_id'],
  274. 'apply_service' => 1
  275. ];
  276. $Details = $this->shop_order_details_db->where($where)->find();
  277. // 商品类型
  278. if (empty($Details['prom_type'])) {
  279. $Details['prom_type_goods'] = '实物商品';
  280. } else if (4 == $Details['prom_type']) {
  281. $Details['prom_type_goods'] = '核销商品';
  282. } else {
  283. $Details['prom_type_goods'] = '虚拟商品';
  284. }
  285. $Details['product_img'] = !empty($Details['litpic']) ? get_default_pic($Details['litpic']) : '';
  286. $Details['product_subtotal'] = sprintf("%.2f", floatval($Details['product_price']) * floatval($Details['num']));
  287. // 规格处理
  288. $detailsData = !empty($Details['data']) ? unserialize($Details['data']) : [];
  289. $Details['pointsGoodsBuyField'] = !empty($detailsData['pointsGoodsBuyField']) ? json_decode($detailsData['pointsGoodsBuyField'], true) : [];
  290. $productSpec = !empty($detailsData['product_spec']) ? explode(';', $detailsData['product_spec']) : '';
  291. $specData = '';
  292. foreach ($productSpec as $value) {
  293. if (!empty($value)) $specData .= '<span>' . $value . '</span>';
  294. }
  295. $Details['product_spec'] = $specData;
  296. // 查询所属订单下有多少个商品
  297. $where = [
  298. 'users_id' => intval($Service['users_id']),
  299. 'order_id' => intval($Service['order_id']),
  300. ];
  301. $goodsCount = $this->shop_order_details_db->where($where)->count();
  302. // 查询所属订单下有多少个已完成维权的商品
  303. $where = [
  304. 'status' => ['IN', [6, 7]],
  305. 'users_id' => intval($Service['users_id']),
  306. 'order_id' => intval($Service['order_id']),
  307. ];
  308. $applyCount = $this->shop_order_service_db->where($where)->count();
  309. // 计算维权是否为本次商品订单中的最后一个维权商品
  310. $Service['last_one'] = 1 === intval(intval($goodsCount) - intval($applyCount)) ? 1 : 0;
  311. // 用户发货后计算退还金额、余额
  312. if (5 == $Service['status'] || 7 == $Service['status'] || 2 == $Service['service_type']) {
  313. // 订单总数
  314. // $Order['order_total_num'] = (string)$Order['order_total_num'];
  315. // 运费计算
  316. $ShippingFee = 0;
  317. $Service['ShippingFee'] = $ShippingFee;
  318. // if (!empty($Order['shipping_fee'])) {
  319. // $ShippingFee = sprintf("%.2f", ($Order['shipping_fee'] / $Order['order_total_num']) * $Service['product_num']);
  320. // $Service['ShippingFee'] = $ShippingFee;
  321. // }
  322. // 退回应付款
  323. $ProductPrice = 0;
  324. if (!empty($Details['product_price'])) {
  325. $ProductPrice = sprintf("%.2f", ($Details['product_price'] * $Service['product_num']) - $ShippingFee);
  326. $Service['refund_price'] = $ProductPrice;
  327. }
  328. } else {
  329. $Service['refund_price'] = '0.00';
  330. }
  331. $Service['shipping_fee'] = $ShippingFee;
  332. // 会员信息
  333. $Users = $this->users_db->find($Service['users_id']);
  334. $Users['nickname'] = empty($Users['nickname']) ? $Users['username'] : $Users['nickname'];
  335. $Users['head_pic'] = get_head_pic($Users['head_pic'], false, $Users['sex']);
  336. // 订单是否改价过
  337. $Order['is_change_price'] = model('ShopPublicHandle')->is_change_price($Service['order_id']);
  338. // 服务记录表信息
  339. $Log = $this->shop_order_service_log_db->order('log_id desc')->where('service_id', $Service['service_id'])->select();
  340. foreach ($Log as $key => $value) {
  341. $value['add_time'] = date('Y-m-d H:i:s', $value['add_time']);
  342. if (!empty($value['users_id'])) {
  343. if (intval($value['users_id']) === intval($Service['users_id'])) {
  344. $value['name'] = '会员:'.$Users['nickname'];
  345. } else {
  346. // 商家操作
  347. $value['name'] = '商家:'.Db::name('users')->where('users_id', $value['users_id'])->getField('username');
  348. }
  349. } else if (!empty($value['admin_id'])) {
  350. $value['name'] = '商家:'.getAdminInfo(session('admin_id'))['user_name'];
  351. }
  352. $Log[$key] = $value;
  353. }
  354. // 存在积分商城订单则执行
  355. if (!empty($Order['points_shop_order'])) {
  356. $weappInfo = model('ShopPublicHandle')->getWeappPointsShop();
  357. if (!empty($weappInfo)) {
  358. $list = !empty($Order) ? $Order : [];
  359. $list['Details'] = !empty($Details) ? [$Details] : [];
  360. $pointsShopLogic = new \weapp\PointsShop\logic\PointsShopLogic();
  361. $pointsShopLogic->pointsShopOrderDataHandle([$list], $Order, $Details);
  362. $Details = !empty($Order['Details'][0]) ? $Order['Details'][0] : $Details;
  363. $Details['product_subtotal'] = !empty($Details['subtotal']) ? $Details['subtotal'] : $Details['product_subtotal'];
  364. $Service['refund_price'] = !empty($Details['subtotal']) ? $Details['subtotal'] : $Service['refund_price'];
  365. if (1 === intval($Service['service_type']) && 1 === intval($Order['points_shop_order'])) {
  366. $Service['refund_price'] = preg_replace('/\d+/', 0, $Service['refund_price']);
  367. }
  368. if (isset($Details['pointsGoodsBuyField']['goodsSinglePrice']) > 0) $Service['actual_price'] = floatval($Details['pointsGoodsBuyField']['goodsSinglePrice']);
  369. if (isset($Details['pointsGoodsBuyField']['goodsSinglePoints']) > 0) $Service['actual_points'] = intval($Details['pointsGoodsBuyField']['goodsSinglePoints']);
  370. }
  371. }
  372. // 返回
  373. $Return['Log'] = $Log;
  374. $Return['Users'] = $Users;
  375. $Return['Order'] = $Order;
  376. $Return['Details'] = $Details;
  377. $Return['Service'] = $Service;
  378. // 核销订单记录信息
  379. $weappVerifyLog = [];
  380. $weappInfo = model('ShopPublicHandle')->getWeappVerifyInfo();
  381. if (!empty($weappInfo)) {
  382. $where = [
  383. 'users_id' => intval($Order['users_id']),
  384. 'order_id' => intval($Order['order_id']),
  385. ];
  386. $weappVerifyLog = Db::name('weapp_verify')->where($where)->find();
  387. $weappVerifyLog['verify_time'] = !empty($weappVerifyLog['verify_time']) ? date('Y-m-d H:i:s', $weappVerifyLog['verify_time']) : 0;
  388. }
  389. $Return['weappVerifyLog'] = $weappVerifyLog;
  390. return $Return;
  391. }
  392. // 读取所有退换货服务信息处理返回
  393. public function GetUserAllServiceInfo($param = [])
  394. {
  395. // 手机端后台管理插件特定使用参数
  396. $isMobile = input('param.isMobile/d', 0);
  397. // 初始化数组和条件
  398. $Return = $where =[];
  399. $where['a.service_type'] = 2;
  400. $where['a.status'] = 7;
  401. // 订单号查询
  402. $order_code = !empty($param['order_code']) ? trim($param['order_code']) : '';
  403. if (!empty($order_code)) $where['a.order_code|a.product_name'] = array('LIKE', "%{$order_code}%");
  404. if (!empty($param['users_id'])) $where['a.users_id'] = $param['users_id'];
  405. $count = $this->shop_order_service_db->alias('a')->join('__SHOP_ORDER_DETAILS__ b', 'a.details_id = b.details_id', 'LEFT')->join('__SHOP_ORDER__ c', 'a.order_id = c.order_id', 'LEFT')->where($where)->count('a.service_id');
  406. $pageObj = new Page($count, config('paginate.list_rows'));
  407. /*查询退换货订单信息*/
  408. $Service = $this->shop_order_service_db->alias('a')
  409. ->field('a.*, b.product_price, b.num')
  410. ->join('__SHOP_ORDER_DETAILS__ b', 'a.details_id = b.details_id', 'LEFT')
  411. ->join('__SHOP_ORDER__ c', 'a.order_id = c.order_id', 'LEFT')
  412. ->limit($pageObj->firstRow.','.$pageObj->listRows)
  413. ->where($where)
  414. ->order('a.service_id desc')
  415. ->select();
  416. $Archives = get_archives_data($Service, 'product_id');
  417. foreach ($Service as $key => $value) {
  418. // 添加时间
  419. $Service[$key]['add_time'] = date('Y-m-d H:i:s', $value['add_time']);
  420. // 商品封面图
  421. $Service[$key]['product_img'] = handle_subdir_pic(get_default_pic($value['product_img']));
  422. // 商品前台URL
  423. $Service[$key]['arcurl'] = get_arcurl($Archives[$value['product_id']]);
  424. // 商品规格,组合数据
  425. $value['product_spec'] = explode('&lt;br/&gt;', $value['product_spec']);
  426. $valueData = '';
  427. foreach ($value['product_spec'] as $key_1 => $value_1) {
  428. $delimiter = '';//!empty($isMobile) ? ';' : '';
  429. if (!empty($value_1)) $valueData .= '<span>' . trim(strrchr($value_1, ':'),':') . '</span>' . $delimiter;
  430. }
  431. $Service[$key]['product_spec'] = $valueData;
  432. if (1 == $value['service_type']) {
  433. $Service[$key]['ShippingFee'] = $Service[$key]['refund_price'] = '0.00';
  434. } else if (2 == $value['service_type']) {
  435. // 运费计算
  436. $ShippingFee = 0;
  437. $Service[$key]['ShippingFee'] = $ShippingFee;
  438. // 计算退还金额
  439. $ProductPrice = 0;
  440. if (!empty($value['product_price'])) {
  441. $ProductPrice = sprintf("%.2f", ($value['product_price'] * (string)$value['num']) - $ShippingFee);
  442. $Service[$key]['refund_price'] = $ProductPrice;
  443. }
  444. }
  445. /* END */
  446. }
  447. $Return['Service'] = $Service;
  448. $Return['pageObj'] = $pageObj;
  449. $Return['pageStr'] = $pageObj->show();
  450. return $Return;
  451. }
  452. // 售后服务处理(维权订单处理)
  453. public function afterServiceHandle($post = [])
  454. {
  455. // 更新指定的维权订单
  456. $times = getTime();
  457. $where = [
  458. 'users_id' => intval($post['users_id']),
  459. 'order_id' => intval($post['order_id']),
  460. 'details_id' => intval($post['details_id']),
  461. 'service_id' => intval($post['service_id']),
  462. 'product_id' => intval($post['product_id'])
  463. ];
  464. $update = [
  465. 'update_time' => $times,
  466. 'status' => intval($post['status'])
  467. ];
  468. // 存在商家发货信息则执行
  469. if (!empty($post['delivery'])) {
  470. $post['delivery']['time'] = $times;
  471. $update['admin_delivery'] = serialize($post['delivery']);
  472. }
  473. // 存在退款备注则执行
  474. if (!empty($post['refund_remark'])) {
  475. $update['refund_remark'] = htmlspecialchars($post['refund_remark']);
  476. }
  477. // 同意申请、拒接申请时写入审核时间
  478. if (in_array($post['status'], [2])) $update['audit_time'] = $times;
  479. if (in_array($post['status'], [3, 8])) $update['audit_time'] = 0;
  480. // 执行更新
  481. $resultID = $this->shop_order_service_db->where($where)->update($update);
  482. // 更新后续操作
  483. if (!empty($resultID)) {
  484. // 退款到余额
  485. if (7 === intval($post['status']) && 1 === intval($post['refund_way']) && in_array($post['service_type'], [2, 3])) {
  486. // 执行退回余额
  487. if (!empty($post['actual_price'])) {
  488. $where = [
  489. 'users_id' => $post['users_id']
  490. ];
  491. $update = [
  492. 'users_money' => Db::raw('users_money+'.($post['actual_price'])),
  493. 'update_time' => $times
  494. ];
  495. $resultID = $this->users_db->where($where)->update($update);
  496. if (!empty($resultID)) {
  497. if (empty($post['order_code'])) {
  498. $post['order_code'] = $this->shop_order_db->where('order_id', $post['order_id'])->getField('order_code');
  499. }
  500. // 添加余额记录
  501. UsersMoneyRecording($post['order_code'], $post, $post['actual_price'], '商品退款维权结束');
  502. }
  503. }
  504. // 执行退回积分
  505. if (!empty($post['actual_points'])) {
  506. $insert = [
  507. 'type' => 12, // 积分商城订单退回
  508. 'users_id' => intval($post['users_id']),
  509. 'score' => intval($post['actual_points']),
  510. 'info' => '积分商城订单退回',
  511. 'remark' => '积分商城订单退回',
  512. ];
  513. addConsumObtainScores($insert);
  514. }
  515. }
  516. // 拒接申请、关闭维权时更新订单商品为可申请售后
  517. if (in_array($post['status'], [3, 8, 9])) {
  518. $where = [
  519. 'users_id' => $post['users_id'],
  520. 'order_id' => $post['order_id'],
  521. 'details_id' => $post['details_id'],
  522. 'product_id' => $post['product_id']
  523. ];
  524. $update = [
  525. 'apply_service' => 0,
  526. 'update_time' => $times
  527. ];
  528. $this->shop_order_details_db->where($where)->update($update);
  529. }
  530. // 如果维权结束且最后一个维权订单则将订单更新为已关闭
  531. if (in_array($post['status'], [6, 7]) && !empty($post['last_one'])) {
  532. $where = [
  533. 'users_id' => $post['users_id'],
  534. 'order_id' => $post['order_id'],
  535. ];
  536. // 待发货和待收货的订单
  537. if (in_array($post['order_status'], [1, 2])) {
  538. $update = [
  539. 'allow_service' => 1,
  540. 'order_status' => -1,
  541. 'update_time' => $times,
  542. ];
  543. $resultID = $this->shop_order_db->where($where)->update($update);
  544. // 添加订单操作记录
  545. if (!empty($resultID)) AddOrderAction($post['order_id'], 0, session('admin_id'), -1, 1, 1, '订单关闭', '维权完成,订单自动关闭!');
  546. }
  547. // 已完成订单
  548. else if (in_array($post['order_status'], [3])) {
  549. $update = [
  550. 'allow_service' => 1,
  551. 'update_time' => $times,
  552. ];
  553. $this->shop_order_db->where($where)->update($update);
  554. }
  555. }
  556. // 售后服务手动完成服务单并自行退款
  557. if (in_array($post['status'], [6, 7]) && 0 === intval($post['is_refund']) && 1 === intval($post['manual_refund'])) {
  558. $where = [
  559. 'users_id' => $post['users_id'],
  560. 'service_id' => $post['service_id']
  561. ];
  562. $update = [
  563. 'manual_refund' => 1,
  564. 'refund_note' => trim($post['refund_note']),
  565. 'update_time' => getTime(),
  566. ];
  567. $this->shop_order_service_db->where($where)->update($update);
  568. }
  569. // 维权记录
  570. $this->shop_common->AddOrderServiceLog($post, 0);
  571. return true;
  572. } else {
  573. return false;
  574. }
  575. }
  576. }