Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ShopService.php 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2019-03-26
  12. */
  13. namespace app\admin\controller;
  14. use think\Page;
  15. use think\Db;
  16. use think\Config;
  17. use app\common\logic\ShopCommonLogic;
  18. class ShopService extends Base {
  19. private $UsersConfigData = [];
  20. /**
  21. * 构造方法
  22. */
  23. public function __construct(){
  24. parent::__construct();
  25. // 验证功能版授权
  26. $functionLogic = new \app\common\logic\FunctionLogic;
  27. $functionLogic->check_authorfile(1.5);
  28. $this->language_access(); // 多语言功能操作权限
  29. $this->users_db = Db::name('users'); // 会员信息表
  30. $this->shop_order_service_db = Db::name('shop_order_service'); // 订单退换明细表
  31. // common商城业务层,前后台共用
  32. $this->shop_common = new ShopCommonLogic();
  33. // 会员中心配置信息
  34. $this->UsersConfigData = getUsersConfigData('all');
  35. $this->assign('userConfig', $this->UsersConfigData);
  36. // 模型是否开启
  37. $channeltype_row = \think\Cache::get('extra_global_channeltype');
  38. $this->assign('channeltype_row', $channeltype_row);
  39. $this->shopOrderServiceModel = model('ShopOrderService');
  40. }
  41. // 退换货服务数据列表
  42. public function after_service()
  43. {
  44. $param = input('param.');
  45. // 获取退换货服务信息
  46. $Result = $this->shopOrderServiceModel->GetAllServiceInfo($param);
  47. $this->assign('Service', $Result['Service']);
  48. $this->assign('page', $Result['pageStr']);
  49. $this->assign('pager', $Result['pageObj']);
  50. $this->assign('pay_name', $Result['pay_name']);
  51. $this->assign('order_terminal', $Result['order_terminal']);
  52. $this->assign('serviceJsonArr', $Result['serviceJsonArr']);
  53. // 售后状态
  54. $ServiceStatus = Config::get('global.order_service_status');
  55. $this->assign('ServiceStatus', $ServiceStatus);
  56. // 订单状态
  57. $admin_order_status_arr = Config::get('global.admin_order_status_arr');
  58. $this->assign('admin_order_status_arr', $admin_order_status_arr);
  59. // 是否开启文章付费
  60. $channelRow = Db::name('channeltype')->where('nid', 'in',['article','download'])->getAllWithIndex('nid');
  61. foreach ($channelRow as &$val){
  62. if (!empty($val['data'])) $val['data'] = json_decode($val['data'], true);
  63. }
  64. $this->assign('channelRow', $channelRow);
  65. // 是否开启货到付款
  66. $shopOpenOffline = 1;
  67. if (0 === intval($this->UsersConfigData['shop_open_offline']) || !isset($this->UsersConfigData['shop_open_offline'])) {
  68. $shopOpenOffline = 0;
  69. }
  70. $this->assign('shopOpenOffline', $shopOpenOffline);
  71. // 是否开启微信、支付宝支付
  72. $where = [
  73. 'status' => 1,
  74. 'pay_mark' => ['IN', ['wechat', 'alipay']]
  75. ];
  76. $payApiConfig = Db::name('pay_api_config')->where($where)->select();
  77. $openWeChat = $openAliPay = 1;
  78. foreach ($payApiConfig as $key => $value) {
  79. $payInfo = unserialize($value['pay_info']);
  80. if (!empty($payInfo) && isset($payInfo['is_open_wechat']) && 0 === intval($payInfo['is_open_wechat'])) {
  81. $openWeChat = 0;
  82. }
  83. if (!empty($payInfo) && isset($payInfo['is_open_alipay']) && 0 === intval($payInfo['is_open_alipay'])) {
  84. $openAliPay = 0;
  85. }
  86. }
  87. $this->assign('openWeChat', $openWeChat);
  88. $this->assign('openAliPay', $openAliPay);
  89. // 是否安装 可视化微信小程序(商城版),未安装开启则不显示小程序支付
  90. $where = [
  91. 'status' => 1,
  92. 'code' => 'DiyminiproMall'
  93. ];
  94. $openMall = Db::name('weapp')->where($where)->count();
  95. $this->assign('openMall', $openMall);
  96. // 手机端后台管理插件特定使用参数
  97. $isMobile = input('param.isMobile/d', 0);
  98. // 如果安装手机端后台管理插件并且在手机端访问时执行
  99. if (is_dir('./weapp/Mbackend/') && !empty($isMobile)) {
  100. $mbPage = input('param.p/d', 1);
  101. $nullShow = intval($Result['pageObj']->totalPages) === intval($mbPage) ? 1 : 0;
  102. $this->assign('nullShow', $nullShow);
  103. if ($mbPage >= 2) {
  104. return $this->display('shop/after_service_list');
  105. } else {
  106. return $this->display('shop/after_service');
  107. }
  108. } else {
  109. return $this->fetch('after_service');
  110. }
  111. }
  112. // 退换货服务数据详情
  113. public function after_service_details()
  114. {
  115. $service_id = input('param.service_id/d');
  116. if (!empty($service_id)) {
  117. // 查询服务信息
  118. $Result = $this->shopOrderServiceModel->GetFieldServiceInfo($service_id);
  119. $this->assign('Log', $Result['Log']);
  120. $this->assign('Users', $Result['Users']);
  121. $this->assign('Order', $Result['Order']);
  122. $this->assign('Details', $Result['Details']);
  123. $this->assign('Service', $Result['Service']);
  124. $this->assign('weappVerifyLog', $Result['weappVerifyLog']);
  125. $this->assign('iframe', input('param.iframe/d', 0));
  126. // 如果安装手机端后台管理插件并且在手机端访问时执行
  127. $isMobile = input('param.isMobile/d', 0);
  128. if (is_dir('./weapp/Mbackend/') && !empty($isMobile)) {
  129. return $this->display('shop/after_service_details');
  130. } else {
  131. return $this->fetch('after_service_details');
  132. }
  133. }else{
  134. $this->error('非法访问!');
  135. }
  136. }
  137. // 更新退换货信息
  138. public function after_service_handle()
  139. {
  140. if (IS_AJAX_POST) {
  141. $post = input('post.');
  142. if (empty($post['status']) || empty($post['service_id'])) $this->error('请选择审核意见!');
  143. if (empty($post['users_id']) || empty($post['order_id']) || empty($post['details_id'])) $this->error('数据错误,刷新重试!');
  144. // 更新服务单数据
  145. $result = $this->shopOrderServiceModel->afterServiceHandle($post);
  146. if (!empty($result)) {
  147. $this->success('操作成功!', url('ShopService/after_service'));
  148. } else {
  149. $this->error('操作失败!');
  150. }
  151. }
  152. }
  153. // 退款页面信息
  154. public function after_service_refund()
  155. {
  156. // 查询维权订单信息
  157. $service_id = input('param.service_id/d', 0);
  158. $result = $this->shopOrderServiceModel->GetFieldServiceInfo($service_id);
  159. if (empty($result)) $this->error('维权订单不存在');
  160. $this->assign($result);
  161. return $this->fetch();
  162. }
  163. // 维权订单重新发货
  164. public function after_service_resend()
  165. {
  166. // 查询维权订单信息
  167. $service_id = input('param.service_id/d', 0);
  168. $result = $this->shopOrderServiceModel->GetFieldServiceInfo($service_id);
  169. if (empty($result)) $this->error('维权订单不存在');
  170. $this->assign($result);
  171. $where = [
  172. 'is_choose' => 1,
  173. ];
  174. $express = Db::name('shop_express')->where($where)->order('sort_order asc, express_id asc')->select();
  175. $this->assign('express', $express);
  176. return $this->fetch();
  177. }
  178. // 更新退换货信息
  179. public function after_service_deal_with()
  180. {
  181. if (IS_AJAX) {
  182. $param = input('param.');
  183. if (empty($param)) $this->error('请正确操作!');
  184. if (empty($param['status'])) $this->error('请选择审核意见!');
  185. $param['manual_refund'] = !empty($param['manual_refund']) ? $param['manual_refund'] : 0;
  186. // 换货时,卖家发货需判断快递公司及快递单号是否为空
  187. if (6 == $param['status']) {
  188. // if (empty($param['delivery']['name'])) $this->error('请填写快递公司!', null, ['id'=>'name']);
  189. // if (empty($param['delivery']['code'])) $this->error('请填写快递单号!', null, ['id'=>'code']);
  190. }
  191. // 更新服务单数据
  192. $where = [
  193. 'users_id' => $param['users_id'],
  194. 'service_id' => $param['service_id']
  195. ];
  196. $update = [
  197. 'update_time' => getTime(),
  198. 'status' => $param['status']
  199. ];
  200. if (!empty($param['admin_note'])) $update['admin_note'] = $param['admin_note'];
  201. if (!empty($param['refund_price'])) $update['refund_balance'] = $param['refund_price'];
  202. if (!empty($param['delivery'])) $update['admin_delivery'] = serialize($param['delivery']);
  203. $ResultID = $this->shop_order_service_db->where($where)->update($update);
  204. if (!empty($ResultID)) {
  205. $ResultData['status'] = $param['status'];
  206. // 退款回会员
  207. if (7 == $param['status']) {
  208. if (!isset($param['is_refund']) || 1 == $param['is_refund']) {
  209. // 查询会员信息
  210. $field = 'users_id, username, nickname, email, mobile, users_money';
  211. $Users = $this->users_db->field($field)->where('users_id', $param['users_id'])->find();
  212. // 退款操作
  213. $UpDate = [
  214. 'users_money' => Db::raw('users_money+'.($param['refund_price'])),
  215. ];
  216. $ResultID = $this->users_db->where('users_id', $param['users_id'])->update($UpDate);
  217. if (!empty($ResultID)) {
  218. // 如果没有传入订单号则查询订单号
  219. if (empty($param['order_code'])) {
  220. $param['order_code'] = Db::name('shop_order')->where('order_id', $param['order_id'])->getField('order_code');
  221. }
  222. // 添加余额记录
  223. UsersMoneyRecording($param['order_code'], $Users, $param['refund_price'], '商品退换货');
  224. }
  225. }
  226. }
  227. // 售后服务手动完成服务单并自行退款
  228. if (in_array($param['status'], [6, 7]) && 0 == $param['is_refund'] && 1 == $param['manual_refund']) {
  229. $where = [
  230. 'users_id' => $param['users_id'],
  231. 'service_id' => $param['service_id']
  232. ];
  233. $update = [
  234. 'manual_refund' => 1,
  235. 'manual_time' => getTime(),
  236. 'refund_note' => trim($param['refund_note']),
  237. 'update_time' => getTime(),
  238. ];
  239. $this->shop_order_service_db->where($where)->update($update);
  240. }
  241. // 添加退换货服务记录
  242. $this->shop_common->AddOrderServiceLog($param, 0);
  243. // 返回结束
  244. $this->success('操作成功!', null, $ResultData);
  245. } else {
  246. $this->error('操作失败!');
  247. }
  248. }
  249. }
  250. // 退换货服务数据删除
  251. public function after_service_del()
  252. {
  253. $service_id = input('del_id/a');
  254. $service_id = eyIntval($service_id);
  255. if (IS_AJAX_POST && !empty($service_id)) {
  256. // 条件数组
  257. $Where = [
  258. 'lang' => $this->admin_lang,
  259. 'service_id' => ['IN', $service_id]
  260. ];
  261. // 查询数据
  262. $result = $this->shop_order_service_db->field('order_code')->where($Where)->select();
  263. $order_code_list = get_arr_column($result, 'order_code');
  264. // 删除数据
  265. $ResultID = $this->shop_order_service_db->where($Where)->delete();
  266. if (!empty($ResultID)) {
  267. // 同步删除订单下的操作记录
  268. Db::name('shop_order_service_log')->where($Where)->delete();
  269. // 存在adminlog日志
  270. adminLog('删除订单:'.implode(',', $order_code_list));
  271. $this->success('删除成功');
  272. } else {
  273. $this->error('删除失败');
  274. }
  275. }
  276. $this->error('参数有误');
  277. }
  278. // 会员编辑 退货数据列表
  279. public function users_edit_after_service()
  280. {
  281. $param = input('param.');
  282. // 获取退换货服务信息
  283. $Result = $this->shopOrderServiceModel->GetUserAllServiceInfo($param);
  284. // 获取订单状态
  285. $ServiceStatus = Config::get('global.order_service_status');
  286. $this->assign('Service', $Result['Service']);
  287. $this->assign('page', $Result['pageStr']);
  288. $this->assign('pager', $Result['pageObj']);
  289. $this->assign('ServiceStatus', $ServiceStatus);
  290. // 是否开启文章付费
  291. $channelRow = Db::name('channeltype')->where('nid', 'article')->find();
  292. $channelRow['data'] = json_decode($channelRow['data'], true);
  293. $this->assign('channelRow', $channelRow);
  294. // 是否开启货到付款
  295. $shopOpenOffline = 1;
  296. if (0 === intval($this->UsersConfigData['shop_open_offline']) || !isset($this->UsersConfigData['shop_open_offline'])) {
  297. $shopOpenOffline = 0;
  298. }
  299. $this->assign('shopOpenOffline', $shopOpenOffline);
  300. // 是否开启微信、支付宝支付
  301. $where = [
  302. 'status' => 1,
  303. 'pay_mark' => ['IN', ['wechat', 'alipay']]
  304. ];
  305. $payApiConfig = Db::name('pay_api_config')->where($where)->select();
  306. $openWeChat = $openAliPay = 1;
  307. foreach ($payApiConfig as $key => $value) {
  308. $payInfo = unserialize($value['pay_info']);
  309. if (!empty($payInfo) && isset($payInfo['is_open_wechat']) && 0 === intval($payInfo['is_open_wechat'])) {
  310. $openWeChat = 0;
  311. }
  312. if (!empty($payInfo) && isset($payInfo['is_open_alipay']) && 0 === intval($payInfo['is_open_alipay'])) {
  313. $openAliPay = 0;
  314. }
  315. }
  316. $this->assign('openWeChat', $openWeChat);
  317. $this->assign('openAliPay', $openAliPay);
  318. // 是否安装 可视化微信小程序(商城版),未安装开启则不显示小程序支付
  319. $where = [
  320. 'status' => 1,
  321. 'code' => 'DiyminiproMall'
  322. ];
  323. $openMall = Db::name('weapp')->where($where)->count();
  324. $this->assign('openMall', $openMall);
  325. return $this->fetch('member/edit/refund_index');
  326. }
  327. }