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

AfterSaleLogic.php 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  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\admin\logic\after_sale;
  20. use app\common\basics\Logic;
  21. use app\common\enum\GoodsEnum;
  22. use app\common\enum\PayEnum;
  23. use app\common\model\after_sale\{AfterSale, AfterSaleLog};
  24. use app\common\enum\ShopEnum;
  25. use app\common\model\order\Order as OrderModel;
  26. use app\common\model\shop\Shop;
  27. use app\common\server\AreaServer;
  28. use app\common\server\ConfigServer;
  29. use app\common\server\ExportExcelServer;
  30. use app\common\server\UrlServer;
  31. use think\facade\Db;
  32. /**
  33. * 售后管理-逻辑
  34. * Class GoodsLogic
  35. * @package app\shop\logic\goods
  36. */
  37. class AfterSaleLogic extends Logic
  38. {
  39. /**
  40. * @notes 售后列表
  41. * @param array $get
  42. * @return array
  43. * @author suny
  44. * @date 2021/7/14 9:56 上午
  45. * @throws \think\db\exception\DbException
  46. * @throws \think\db\exception\ModelNotFoundException
  47. * @throws \think\exception\DbException
  48. * @throws \think\db\exception\DataNotFoundException
  49. */
  50. public static function list($get = [], $is_export = false)
  51. {
  52. $after_sale = new AfterSale();
  53. $where = [];
  54. $page = '1';
  55. $limit = '10';
  56. $where[] = ['o.delete', '=', 0];
  57. $where[] = ['a.del', '=', 0];
  58. //售后状态
  59. if (isset($get['type']) && $get['type'] != '') {
  60. $where[] = ['a.status', '=', $get['type']];
  61. }
  62. //订单搜素
  63. if (!empty($get['search_key']) && !empty($get['keyword'])) {
  64. $keyword = $get['keyword'];
  65. switch ($get['search_key']) {
  66. case 'sn':
  67. $where[] = ['a.sn', 'like', '%' . $keyword . '%'];
  68. break;
  69. case 'order_sn':
  70. $where[] = ['o.order_sn', 'like', '%' . $keyword . '%'];
  71. break;
  72. case 'goods_name':
  73. $where[] = ['g.goods_name', 'like', '%' . $keyword . '%'];
  74. break;
  75. case 'user_sn':
  76. $where[] = ['u.sn', 'like', '%' . $keyword . '%'];
  77. break;
  78. case 'nickname':
  79. $where[] = ['u.nickname', 'like', '%' . $keyword . '%'];
  80. break;
  81. case 'user_mobile':
  82. $where[] = ['u.mobile', 'like', '%' . $keyword . '%'];
  83. break;
  84. }
  85. }
  86. if (isset($get['status']) && $get['status'] != '') {
  87. $where[] = ['a.status', '=', $get['status']];
  88. }
  89. //下单时间
  90. if (isset($get['start_time']) && $get['start_time'] != '') {
  91. $where[] = ['a.create_time', '>=', strtotime($get['start_time'])];
  92. }
  93. if (isset($get['end_time']) && $get['end_time'] != '') {
  94. $where[] = ['a.create_time', '<=', strtotime($get['end_time'])];
  95. }
  96. if (isset($get['page']) && $get['page'] != '') {
  97. $page = $get['page'];
  98. }
  99. if (isset($get['limit']) && $get['limit'] != '') {
  100. $limit = $get['limit'];
  101. }
  102. // 导出excel
  103. if (true === $is_export) {
  104. return self::export($where);
  105. }
  106. $field = 'a.id,a.sn,a.status,a.order_id,a.order_goods_id,
  107. a.user_id,a.refund_type,a.create_time,a.refund_price,
  108. o.order_status,o.shop_id,o.pay_way';
  109. $count = $after_sale
  110. ->alias('a')
  111. ->join('order o', 'o.id = a.order_id')
  112. ->join('user u', 'u.id = a.user_id')
  113. ->join('order_goods g', 'g.id = a.order_goods_id')
  114. ->join('shop s', 's.id = o.shop_id')
  115. ->with(['order_goods', 'user', 'order', 'shop'])
  116. ->where($where)
  117. ->group('a.id')
  118. ->count();
  119. $lists = $after_sale
  120. ->alias('a')
  121. ->field($field)
  122. ->join('order o', 'o.id = a.order_id')
  123. ->join('user u', 'u.id = a.user_id')
  124. ->join('order_goods g', 'g.id = a.order_goods_id')
  125. ->join('shop s', 's.id = o.shop_id')
  126. ->with(['order_goods', 'user', 'order', 'shop'])
  127. ->where($where)
  128. ->page($page, $limit)
  129. ->order('a.id desc')
  130. ->append(['user.base_avatar', 'order_goods.base_image'])
  131. ->group('a.id')
  132. ->select()->toArray();
  133. foreach ($lists as &$list) {
  134. $list['order']['pay_way'] = PayEnum::getPayWay($list['order']['pay_way']);
  135. $list['order']['order_status'] = OrderModel::getOrderStatus($list['order']['order_status']);
  136. $list['refund_type'] = AfterSale::getRefundTypeDesc($list['refund_type']);
  137. // $list['create_time'] = date('Y-m-d H:i:s', $list['create_time']);
  138. $list['status'] = AfterSale::getStatusDesc($list['status']);
  139. $list['user']['avatar'] = UrlServer::getFileUrl($list['user']['avatar']);
  140. $list['shop']['logo'] = UrlServer::getFileUrl($list['shop']['logo']);
  141. foreach ($list['order_goods'] as &$good) {
  142. $good['image'] = empty($good['spec_image']) ?
  143. UrlServer::getFileUrl($good['image']) : UrlServer::getFileUrl($good['spec_image']);
  144. }
  145. }
  146. return ['count' => $count, 'lists' => $lists];
  147. }
  148. /**
  149. * @notes 售后详情
  150. * @param $id
  151. * @return array
  152. * @throws \think\db\exception\DataNotFoundException
  153. * @throws \think\db\exception\DbException
  154. * @throws \think\db\exception\ModelNotFoundException
  155. * @author suny
  156. * @date 2021/7/14 9:56 上午
  157. */
  158. public static function getDetail($id)
  159. {
  160. $after_sale = new AfterSale();
  161. $result = $after_sale
  162. ->with(['order_goods', 'user', 'order', 'logs'])
  163. ->where('id', $id)
  164. ->find()->toArray();
  165. $result['refund_type_text'] = AfterSale::getRefundTypeDesc($result['refund_type']);
  166. $result['status_text'] = AfterSale::getStatusDesc($result['status']);
  167. $result['order']['pay_way'] = PayEnum::getPayWay($result['order']['pay_way']);
  168. $result['order']['order_status'] = OrderModel::getOrderStatus($result['order']['order_status']);
  169. foreach ($result['order_goods'] as &$good) {
  170. $good['image'] = empty($good['spec_image']) ?
  171. UrlServer::getFileUrl($good['image']) : UrlServer::getFileUrl($good['spec_image']);
  172. }
  173. foreach ($result['logs'] as &$log) {
  174. $log['log_img'] = '';
  175. $log['log_remark'] = '';
  176. switch ($log['channel']) {
  177. //会员申请售后
  178. case AfterSaleLog::USER_APPLY_REFUND:
  179. $log['log_img'] = empty($result['refund_image']) ? '' : UrlServer::getFileUrl($result['refund_image']);
  180. $refund_reason = empty($result['refund_reason']) ? '未知' : $result['refund_reason'];
  181. $refund_remark = empty($result['refund_remark']) ? '暂无' : $result['refund_remark'];
  182. $log['log_remark'] = '退款原因(' . $refund_reason . ')' . '退款说明(' . $refund_remark . ')';
  183. break;
  184. //会员发快递
  185. case AfterSaleLog::USER_SEND_EXPRESS:
  186. $log['log_img'] = empty($result['express_image']) ? '' : UrlServer::getFileUrl($result['express_image']);
  187. $express_name = $result['express_name'];
  188. $invoice_no = $result['invoice_no'];
  189. $express_remark = empty($result['express_remark']) ? '暂无' : $result['express_remark'];
  190. $log['log_remark'] = '快递公司(' . $express_name . ')' . '单号(' . $invoice_no . ')' . '备注说明(' . $express_remark . ')';
  191. break;
  192. //商家拒绝退款 //商家拒绝收货
  193. case AfterSaleLog::SHOP_REFUSE_REFUND:
  194. case AfterSaleLog::SHOP_REFUSE_TAKE_GOODS:
  195. $admin_remark = empty($result['admin_remark']) ? '暂无' : $result['admin_remark'];
  196. $log['log_remark'] = '备注:' . $admin_remark;
  197. break;
  198. }
  199. }
  200. $result['shop_address'] = self::getShopAddress();
  201. return $result;
  202. }
  203. /**
  204. * @notes 获取商家地址
  205. * @return string
  206. * @author suny
  207. * @date 2021/7/14 9:57 上午
  208. */
  209. public static function getShopAddress()
  210. {
  211. $shop_province = ConfigServer::get('shop', 'province_id', '');
  212. $shop_city = ConfigServer::get('shop', 'city_id', '');
  213. $shop_district = ConfigServer::get('shop', 'district_id', '');
  214. $shop_address = ConfigServer::get('shop', 'address', '');
  215. $shop_contact = ConfigServer::get('shop', 'contact', '');
  216. $shop_mobile = ConfigServer::get('shop', 'mobile', '');
  217. if (empty($shop_province) || empty($shop_city) || empty($shop_district)) {
  218. $arr = [];
  219. } else {
  220. $arr = [$shop_province, $shop_city, $shop_district];
  221. }
  222. $shop_address = AreaServer::getAddress($arr, $shop_address);
  223. return $shop_address . '(' . $shop_contact . ',' . $shop_mobile . ')';
  224. }
  225. /**
  226. * @notes 全部数量
  227. * @return int
  228. * @author suny
  229. * @date 2021/7/14 9:57 上午
  230. */
  231. public static function getAll()
  232. {
  233. $where[] = ['o.delete', '=', 0];
  234. $where[] = ['a.del', '=', 0];
  235. return AfterSale::alias('a')
  236. ->where($where)
  237. ->join('order o', 'a.order_id = o.id')
  238. ->count('a.id');
  239. }
  240. /**
  241. * @notes 获取统计数量
  242. * @param $status
  243. * @return array
  244. * @author suny
  245. * @date 2021/7/14 9:57 上午
  246. */
  247. public static function getStatus($status)
  248. {
  249. foreach ($status as $key => $value) {
  250. $count = AfterSale::alias('a')
  251. ->join('order o', 'a.order_id = o.id')
  252. ->where(['status' => $key, 'o.delete' => 0,'a.del'=>0])
  253. ->count('a.id');
  254. $data[] = $value . "(" . $count . ")";
  255. }
  256. return $data;
  257. }
  258. /**
  259. * @notes 导出Excel
  260. * @param array $condition
  261. * @return array|false
  262. * @author 段誉
  263. * @date 2022/4/24 10:10
  264. */
  265. public static function export($condition = [])
  266. {
  267. try {
  268. $field = 'a.sn,a.refund_type,a.refund_price,a.status,a.create_time,
  269. u.nickname,o.order_sn,s.name as shop_name, s.type as shop_type';
  270. $lists = (new AfterSale())
  271. ->alias('a')
  272. ->field($field)
  273. ->join('order o', 'o.id = a.order_id')
  274. ->join('user u', 'u.id = a.user_id')
  275. ->join('order_goods g', 'g.id = a.order_goods_id')
  276. ->join('shop s', 's.id = o.shop_id')
  277. ->with(['order_goods', 'user', 'order'])
  278. ->where($condition)
  279. ->order('a.id desc')
  280. ->group('a.id')
  281. ->select()->toArray();
  282. foreach ($lists as &$list) {
  283. $list['refund_type'] = AfterSale::getRefundTypeDesc($list['refund_type']);
  284. $list['status'] = AfterSale::getStatusDesc($list['status']);
  285. $list['shop_type'] = ShopEnum::getShopTypeDesc($list['shop_type']);
  286. }
  287. $excelFields = [
  288. 'shop_name' => '商家名称',
  289. 'shop_type' => '商家类型',
  290. 'sn' => '售后单号',
  291. 'nickname' => '用户昵称',
  292. 'order_sn' => '订单编号',
  293. 'refund_type' => '售后方式',
  294. 'refund_price' => '售后金额',
  295. 'status' => '售后状态',
  296. 'create_time' => '申请时间',
  297. ];
  298. $export = new ExportExcelServer();
  299. $export->setFileName('售后');
  300. $result = $export->createExcel($excelFields, $lists);
  301. return ['url' => $result];
  302. } catch (\Exception $e) {
  303. self::$error = $e->getMessage();
  304. return false;
  305. }
  306. }
  307. }