Refund.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. <?php
  2. namespace Shop\Lib;
  3. use Dever;
  4. class Refund
  5. {
  6. # 设置订单的类型
  7. public function set($type)
  8. {
  9. $this->type = $type;
  10. $this->order_table = 'shop/' . $type . '_order';
  11. $this->goods_table = 'shop/' . $type . '_order_goods';
  12. $this->refund_table = 'shop/' . $type . '_order_refund';
  13. if ($type == 'buy') {
  14. $this->lib = 'mshop/lib/' . $type;
  15. } else {
  16. $this->lib = 'shop/lib/' . $type;
  17. }
  18. return $this;
  19. }
  20. # 获取退款记录
  21. public function getList($type, $id, $order_id)
  22. {
  23. $data = Dever::load($this->lib)->set($type, 1)->getView($id, $order_id, false);
  24. $where['order_id'] = $order_id;
  25. $data = Dever::db($this->refund_table)->select_page($where);
  26. if ($data) {
  27. $goods_status = Dever::db($this->goods_table)->config['status'];
  28. $refund_status = Dever::db($this->refund_table)->config['status'];
  29. $refund_process = Dever::db($this->refund_table)->config['process'];
  30. foreach ($data as $k => $v) {
  31. $data[$k]['cdate'] = date('Y-m-d H:i', $v['cdate']);
  32. $data[$k]['goods'] = Dever::db($this->goods_table)->getDataByIds(array('ids' => $v['order_goods_id']));
  33. $data[$k]['status_name'] = $refund_status[$v['status']];
  34. $data[$k]['process_name'] = $refund_process[$v['process']];
  35. if ($data[$k]['goods']) {
  36. foreach ($data[$k]['goods'] as $k1 => $v1) {
  37. $data[$k]['goods'][$k1]['info'] = Dever::load('goods/lib/info')->getPayInfo($v1['goods_id'], $v1['sku_id']);
  38. $data[$k]['goods'][$k1]['status_name'] = $goods_status[$v1['status']];
  39. }
  40. }
  41. }
  42. }
  43. return $data;
  44. }
  45. # 更新退款记录
  46. public function up($order_id, $order_goods_id, $status, $price, $p_price, $num = false, $desc = '', $pic = '', $process = 1)
  47. {
  48. $data['order_id'] = $order_id;
  49. if (!$order_goods_id) {
  50. $where['order_id'] = $order_id;
  51. $goods = Dever::db($this->goods_table)->getIds($where);
  52. if ($goods) {
  53. $order_goods_id = implode(',', array_keys($goods));
  54. }
  55. $data['type'] = 1;
  56. } else {
  57. $data['type'] = 2;
  58. }
  59. $data['order_goods_id'] = $order_goods_id;
  60. $info = Dever::db($this->refund_table)->find($data);
  61. $data['status'] = $status;
  62. $data['cash'] = $price;
  63. if ($p_price && $p_price > 0) {
  64. $data['p_cash'] = $p_price;
  65. }
  66. if ($num) {
  67. $data['num'] = $num;
  68. }
  69. $data['desc'] = $desc;
  70. $data['pic'] = $pic;
  71. $data['process'] = $process;
  72. if ($info) {
  73. $data['where_id'] = $info['id'];
  74. $state = Dever::db($this->refund_table)->update($data);
  75. if ($state) {
  76. $data['id'] = $info['id'];
  77. return $data;
  78. }
  79. } else {
  80. $state = Dever::db($this->refund_table)->insert($data);
  81. if ($state) {
  82. $data['id'] = $state;
  83. return $data;
  84. }
  85. }
  86. return false;
  87. }
  88. # 申请退款
  89. public function apply($type, $id, $order_id, $order_goods_id, $status = 1, $num = 0, $desc = '', $pic = '', $process = 2)
  90. {
  91. if ($status != 1 && $status != 2 && $status != 3) {
  92. Dever::alert('当前订单状态不允许退货退款');
  93. }
  94. $dec = $num;
  95. $data = Dever::load($this->lib)->set($type, 1)->getView($id, $order_id, false);
  96. $auth = false;
  97. if ($this->type == 'sell' && $type == 1) {
  98. if ($data['status'] == 2) {
  99. $auth = true;
  100. }
  101. } else {
  102. $config = array(2,3,4,5,6);
  103. if (in_array($data['status'], $config)) {
  104. $auth = true;
  105. }
  106. }
  107. if ($auth) {
  108. if ($order_goods_id) {
  109. $info = Dever::db($this->goods_table)->find(array('id' => $order_goods_id, 'order_id' => $data['id'], 'status' => 1));
  110. if ($info) {
  111. Dever::db($this->goods_table)->update(array('where_id' => $info['id'], 'status' => 2));
  112. if (isset($info['coupon_cash']) && $info['coupon_cash']) {
  113. $cash = $info['price'] - $info['coupon_cash'];
  114. $p_cash = 0;
  115. } else {
  116. $cash = $info['price'];
  117. $p_cash = $info['p_price'];
  118. }
  119. if ($num > 0) {
  120. $dec = $num;
  121. } else {
  122. $dec = $info['num'];
  123. }
  124. if ($num > 0 && $info['num'] >= $num) {
  125. $dec = $info['num'];
  126. $price = round($cash / $info['num'], 2);
  127. $cash = round($price * $num, 2);
  128. if ($p_cash > 0) {
  129. $price = round($p_cash / $info['num'], 2);
  130. $p_cash = round($price * $num, 2);
  131. }
  132. }
  133. } else {
  134. Dever::alert('您没有权限操作');
  135. }
  136. } else {
  137. $cash = $data['price'] - $data['refund_cash'];
  138. if (isset($data['refund_p_cash'])) {
  139. $p_cash = $data['p_price'] - $data['refund_p_cash'];
  140. } else {
  141. $p_cash = 0;
  142. }
  143. }
  144. if ($cash > 0) {
  145. $log = $this->up($data['id'], $order_goods_id, $status, $cash, $p_cash, $dec, $desc, $pic, $process);
  146. if (!$log) {
  147. Dever::alert('退款失败');
  148. }
  149. if ($this->type == 'buy') {
  150. # 如果是采购单,这里要把库存先减掉
  151. if ($data['status'] == 5 || $data['status'] == 6) {
  152. $oper_data = Dever::db($this->goods_table)->getDataByIds(array('ids' => $log['order_goods_id']));
  153. Dever::load('shop/lib/goods')->oper($data, 2, 1, $oper_data);
  154. }
  155. if ($data['source_id'] && $data['source_id'] > 0) {
  156. Dever::load('cash/lib/order')->up($data, 2, 1, $log['id']);
  157. } else {
  158. Dever::load('cash/lib/order')->up($data, 1, 3);
  159. }
  160. # 发消息给供应商
  161. if ($data['source_id'] && Dever::project('message')) {
  162. $msg = '您的订单'.$data['order_num'].',有新的商品问题。';
  163. $msg_param['type'] = 1;
  164. $msg_param['id'] = $data['id'];
  165. $msg_param = Dever::json_encode($msg_param);
  166. $pid = $data['source_type'] + 1;
  167. Dever::load('message/lib/data')->push(-1, $data['source_id'], '退货与报损通知', $msg, 2, $pid, false, $msg_param);
  168. }
  169. }
  170. $update = array();
  171. $update['where_id'] = $data['id'];
  172. $update['refund_cash'] = $data['refund_cash'] + $cash;
  173. if (isset($data['refund_p_cash'])) {
  174. $update['refund_p_cash'] = $data['refund_p_cash'] + $cash;
  175. }
  176. $update['refund_status'] = 2;
  177. if ($dec > 0) {
  178. //$update['num'] = $data['num'] - $dec;
  179. }
  180. Dever::db($this->order_table)->update($update);
  181. if ($id && $process == 2) {
  182. $this->action($log, $process, $data);
  183. }
  184. } else {
  185. Dever::alert('您没有可以退款的金额');
  186. }
  187. } else {
  188. Dever::alert('您没有权限操作');
  189. }
  190. return 'ok';
  191. }
  192. # 确认退款
  193. public function action($info, $process, $order = false, $cash = true)
  194. {
  195. if (!is_array($info)) {
  196. $info = Dever::db($this->refund_table)->find($info);
  197. }
  198. if (!$info) {
  199. Dever::alert('您没有权限操作');
  200. }
  201. if (!$order) {
  202. $order = Dever::db($this->order_table)->find($info['order_id']);
  203. }
  204. if (!$order) {
  205. Dever::alert('您没有权限操作');
  206. }
  207. $state = Dever::db($this->refund_table)->update(array('where_id' => $info['id'], 'process' => $process));
  208. if (!$state) {
  209. Dever::alert('操作失败');
  210. }
  211. $update = array();
  212. if ($process == 3) {
  213. if ($info['num'] && $info['num'] > 0) {
  214. //$update['num'] = $order['num'] + $info['num'];
  215. }
  216. $update['refund_cash'] = $order['refund_cash'] - $info['cash'];
  217. if (isset($order['refund_p_cash'])) {
  218. $update['refund_p_cash'] = $order['refund_p_cash'] - $info['p_cash'];
  219. }
  220. $update['where_id'] = $order['id'];
  221. if ($update['refund_cash'] <= 0) {
  222. $update['refund_status'] = 1;
  223. }
  224. $state = Dever::db($this->order_table)->update($update);
  225. if ($info['type'] == 2) {
  226. Dever::db($this->goods_table)->update(array('where_id' => $info['order_goods_id'], 'status' => 1));
  227. }
  228. if ($cash && $this->type == 'buy' && $order['source_id'] && $order['source_id'] > 0) {
  229. Dever::load('cash/lib/order')->up($order, 2, 3, $info['id']);
  230. }
  231. } else {
  232. if ($info['type'] == 2) {
  233. $state = Dever::db($this->goods_table)->update(array('where_id' => $info['order_goods_id'], 'status' => 3));
  234. if ($state) {
  235. $this->notice($state, $order, $info['cash']);
  236. # 检查这个订单下的商品是不是都退了
  237. $total = Dever::db($this->goods_table)->total(array('order_id' => $order['id'], 'status' => 1));
  238. if ($total <= 0) {
  239. $update['operdate'] = time();
  240. $update['status'] = 8;
  241. } elseif ($order['status'] == 5) {
  242. $update['status'] = 6;
  243. }
  244. if ($update) {
  245. $update['where_id'] = $order['id'];
  246. $state = Dever::db($this->order_table)->update($update);
  247. }
  248. }
  249. } else {
  250. $update['where_id'] = $order['id'];
  251. $update['operdate'] = time();
  252. $update['status'] = 8;
  253. $state = Dever::db($this->order_table)->update($update);
  254. if ($state) {
  255. $this->notice($state, $order, $info['cash']);
  256. if (isset($order['user_coupon_id']) && $order['user_coupon_id']) {
  257. # 还原优惠券
  258. Dever::db('shop/user_coupon')->update(array('where_id' => $order['user_coupon_id'], 'status' => 1));
  259. }
  260. }
  261. }
  262. if ($cash && $this->type == 'buy' && $order['source_id'] && $order['source_id'] > 0) {
  263. Dever::load('cash/lib/order')->up($order, 2, 2, $info['id']);
  264. }
  265. }
  266. $data = Dever::db($this->goods_table)->getDataByIds(array('ids' => $info['order_goods_id']));
  267. if ($this->type == 'sell' && $process == 2) {
  268. # 如果是销售单,退款后要减少销量
  269. Dever::load('shop/lib/goods')->oper($order, 2, 2, $data);
  270. } elseif ($this->type == 'buy' && $process == 3 && ($order['status'] == 5 || $order['status'] == 6)) {
  271. # 如果是采购单,退款后要恢复库存
  272. Dever::load('shop/lib/goods')->oper($order, 1, 1, $data);
  273. }
  274. return 'ok';
  275. }
  276. # 获取部分退款的详情
  277. public function getInfo($type, $id, $order_id, $order_goods_id)
  278. {
  279. $data = Dever::load($this->lib)->set($type, 1)->getView($id, $order_id, false);
  280. $info = Dever::db($this->goods_table)->find(array('id' => $order_goods_id, 'order_id' => $data['id'], 'status' => 1));
  281. if ($info) {
  282. if (isset($info['coupon_cash']) && $info['coupon_cash']) {
  283. $info['tui_price'] = $info['price'] - $info['coupon_cash'];
  284. } else {
  285. $info['tui_price'] = $info['price'];
  286. }
  287. $info['tui_one_price'] = round($info['tui_price'] / $info['num'], 2);
  288. $info['goods'] = Dever::db('goods/info')->find($info['goods_id']);
  289. }
  290. return $info;
  291. }
  292. # 退款通知
  293. public function notice($state, $data, $refund_cash)
  294. {
  295. if ($state && isset($data['uid']) && $data['uid'] > 0) {
  296. $shop = Dever::db('shop/info')->one($data['shop_id']);
  297. $msg_param['type'] = 1;//消息类型1是订单消息
  298. $msg_param['id'] = $data['id'];
  299. $msg_param['name'] = $shop['name'];
  300. $msg_param = Dever::json_encode($msg_param);
  301. $msg = '您有一笔订单已退款,退款将在3个工作日内返回原支付账户';
  302. Dever::load('message/lib/data')->push(-1, $data['uid'], '退款成功通知', $msg, 2, 1, false, $msg_param);
  303. # 退款到原支付账户 待处理
  304. }
  305. }
  306. }