Buy.php 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671
  1. <?php
  2. # 支付
  3. namespace Mshop\Lib;
  4. use Dever;
  5. class Buy
  6. {
  7. # 1是门店,2是仓库,3是工厂,1,2,3是查看采购人的订单,11,12,13是查看供货商的订单
  8. public $type = 1;
  9. # 1是列表,2是详情
  10. public $view = 1;
  11. # 获取配置
  12. public $config = array();
  13. # table
  14. public $table = 'shop/buy_order';
  15. public function __construct()
  16. {
  17. $this->config = Dever::db($this->table)->config;
  18. }
  19. # 设置订单的类型
  20. public function set($type, $view)
  21. {
  22. $this->type = $type;
  23. $this->view = $view;
  24. return $this;
  25. }
  26. # 获取公共的where
  27. public function where($id)
  28. {
  29. $where = array();
  30. if ($this->type > 10) {
  31. $type = $this->type - 10;
  32. $where['source_type'] = $type;
  33. $where['source_id'] = $id;
  34. } else {
  35. $where['type'] = $this->type;
  36. $where['type_id'] = $id;
  37. }
  38. if (!$where) {
  39. Dever::alert('参数错误');
  40. }
  41. return $where;
  42. }
  43. # 获取订单列表
  44. public function getList($id)
  45. {
  46. $result = array();
  47. $where = $this->where($id);
  48. $status = Dever::input('status');
  49. if ($status) {
  50. if ($status == 'refund') {
  51. $where['refund_status'] = 2;
  52. } else {
  53. $where['status'] = $status;
  54. }
  55. }
  56. $order_num = Dever::input('order_num');
  57. if ($order_num) {
  58. $where['order_num'] = $order_num;
  59. }
  60. $refund_status = Dever::input('refund_status');
  61. if ($refund_status) {
  62. $where['refund_status'] = $refund_status;
  63. }
  64. $result['search_value'] = $where;
  65. $result['search_value']['day'] = $day = Dever::input('day');
  66. if ($day) {
  67. if ($this->type > 10) {
  68. $where['start_o'] = Dever::maketime($day . ' 00:00:00');
  69. $where['end_o'] = Dever::maketime($day . ' 23:59:59');
  70. } elseif ($this->type == 2) {
  71. $where['start_f'] = Dever::maketime($day . ' 00:00:00');
  72. $where['end_f'] = Dever::maketime($day . ' 23:59:59');
  73. } else {
  74. $where['start'] = Dever::maketime($day . ' 00:00:00');
  75. $where['end'] = Dever::maketime($day . ' 23:59:59');
  76. }
  77. }
  78. $result['search_value']['start'] = $start = Dever::input('start');
  79. $result['search_value']['end'] = $end = Dever::input('end');
  80. if ($start && $end) {
  81. if ($this->type > 10) {
  82. $where['start_o'] = Dever::maketime($start);
  83. $where['end_o'] = Dever::maketime($end);
  84. } elseif ($this->type == 2) {
  85. $where['start_f'] = Dever::maketime($start);
  86. $where['end_f'] = Dever::maketime($end);
  87. } else {
  88. $where['start'] = Dever::maketime($start);
  89. $where['end'] = Dever::maketime($end);
  90. }
  91. }
  92. $result['order'] = Dever::db($this->table)->getAll($where);
  93. if ($result['order']) {
  94. foreach ($result['order'] as $k => $v) {
  95. $result['order'][$k] = $this->getInfo($v);
  96. }
  97. }
  98. $result['search'] = array();
  99. $result['search']['status'] = array
  100. (
  101. array('value' => 1, 'name' => '待支付'),
  102. array('value' => 2, 'name' => '待审核'),
  103. array('value' => 3, 'name' => '待发货'),
  104. array('value' => 4, 'name' => '待收货确认'),
  105. array('value' => 5, 'name' => '已完成'),
  106. array('value' => 6, 'name' => '已完成(有退款)'),
  107. array('value' => '7,8,11', 'name' => '已取消'),
  108. );
  109. $result['config'] = Dever::db('main/manage_config')->find();
  110. return $result;
  111. }
  112. # 查看详情
  113. public function getView($id, $order_id, $show = true)
  114. {
  115. $where = $this->where($id);
  116. $where['id'] = $order_id;
  117. $result = Dever::db($this->table)->find($where);
  118. if (!$result) {
  119. Dever::alert('订单不存在');
  120. }
  121. if ($show) {
  122. $result = $this->getInfo($result, true);
  123. }
  124. $result['config'] = Dever::db('main/manage_config')->find();
  125. return $result;
  126. }
  127. # 查看退款详情
  128. public function getRefund($id, $order_id)
  129. {
  130. $data = $this->getView($id, $order_id, false);
  131. $data['refund'] = Dever::db('shop/buy_order_refund')->select(array('order_id' => $info['id']));
  132. return $data;
  133. }
  134. # 获取订单详细信息
  135. public function getInfo($info, $view = false)
  136. {
  137. if ($info['status'] == 1) {
  138. # 15分钟内支付,900秒
  139. $m = 900;
  140. # 支付倒计时
  141. $info['time'] = time() - $info['cdate'];
  142. if ($info['time'] >= $m) {
  143. # 已过期,自动取消
  144. $info['time'] = -1;
  145. Dever::db($this->table)->update(array('where_id' => $info['id'], 'status' => 11));
  146. $info['status'] = 11;
  147. } else {
  148. $info['time'] = $m - $info['time'];
  149. }
  150. }
  151. $info['status_name'] = $this->config['status'][$info['status']];
  152. $info['goods'] = Dever::db('shop/buy_order_goods')->select(array('order_id' => $info['id']));
  153. if ($info['type'] == 1) {
  154. $info['type_info'] = Dever::db('shop/info')->getOne($info['type_id']);
  155. } elseif ($info['type'] == 2) {
  156. $info['type_info'] = Dever::db('store/info')->find($info['type_id']);
  157. } elseif ($info['type'] == 3) {
  158. $info['type_info'] = Dever::db('factory/info')->find($info['type_id']);
  159. }
  160. if ($info['source_type'] == 1) {
  161. $info['source_info'] = Dever::db('shop/info')->getOne($info['source_id']);
  162. } elseif ($info['source_type'] == 2) {
  163. $info['source_info'] = Dever::db('store/info')->find($info['source_id']);
  164. } elseif ($info['source_type'] == 3) {
  165. $info['source_info'] = Dever::db('factory/info')->find($info['source_id']);
  166. }
  167. $info['cdate'] = date('Y-m-d H:i', $info['cdate']);
  168. if ($info['operdate']) {
  169. $info['operdate'] = date('Y-m-d H:i', $info['operdate']);
  170. } else {
  171. $info['operdate'] = $info['cdate'];
  172. }
  173. $goods_status = Dever::db('shop/buy_order_goods')->config['status'];
  174. $goods_process = Dever::db('shop/buy_order_refund')->config['process'];
  175. if ($view || $this->view == 2) {
  176. foreach ($info['goods'] as $k => $v) {
  177. $info['goods'][$k]['info'] = Dever::load('goods/lib/info')->getPayInfo($v['goods_id'], $v['sku_id']);
  178. $info['goods'][$k]['status_name'] = $goods_status[$v['status']];
  179. }
  180. } else {
  181. foreach ($info['goods'] as $k => $v) {
  182. $goods = Dever::db('goods/info')->one($v['goods_id']);
  183. $info['goods'][$k]['name'] = $goods['name'];
  184. $info['goods'][$k]['cover'] = $goods['cover'];
  185. $info['goods'][$k]['status_name'] = $goods_status[$v['status']];
  186. }
  187. }
  188. if (!$info['refund_cash']) {
  189. $info['refund_cash'] = 0;
  190. }
  191. # 配送信息
  192. $info['ps_info'] = Dever::db('shop/buy_order_ps')->find(array('order_id' => $info['id']));
  193. if ($info['ps_info']) {
  194. $info['ps_info']['service_name'] = '商家自送';
  195. $info['ps_info']['cdate'] = date('Y-m-d H:i', $info['ps_info']['cdate']);
  196. if ($info['ps_info']['ydate']) {
  197. $info['ps_info']['ydate'] = date('Y-m-d H:i', $info['ps_info']['ydate']);
  198. }
  199. $status = Dever::db('shop/buy_order_ps')->config['status'];
  200. $info['ps_info']['status_name'] = $status[$info['ps_info']['status']];
  201. if ($info['ps_info']['service_id'] > 0) {
  202. //暂时还没有
  203. $service = Dever::db('shop/service')->find($info['ps_info']['service_id']);
  204. $info['ps_info']['service_name'] = $service['name'];
  205. }
  206. }
  207. return $info;
  208. }
  209. # 发起支付
  210. public function action($type, $type_id, $name, $num, $goods, $price, $info, $refer = '')
  211. {
  212. $order_data['type'] = $type;
  213. $order_data['type_id'] = $type_id;
  214. $order_data['name'] = $name;
  215. $order_data['num'] = $num;
  216. $order_data['info'] = $info;
  217. $order_data['price'] = $price;
  218. $order_data['order_num'] = $this->getOrderId();
  219. $order_data['refund_cash'] = 0;
  220. $order_data['refund_p_cash'] = 0;
  221. $id = Dever::db('shop/buy_order')->insert($order_data);
  222. if (!$id) {
  223. Dever::alert('支付失败');
  224. }
  225. foreach($goods as $k => $v) {
  226. $data['order_id'] = $id;
  227. $data['goods_id'] = $v['id'];
  228. $data['sku_id'] = $v['sku_id'];
  229. $data['price'] = $v['price'];
  230. $data['num'] = $v['buy_num'];
  231. Dever::db('shop/buy_order_goods')->insert($data);
  232. }
  233. if ($price <= 0) {
  234. $param['pay_product_id'] = $id;
  235. $param['pay_order_id'] = $order_data['order_num'];
  236. $param['pay_status'] = 2;
  237. $param['pay_cash'] = $price;
  238. $param['pay_msg'] = '';
  239. $this->success($param);
  240. return array
  241. (
  242. 'order' => '',
  243. 'order_num' => $order_data['order_num'],
  244. 'order_id' => $id,
  245. 'type' => 'pay',
  246. );
  247. }
  248. $param = array
  249. (
  250. 'project_id' => 2,
  251. 'channel_id' => 1,
  252. 'system_source' => 5,
  253. 'uid' => -1,
  254. 'name' => $order_data['name'],
  255. 'cash' => $price,
  256. 'product_id' => $id,
  257. 'order_id' => $order_data['order_num'],
  258. 'refer' => $refer,
  259. );
  260. $receipt = Dever::input('receipt');
  261. if ($receipt) {
  262. $param['receipt'] = $receipt;
  263. }
  264. //$result = Dever::load('pay/api.pay', $param);
  265. $result['type'] = 'test';
  266. $result['order'] = '';
  267. $result['order_num'] = $order_data['order_num'];
  268. $result['order_id'] = $id;
  269. return $result;
  270. }
  271. # 再次发起支付
  272. public function raction($id, $refer = '')
  273. {
  274. $order = Dever::db('shop/buy_order')->find($id);
  275. if (!$order) {
  276. Dever::alert('订单信息错误');
  277. }
  278. if ($order['status'] > 1) {
  279. Dever::alert('订单已支付或已取消');
  280. }
  281. $param = array
  282. (
  283. 'project_id' => 2,
  284. 'channel_id' => 1,
  285. 'system_source' => 5,
  286. 'uid' => -1,
  287. 'name' => $order['name'],
  288. 'cash' => $order['price'],
  289. 'product_id' => $id,
  290. 'order_id' => $order['order_num'],
  291. 'refer' => $refer,
  292. );
  293. $receipt = Dever::input('receipt');
  294. if ($receipt) {
  295. $param['receipt'] = $receipt;
  296. }
  297. $result = Dever::load('pay/api.pay', $param);
  298. $result['order_num'] = $order['order_num'];
  299. $result['order_id'] = $id;
  300. return $result;
  301. }
  302. # 支付成功回调 安全加密 设置token
  303. public function success_secure_api_token()
  304. {
  305. $project_id = Dever::input('pay_project_id');
  306. $info = Dever::db('pay/project')->one($project_id);
  307. if ($info) {
  308. return $info['key'];
  309. }
  310. return 'shop_buy_dever_2020';
  311. }
  312. # 支付成功回调 安全加密
  313. public function success_secure_api($param = array())
  314. {
  315. $this->success($param);
  316. }
  317. # 支付成功回调
  318. public function success($param = array())
  319. {
  320. $send = $param ? $param : Dever::preInput('pay_');
  321. $product_id = $send['pay_product_id'];
  322. $order_id = $send['pay_order_id'];
  323. $status = $send['pay_status'];
  324. $cash = $send['pay_cash'];
  325. $msg = $send['pay_msg'];
  326. $order = Dever::db('shop/buy_order')->one(array('id' => $product_id, 'time' => time()));
  327. if ($order && $order['status'] == 1 && $status == 2) {
  328. $update['status'] = 2;
  329. $update['where_id'] = $order['id'];
  330. Dever::db('shop/buy_order')->update($update);
  331. # 生成结算单
  332. Dever::load('cash/lib/order')->up($order, 1, 1);
  333. }
  334. return 'ok';
  335. }
  336. # 生成订单号
  337. public function getOrderId()
  338. {
  339. $where['order_num'] = Dever::order('C');
  340. $state = Dever::db('shop/buy_order')->one($where);
  341. if (!$state) {
  342. return $where['order_num'];
  343. } else {
  344. return $this->getOrderId();
  345. }
  346. }
  347. # 添加配送信息
  348. public function updatePs($order, $status = 1)
  349. {
  350. $where['order_id'] = $order['id'];
  351. $data = Dever::db('shop/buy_order_ps')->find($where);
  352. if ($data) {
  353. $update['where_id'] = $data['id'];
  354. $update['status'] = $status;
  355. $update['ydate'] = time();
  356. Dever::db('shop/buy_order_ps')->update($update);
  357. }
  358. }
  359. # 确认收货
  360. public function finish($id, $order_id)
  361. {
  362. $data = $this->getView($id, $order_id, false);
  363. if ($data['status'] <= 4) {
  364. if ($data['refund_cash'] > 0) {
  365. $status = 6;
  366. } else {
  367. $status = 5;
  368. }
  369. $state = Dever::db('shop/buy_order')->update(array('where_id' => $data['id'], 'status' => $status, 'fdate' => time()));
  370. if ($state) {
  371. $this->updatePs($data, 3);
  372. # 增加库存
  373. $where['order_id'] = $data['id'];
  374. $where['status'] = 1;
  375. $goods = Dever::db('shop/buy_order_goods')->select($where);
  376. if ($goods) {
  377. Dever::load('shop/lib/goods')->oper($data, 1, 1, $goods);
  378. }
  379. # 生成结算单
  380. Dever::load('cash/lib/order')->up($data, 1, 2);
  381. }
  382. return 'ok';
  383. } else {
  384. Dever::alert('您没有权限');
  385. }
  386. }
  387. # 取消订单
  388. public function cancel($id, $order_id)
  389. {
  390. $data = $this->getView($id, $order_id, false);
  391. if ($data['status'] == 1) {
  392. $state = Dever::db('shop/buy_order')->update(array('where_id' => $data['id'], 'status' => 7, 'operdate' => time()));
  393. # 生成结算单
  394. if ($state) {
  395. //Dever::load('cash/lib/order')->up($data, 1, 3);
  396. }
  397. return 'ok';
  398. } else {
  399. Dever::alert('当前订单状态不允许取消');
  400. }
  401. }
  402. # 查看订单状态
  403. public function orderStatus($id)
  404. {
  405. $config = Dever::db('shop/buy_order')->config;
  406. $info = Dever::db('shop/buy_order')->one($id);
  407. $tk = Dever::db('shop/buy_order_refund')->find(array('order_id' => $info['id'], 'process' => 1));
  408. $status = $config['status'][$info['status']];
  409. if ($tk) {
  410. $status = '申请退款中';
  411. }
  412. return $status;
  413. }
  414. # 后台审核退款
  415. public function refund_commit_api()
  416. {
  417. $id = Dever::input('id');
  418. $process = Dever::input('process');
  419. return Dever::load('shop/lib/refund')->set('buy')->action($id, $process, false);
  420. }
  421. # 货物未发出,仅退款
  422. public function refund_apply_commit_api()
  423. {
  424. $order_id = Dever::input('order_id');
  425. $type = Dever::input('type');
  426. $type_id = Dever::input('type_id');
  427. $desc = Dever::input('desc');
  428. $pic = Dever::input('pic');
  429. return Dever::load('shop/lib/refund')->set('buy')->apply($type, $type_id, $order_id, false, 3, 0, $desc, $pic, 2);
  430. }
  431. # 货物已收到 全部退款 报损 需要审核
  432. public function refund_apply_info_commit_api()
  433. {
  434. $order_id = Dever::input('order_id');
  435. $status = Dever::input('status');
  436. $desc = Dever::input('desc');
  437. $pic = Dever::input('pic');
  438. $type = Dever::input('type');
  439. $type_id = Dever::input('type_id');
  440. return Dever::load('shop/lib/refund')->set('buy')->apply($type, $type_id, $order_id, false, $status, 0, $desc, $pic, 1);
  441. }
  442. # 部分退款信息 报损
  443. public function refund_apply_info_one_info()
  444. {
  445. $order_id = Dever::input('order_id');
  446. $order_goods_id = Dever::input('order_goods_id');
  447. $type = Dever::input('type');
  448. $type_id = Dever::input('type_id');
  449. return Dever::load('shop/lib/refund')->set('buy')->getInfo($type, $type_id, $order_id, $order_goods_id);
  450. }
  451. # 部分退款 报损
  452. public function refund_apply_info_one_commit_api()
  453. {
  454. $order_id = Dever::input('order_id');
  455. $order_goods_id = Dever::input('order_goods_id');
  456. $num = Dever::input('num', 0);
  457. $status = Dever::input('status');
  458. $desc = Dever::input('desc');
  459. $pic = Dever::input('pic');
  460. $type = Dever::input('type');
  461. $type_id = Dever::input('type_id');
  462. return Dever::load('shop/lib/refund')->set('buy')->apply($type, $type_id, $order_id, $order_goods_id, $status, $num, $desc, $pic, 1);
  463. }
  464. # 展示订单详情
  465. public function show()
  466. {
  467. $id = Dever::input('order_id');
  468. $type = 1;
  469. $type = Dever::input('type', $type);
  470. $cash_type = Dever::input('cash', 1);
  471. $config = Dever::db('shop/buy_order')->config;
  472. $info = Dever::db('shop/buy_order')->one($id);
  473. $tk_status = Dever::db('shop/buy_order_refund')->config['status'];
  474. $tk_process = Dever::db('shop/buy_order_refund')->config['process'];
  475. $status = $config['status'][$info['status']];
  476. $tk = Dever::db('shop/buy_order_refund')->find(array('order_id' => $info['id'], 'type' => 1));
  477. $cdate = date('Y-m-d H:i', $info['cdate']);
  478. if ($info['operdate']) {
  479. $operdate = date('Y-m-d H:i', $info['operdate']);
  480. } else {
  481. $operdate = '';
  482. }
  483. if ($info['fdate']) {
  484. $fdate = date('Y-m-d H:i', $info['fdate']);
  485. } else {
  486. $fdate = '';
  487. }
  488. if ($type == 2 || $info['type'] == 2) {
  489. $info['price'] = $info['p_price'];
  490. }
  491. if ($type == 1 && $tk && $tk['process'] == 1) {
  492. $status = '申请' . $tk_status[$tk['status']];
  493. }
  494. $time = array();
  495. if ($type == 1) {
  496. $time[] = array('下单时间', $cdate);
  497. $time[] = array('订货时间', $operdate);
  498. } else {
  499. $time[] = array('订货时间', $operdate);
  500. }
  501. if ($fdate) {
  502. $time[] = array('完成时间', $fdate);
  503. }
  504. if ($info['type'] == 1) {
  505. $type_info = Dever::db('shop/info')->find($info['type_id']);
  506. } elseif ($info['type'] == 2) {
  507. $type_info = Dever::db('store/info')->find($info['type_id']);
  508. } elseif ($info['type'] == 3) {
  509. $type_info = Dever::db('store/info')->find($info['type_id']);
  510. }
  511. $result = array();
  512. $result[$info['order_num']] = array
  513. (
  514. 'type' => 'info',
  515. 'content' => array
  516. (
  517. array
  518. (
  519. array('订单状态', $status),
  520. ),
  521. $time,
  522. array
  523. (
  524. array('配送至', $type_info['name']),
  525. array('配送地址', $type_info['address']),
  526. ),
  527. array
  528. (
  529. array('联系人', $type_info['truename']),
  530. array('联系电话', $type_info['mobile']),
  531. array('订单备注', $info['info']),
  532. ),
  533. )
  534. );
  535. if ($type == 1 && $info['source_id'] > 0) {
  536. if ($info['source_type'] == 2) {
  537. # 仓库
  538. $source_info = Dever::db('store/info')->find($info['source_id']);
  539. } elseif ($info['source_type'] == 3) {
  540. # 工厂
  541. $source_info = Dever::db('factory/info')->find($info['source_id']);
  542. }
  543. $result[$info['order_num']]['content'][] = array
  544. (
  545. array('供应商', $source_info['name']),
  546. array('联系人', $source_info['truename']),
  547. array('联系电话', $source_info['mobile']),
  548. );
  549. }
  550. $button = array();
  551. if ($type == 2) {
  552. $config = Dever::load('factory/admin/auth.config');
  553. if ($info['status'] < 5) {
  554. $button[] = array
  555. (
  556. 'type' => 'link',
  557. 'link' => Dever::url('admin/order.print?id=' . $info['id'] . '&type=1', 'factory'),
  558. 'name' => '打印货单',
  559. );
  560. }
  561. if ($info['status'] == 3) {
  562. $button[] = array
  563. (
  564. 'type' => 'edit',
  565. 'link' => Dever::url('order_send?id=' . $info['id'], 'factory'),
  566. 'name' => '配送发货',
  567. );
  568. $button[] = array
  569. (
  570. 'type' => 'cancel',
  571. 'link' => Dever::url('lib/buy.refund_apply_commit?json=1&order_id=' . $info['id'] . '&type_id=' . $info['source_id'], 'mshop'),
  572. 'name' => '取消订单',
  573. );
  574. }
  575. $config['phone'] = '您的专属客服:' . $config['kf_name'] . ',联系电话:' . $config['phone'];
  576. $button[] = array
  577. (
  578. 'type' => 'alert',
  579. 'content' => $config['phone'],
  580. 'name' => '联系平台',
  581. );
  582. } elseif ($type == 3) {
  583. $config = Dever::load('factory/admin/auth.config');
  584. $button[] = array
  585. (
  586. 'type' => 'link',
  587. 'link' => Dever::url('admin/order.print?id=' . $info['id'] . '&type=2', 'store'),
  588. 'name' => '打印货单',
  589. );
  590. if ($info['status'] == 3 && $info['type'] == 1) {
  591. $button[] = array
  592. (
  593. 'type' => 'edit',
  594. 'link' => Dever::url('order_send?id=' . $info['id'] . '&type=2', 'store'),
  595. 'name' => '配送发货',
  596. );
  597. }
  598. if ($info['status'] == 4 && $info['type'] == 2) {
  599. $button[] = array
  600. (
  601. 'type' => 'action',
  602. 'link' => Dever::url('admin/factory_order.action_commit?order_id='.$info['id'], 'store'),
  603. 'name' => '确认收货',
  604. );
  605. }
  606. $config['phone'] = '您的专属客服:' . $config['kf_name'] . ',联系电话:' . $config['phone'];
  607. $button[] = array
  608. (
  609. 'type' => 'alert',
  610. 'content' => $config['phone'],
  611. 'name' => '联系平台',
  612. );
  613. }
  614. $url = Dever::url('lib/buy.refund_commit?json=1', 'mshop');
  615. if (!$info['refund_cash']) {
  616. $info['refund_cash'] = 0;
  617. }
  618. if ($info['refund_cash'] > 0 && $tk) {
  619. if ($tk['process'] == 1) {
  620. $process = '<a href="javascript:;" onclick="audit('.$tk['id'].', 2, \''.$url.'\')" class="layui-btn">通过</a><a href="javascript:;" onclick="audit('.$tk['id'].', 3, \''.$url.'\')" class="layui-btn layui-btn-danger">驳回</a>';
  621. } else {
  622. $process = $tk_process[$tk['process']];
  623. }
  624. $desc = array();
  625. $desc['退款原因'] = $tk['desc'];
  626. $desc['退款图片'] = '暂无';
  627. if ($tk['pic']) {
  628. $pic = explode(',', $tk['pic']);
  629. $tk['pic'] = '';
  630. foreach ($pic as $k => $v) {
  631. $tk['pic'] .= '<a href="'.$v.'" target="_blank"><img src="'.$v.'" width="100"/></a>';
  632. }
  633. }
  634. ;
  635. $tk['cdate'] = date('Y-m-d H:i', $tk['cdate']);
  636. $result['退款信息'] = array
  637. (
  638. 'type' => 'info',
  639. 'content' => array
  640. (
  641. array
  642. (
  643. array('退款金额', $info['refund_cash']),
  644. array('数量', $info['num']),
  645. array('退款进度', $process),
  646. ),
  647. array
  648. (
  649. array('申请时间', $tk['cdate']),
  650. array('申请原因', $tk['desc']),
  651. array('图片', $tk['pic']),
  652. ),
  653. ),
  654. );
  655. }
  656. $info['ps_info'] = Dever::db('shop/buy_order_ps')->find(array('order_id' => $info['id']));
  657. if ($info['ps_info']) {
  658. $info['ps_info']['service_name'] = '供应商自送';
  659. $info['ps_info']['cdate'] = date('Y-m-d H:i', $info['ps_info']['cdate']);
  660. if ($info['ps_info']['ydate']) {
  661. $info['ps_info']['ydate'] = date('Y-m-d H:i', $info['ps_info']['ydate']);
  662. } else {
  663. $info['ps_info']['ydate'] = '无';
  664. }
  665. $status = Dever::db('shop/buy_order_ps')->config['status'];
  666. $info['ps_info']['status_name'] = $status[$info['ps_info']['status']];
  667. if ($info['ps_info']['service_id'] > 0) {
  668. //暂时还没有
  669. $service = Dever::db('shop/service')->find($info['ps_info']['service_id']);
  670. $info['ps_info']['service_name'] = $service['name'];
  671. }
  672. $info['ps_info']['order_num'] = str_replace("\r\n", ',', $info['ps_info']['order_num']);
  673. if ($type == 3) {
  674. $result['物流信息'] = array
  675. (
  676. 'type' => 'info',
  677. 'content' => array
  678. (
  679. array
  680. (
  681. array('名称', $info['ps_info']['service_name']),
  682. array('单号', $info['ps_info']['order_num']),
  683. ),
  684. array
  685. (
  686. array('数量', $info['ps_info']['num']),
  687. array('重量', $info['ps_info']['zl']),
  688. array('体积', $info['ps_info']['tj']),
  689. ),
  690. array
  691. (
  692. array('发货时间', $info['ps_info']['cdate']),
  693. array('收货时间', $info['ps_info']['ydate']),
  694. ),
  695. ),
  696. );
  697. } else {
  698. $result['物流信息'] = array
  699. (
  700. 'type' => 'info',
  701. 'content' => array
  702. (
  703. array
  704. (
  705. array('名称', $info['ps_info']['service_name']),
  706. array('单号', $info['ps_info']['order_num']),
  707. array('费用', $info['ps_info']['price']),
  708. ),
  709. array
  710. (
  711. array('配货员', $info['ps_info']['phy']),
  712. array('打包员', $info['ps_info']['dby']),
  713. ),
  714. array
  715. (
  716. array('数量', $info['ps_info']['num']),
  717. array('重量', $info['ps_info']['zl']),
  718. array('体积', $info['ps_info']['tj']),
  719. ),
  720. array
  721. (
  722. array('发货时间', $info['ps_info']['cdate']),
  723. array('收货时间', $info['ps_info']['ydate']),
  724. ),
  725. ),
  726. );
  727. }
  728. }
  729. $body = array();
  730. $body_total = array();
  731. $body_total['price'] = 0;
  732. $body_total['num'] = 0;
  733. $goods = Dever::db('shop/buy_order_goods')->select(array('order_id' => $info['id']));
  734. $goods_status = Dever::db('shop/buy_order_goods')->config['status'];
  735. $refund_body = array();
  736. $refund_body_total = array();
  737. $refund_body_total['price'] = 0;
  738. $refund_body_total['num'] = 0;
  739. foreach ($goods as $k => $v) {
  740. if ($type == 2 || $info['type'] == 2) {
  741. $v['price'] = $v['p_price'];
  742. }
  743. $goods_info = Dever::load('goods/lib/info')->getInfoBySku($v['goods_id'], $v['sku_id']);
  744. $status = $goods_status[$v['status']];
  745. $tk = Dever::db('shop/buy_order_refund')->find(array('order_id' => $info['id'], 'order_goods_id' => $v['id'], 'type' => 2));
  746. if ($tk && $tk['process'] == 1) {
  747. if ($type == 1) {
  748. $status = '申请' . $tk_status[$tk['status']];
  749. } else {
  750. $status = '已上报';
  751. }
  752. if ($type == 1) {
  753. $desc = array();
  754. $desc['退款原因'] = $tk['desc'];
  755. $desc['退款图片'] = '暂无';
  756. if ($tk['pic']) {
  757. $desc['退款图片'] = '';
  758. $pic = explode(',', $tk['pic']);
  759. foreach ($pic as $k1 => $v1) {
  760. $desc['退款图片'] .= '<a href="'.$v1.'" target="_blank"><img src="'.$v1.'" width="100"/></a>';
  761. }
  762. }
  763. $status .= '<div style="width:300px"><table><tr><td><a href="javascript:showAlert($(\'#desc_content\').html());">点此查看原因</a><span id="desc_content" style="display:none">'.Dever::table($desc).'</span><td>';
  764. $status .= '<td><button href="javascript:;" style="width:80px" onclick="audit('.$tk['id'].', 2, \''.$url.'\')" class="layui-btn layui-btn-primary">通过</button></td><td><button href="javascript:;" onclick="audit('.$tk['id'].', 3, \''.$url.'\')" style="width:80px" class="layui-btn layui-btn-danger">驳回</button></td></tr></table></div>';
  765. }
  766. } elseif ($type > 1 && (!$tk || ($tk && $tk['process'] == 3))) {
  767. //$tui = Dever::url('lib/buy.refund_apply_info_one_commit?json=1', 'mshop');
  768. if ($type == 2) {
  769. $tui = Dever::url('order_tui?order_goods_id=' . $v['id'] . '&order_id=' . $info['id'] . '&type=13&type_id=' . $info['source_id'], 'factory');
  770. } else {
  771. $tui = Dever::url('order_tui?order_goods_id=' . $v['id'] . '&order_id=' . $info['id'] . '&type=13&type_id=' . $info['source_id'], 'store');
  772. }
  773. if ($info['status'] == 3) {
  774. $status = '<a href="javascript:;" onclick="fastEdit($(this), \''.$tui.'\', \'缺货退款\', \'\', 1)" class="layui-btn">缺货退款</a>';
  775. } elseif ($info['status'] == 4) {
  776. $status = '<a href="javascript:;" onclick="fastEdit($(this), \''.$tui.'\', \'报损退款\', \'\', 1)" class="layui-btn">报损退款</a>';
  777. }
  778. }
  779. if (isset($goods_info['sku'])) {
  780. $sku = '[' . $goods_info['sku']['string'] . ']';
  781. } else {
  782. $sku = '';
  783. }
  784. $d = array
  785. (
  786. 'pic' => $goods_info['cover'],
  787. 'name' => $goods_info['name'],
  788. 'sku' => $sku,
  789. 'price' => $v['price'],
  790. 'num' => $v['num'],
  791. 'status' => $status,
  792. );
  793. if ($tk && $v['status'] == 3 && $tk['status'] != 3) {
  794. $d['status'] = $tk_status[$tk['status']];
  795. if ($type == 3) {
  796. unset($d['price']);
  797. }
  798. $refund_body[] = $d;
  799. $price = $v['price']*$v['num'];
  800. $refund_body_total['price'] += $price;
  801. $refund_body_total['num'] += $v['num'];
  802. } else {
  803. if ($type == 3) {
  804. unset($d['price']);
  805. }
  806. $body[] = $d;
  807. $price = $v['price']*$v['num'];
  808. $body_total['price'] += $price;
  809. $body_total['num'] += $v['num'];
  810. }
  811. }
  812. if ($body) {
  813. if ($refund_body_total['price']) {
  814. $body_total['set_price'] = $body_total['price'] - $refund_body_total['price'];
  815. }
  816. if ($refund_body_total['num']) {
  817. $body_total['set_num'] = $body_total['num'] - $refund_body_total['num'];
  818. }
  819. if ($type == 3) {
  820. unset($body_total['price']);
  821. unset($body_total['set_price']);
  822. }
  823. $result['商品清单'] = array
  824. (
  825. 'type' => 'list',
  826. 'content' => $body,
  827. 'total' => $body_total,
  828. );
  829. }
  830. if ($refund_body) {
  831. if ($type == 3) {
  832. unset($refund_body_total['price']);
  833. }
  834. $result['缺货与报损商品'] = array
  835. (
  836. 'type' => 'list',
  837. 'content' => $refund_body,
  838. 'total' => $refund_body_total,
  839. );
  840. }
  841. if ($cash_type == 1) {
  842. $search_option_type = Dever::input('search_option_type', 1);
  843. if ($search_option_type == 1) {
  844. # 门店结算单
  845. $cash_order = Dever::db('cash/order')->select(array('type' => $info['type'], 'type_id' => $info['type_id'], 'source_order_id' => $info['id']));
  846. $col = 'cash';
  847. } elseif ($search_option_type == 2) {
  848. # 工厂结算单
  849. $cash_order = Dever::db('cash/order')->select(array('source_type' => $info['source_type'], 'source_id' => $info['source_id'], 'source_order_id' => $info['id']));
  850. $col = 'p_cash';
  851. }
  852. }
  853. if (isset($cash_order) && $cash_order) {
  854. $head = array('序号', '结算单号', '数量', '金额', '结算类型', '入账状态', '审核状态', '结算时间', '审核未通过原因', '管理');
  855. if ($type == 3) {
  856. unset($head[3]);
  857. }
  858. $body = array();
  859. $config = Dever::db('cash/order')->config;
  860. foreach ($cash_order as $k => $v) {
  861. $cdate = date('Y-m-d H:i', $v['cdate']);
  862. $fdate = $v['fdate'] ? date('Y-m-d H:i', $v['fdate']) : '';
  863. $operdate = $v['operdate'] ? date('Y-m-d H:i', $v['operdate']) : '';
  864. $cash = $v[$col];
  865. $url = Dever::url('project/database/list?project=shop&table=buy_order_goods&order_id='.$v['source_order_id'].'&page_type=1', 'manage');
  866. $v['source_order_num'] = '<a href="'.$url.'" style="color:blue">'.$v['source_order_num'].'</a>';
  867. $m = '';
  868. if ($v['audit'] == 1 && $v['audit_type'] == 2) {
  869. $url = Dever::url('project/database/update?project=cash&table=order&where_id='.$v['id'].'&col=audit,desc', 'manage');
  870. $m = '<a href="javascript:;" onclick="fastEdit($(this), \''.$url.'\', \'审核\', \'\', 1)" class="layui-btn">审核</a>';
  871. }
  872. $d = array
  873. (
  874. $k+1,
  875. $v['order_num'],
  876. $v['num'],
  877. $cash,
  878. $config['config_jstype'][$v['jstype']],
  879. $config['config_status'][$v['status']],
  880. $config['config_audit'][$v['audit']],
  881. $operdate,
  882. $v['desc'],
  883. $m,
  884. );
  885. if ($type == 3) {
  886. unset($d[3]);
  887. }
  888. $body[] = $d;
  889. }
  890. $result['对账清单'] = array
  891. (
  892. 'type' => 'table',
  893. 'content' => array
  894. (
  895. 'head' => $head,
  896. 'body' => $body,
  897. )
  898. );
  899. }
  900. $head = array
  901. (
  902. 'name' => '基本信息',
  903. 'btn' => $button,
  904. );
  905. $html = Dever::show($head, $result);
  906. return $html;
  907. }
  908. # 发货
  909. /*
  910. public function send_commit()
  911. {
  912. $order_id = Dever::input('order_id');
  913. $order = Dever::db('shop/buy_order')->find($order_id);
  914. if (!$order || ($order && $order['status'] != 3)) {
  915. Dever::alert('当前订单状态无法发货');
  916. }
  917. $state = Dever::db('shop/buy_order')->update(array('where_id' => $order['id'], 'status' => 4));
  918. if ($state) {
  919. $this->updatePs($order, 1);
  920. }
  921. return 'reload';
  922. }*/
  923. # 采购订单审核 拆单
  924. public function audit_commit()
  925. {
  926. $order_id = Dever::input('order_id');
  927. $order = Dever::db('shop/buy_order')->find($order_id);
  928. if (!$order || ($order && $order['status'] != 2)) {
  929. Dever::alert('当前订单状态无法拆单');
  930. }
  931. if ($order['type'] != 1) {
  932. Dever::alert('这不是门店的订单');
  933. }
  934. $goods = Dever::db('shop/buy_order_goods')->select(array('order_id' => $order_id));
  935. $shop = Dever::db('shop/info')->find($order['type_id']);
  936. # 获取门店分配的仓库和工厂
  937. $shop_store = Dever::db('shop/store')->select(array('shop_id' => $shop['id']));
  938. $store = array();
  939. $distance = array();
  940. # 按照距离排序
  941. foreach ($shop_store as $k => $v) {
  942. $info = Dever::db('store/info')->find($v['store_id']);
  943. if ($info && $info['status'] == 1) {
  944. $distance[] = $info['distance'] = Dever::distance($shop['lng'], $shop['lat'], $info['lng'], $info['lat']);
  945. $store[] = $info;
  946. }
  947. }
  948. if (!$store) {
  949. Dever::alert('未分配仓库');
  950. }
  951. array_multisort($distance, SORT_ASC, SORT_NUMERIC, $store);
  952. $shop_factory = Dever::db('shop/factory')->select(array('shop_id' => $shop['id']));
  953. $factory = array();
  954. $distance = array();
  955. # 按照距离排序
  956. foreach ($shop_factory as $k => $v) {
  957. $info = Dever::db('factory/info')->find($v['factory_id']);
  958. if ($info && $info['status'] == 1) {
  959. $distance[] = $info['distance'] = Dever::distance($shop['lng'], $shop['lat'], $info['lng'], $info['lat']);
  960. $factory[] = $info;
  961. }
  962. }
  963. if (!$factory) {
  964. Dever::alert('未分配工厂');
  965. }
  966. array_multisort($distance, SORT_ASC, SORT_NUMERIC, $factory);
  967. $this->order_num = 0;
  968. $this->order_id = array();
  969. $delete = array();
  970. $yes = array();
  971. foreach ($goods as $k => $v) {
  972. # 开始找仓库
  973. $find = $this->store($order['id'], $order['order_num'] . '_' . $this->order_num, $shop, $store, $v);
  974. if (!$find[1]) {
  975. # 仓库没有,找厂家
  976. if ($factory) {
  977. $find = $this->factory($order['id'], $order['order_num'] . '_' . $this->order_num, $shop, $factory, $v);
  978. }
  979. }
  980. if ($find[1]) {
  981. $delete[$v['id']] = $v;
  982. } else {
  983. $yes[$v['id']] = $v;
  984. }
  985. }
  986. $num = count($this->order_id);
  987. if ($num > 0) {
  988. if ($num == 1) {
  989. $key = array_keys($this->order_id);
  990. $key = $key[0];
  991. Dever::db('shop/buy_order')->delete($key);
  992. $goods = Dever::db('shop/buy_order_goods')->select(array('order_id' => $key));
  993. $p_price = 0;
  994. foreach ($goods as $k => $v) {
  995. $goods_info = Dever::db('shop/buy_order_goods')->find(array('order_id' => $order['id'], 'goods_id' => $v['goods_id']));
  996. if ($goods_info) {
  997. Dever::db('shop/buy_order_goods')->update(array('where_id' => $goods_info['id'], 'set_p_price' => $v['p_price']));
  998. $p_price += $v['p_price'];
  999. }
  1000. }
  1001. Dever::db('shop/buy_order')->update(array('where_id' => $order['id'], 'status' => 3, 'source_type' => $this->order_id[$key][0], 'source_id' => $this->order_id[$key][1], 'p_price' => $p_price, 'operdate' => time()));
  1002. Dever::db('shop/buy_order_goods')->delete(array('order_id' => $key));
  1003. $this->order_id[$order['id']] = array($this->order_id[$key][0], $this->order_id[$key][1]);
  1004. unset($this->order_id[$key]);
  1005. } else {
  1006. if (!$yes) {
  1007. Dever::db('shop/buy_order')->update(array('where_id' => $order['id'], 'state' => 2));
  1008. Dever::load('cash/lib/order')->up($order, 1, 3);
  1009. } else {
  1010. $price = 0;
  1011. $num = 0;
  1012. foreach ($delete as $k => $v) {
  1013. Dever::db('shop/buy_order_goods')->delete(array('where_id' => $v['id']));
  1014. $price += $v['price'];
  1015. $num += $v['num'];
  1016. }
  1017. $order['price'] = $order['price'] - $price;
  1018. $order['num'] = $order['num'] - $num;
  1019. Dever::db('shop/buy_order')->update(array('where_id' => $order['id'], 'price' => $order['price'], 'num' => $order['num']));
  1020. Dever::load('shop/lib/refund')->set('buy')->apply(1, $shop['id'], $order_id, false, 3, 0, '供货商库存不足');
  1021. Dever::load('cash/lib/order')->up($order, 1, 3);
  1022. }
  1023. }
  1024. } else {
  1025. # 没有找到,退款
  1026. Dever::load('shop/lib/refund')->set('buy')->apply(1, $shop['id'], $order_id, false, 3, 0, '供货商库存不足');
  1027. }
  1028. if ($this->order_id) {
  1029. foreach ($this->order_id as $k => $v) {
  1030. $this->sendMsg($v[0], $v[1], $k);
  1031. if ($k != $order['id']) {
  1032. $order_info = Dever::db('shop/buy_order')->find($k);
  1033. Dever::load('cash/lib/order')->up($order_info, 1, 1);
  1034. }
  1035. }
  1036. }
  1037. return 'ok';
  1038. }
  1039. private function store($order_id, $order_num, $shop, $store, $goods, $state = 2)
  1040. {
  1041. $find = array();
  1042. $type_id = array();
  1043. $id = array();
  1044. if (!$store) {
  1045. return array(2, $type_id, $id);
  1046. }
  1047. foreach ($store as $k => $v) {
  1048. $where['store_id'] = $v['id'];
  1049. $where['goods_id'] = $goods['goods_id'];
  1050. $where['sku_id'] = ($goods['sku_id'] && $goods['sku_id'] > 0) ? $goods['sku_id'] : -1;
  1051. $sku = Dever::db('store/goods_sku')->getOne($where);
  1052. if ($sku) {
  1053. if ($goods['num'] <= $sku['total']) {
  1054. # 如果库存符合,直接下单即可,生成仓库订单
  1055. $state = $this->createOrder($order_id, $order_num, 1, $shop['id'], 2, $where['store_id'], $goods['price'], $goods['price'], $goods['num'], $where['goods_id'], $where['sku_id']);
  1056. if ($state) {
  1057. $type_id[] = $where['store_id'];
  1058. $id[] = $state;
  1059. $this->order_id[$state] = array(2, $where['store_id']);
  1060. break;
  1061. }
  1062. } elseif ($state == 1 && $sku['total'] > 0) {
  1063. # 如果库存不够,从这个仓库扣下一部分,剩余的从另外仓库处理
  1064. $goods['num'] = $goods['num'] - $sku['total'];
  1065. # 生成仓库订单
  1066. $state = $this->createOrder($order_id, $order_num, 1, $shop['id'], 2, $where['store_id'], $goods['price'], $goods['price'], $sku['total'], $where['goods_id'], $where['sku_id']);
  1067. if (!$state) {
  1068. $goods['num'] = $goods['num'] + $sku['total'];
  1069. } else {
  1070. $type_id[] = $where['store_id'];
  1071. $id[] = $state;
  1072. $this->order_id[$state] = array(2, $where['store_id']);
  1073. }
  1074. continue;
  1075. } else {
  1076. # 直接切换到下一个仓库处理
  1077. continue;
  1078. }
  1079. }
  1080. }
  1081. return array(2, $type_id, $id);
  1082. }
  1083. private function factory($order_id, $order_num, $shop, $factory, $goods)
  1084. {
  1085. $find = array();
  1086. $type_id = array();
  1087. $id = array();
  1088. if (!$factory) {
  1089. return array(3, $type_id, $id);
  1090. }
  1091. foreach ($factory as $k => $v) {
  1092. $where['factory_id'] = $v['id'];
  1093. $where['goods_id'] = $goods['goods_id'];
  1094. $where['sku_id'] = ($goods['sku_id'] && $goods['sku_id'] > 0) ? $goods['sku_id'] : -1;
  1095. $sku = Dever::db('factory/goods_sku')->getOne($where);
  1096. if ($sku && $sku['p_price'] > 0) {
  1097. $state = $this->createOrder($order_id, $order_num, 1, $shop['id'], 3, $where['factory_id'], $goods['price'], $sku['p_price'], $goods['num'], $where['goods_id'], $where['sku_id']);
  1098. if ($state) {
  1099. $type_id[] = $where['factory_id'];
  1100. $id[] = $state;
  1101. $this->order_id[$state] = array(3, $where['factory_id']);
  1102. break;
  1103. }
  1104. } else {
  1105. continue;
  1106. }
  1107. }
  1108. return array(3, $type_id, $id);
  1109. }
  1110. # 发送消息
  1111. private function sendMsg($source_type, $source_id, $id)
  1112. {
  1113. if (Dever::project('message')) {
  1114. $msg_param['type'] = 1;//消息类型1是订单消息
  1115. $msg_param['id'] = $id;
  1116. $msg_param['source_id'] = $source_id;
  1117. $msg_param['source_type'] = $source_type;
  1118. $msg_param = Dever::json_encode($msg_param);
  1119. $project = $source_type + 1;
  1120. $msg = '您有一个新的订货单,请及时处理。';
  1121. Dever::load('message/lib/data')->push(-1, $source_id, '订货通知', $msg, 2, $project, false, $msg_param);
  1122. }
  1123. }
  1124. # 生成拆单的订单
  1125. private function createOrder($order_id, $order_num, $type, $type_id, $source_type, $source_id, $price, $p_price, $num, $goods_id, $sku_id)
  1126. {
  1127. $where['parent_order_id'] = $order_id;
  1128. $where['type'] = $type;
  1129. $where['type_id'] = $type_id;
  1130. $where['source_type'] = $source_type;
  1131. $where['source_id'] = $source_id;
  1132. $where['r'] = $goods_id . '_' . microtime() . '_' . mt_rand(1, 10000);
  1133. $info = Dever::db('shop/buy_order')->find($where);
  1134. if (!$info) {
  1135. $this->order_num++;
  1136. $data = $where;
  1137. $data['name'] = $order_id;
  1138. $data['order_num'] = $order_num;
  1139. $data['operdate'] = time();
  1140. $data['status'] = 3;
  1141. $data['price'] = $price * $num;
  1142. $data['p_price'] = $p_price * $num;
  1143. $data['num'] = $num;
  1144. $data['refund_cash'] = 0;
  1145. $data['refund_p_cash'] = 0;
  1146. $id = $state = Dever::db('shop/buy_order')->insert($data);
  1147. } else {
  1148. $id = $info['id'];
  1149. $data['where_id'] = $id;
  1150. $data['price'] = $info['price'] + ($price * $num);
  1151. $data['p_price'] = $info['p_price'] + ($p_price * $num);
  1152. $data['num'] = $info['num'] + $num;
  1153. $state = Dever::db('shop/buy_order')->update($data);
  1154. }
  1155. if ($state && $id > 0) {
  1156. $goods_info = Dever::db('shop/buy_order_goods')->find(array('order_id' => $id));
  1157. if (!$goods_info) {
  1158. $goods['order_id'] = $id;
  1159. $goods['goods_id'] = $goods_id;
  1160. $goods['sku_id'] = $sku_id;
  1161. $goods['price'] = $price;
  1162. $goods['p_price'] = $p_price;
  1163. $goods['num'] = $num;
  1164. Dever::db('shop/buy_order_goods')->insert($goods);
  1165. }
  1166. $state = $this->updateSell($source_type, $source_id, $goods_id, $sku_id, $num);
  1167. return $id;
  1168. }
  1169. return false;
  1170. }
  1171. # 减少库存,增加销量
  1172. public function updateSell($source_type, $source_id, $goods_id, $sku_id, $num)
  1173. {
  1174. if ($source_type == 2) {
  1175. $data['store_id'] = $source_id;
  1176. $data['goods_id'] = $goods_id;
  1177. $data['sku_id'] = $sku_id;
  1178. $data['num'] = $num;
  1179. return Dever::load('store/lib/goods')->oper($source_id, 1, 2, array($data));
  1180. } else {
  1181. $up = array();
  1182. $up['where_factory_id'] = $source_id;
  1183. $up['where_goods_id'] = $goods_id;
  1184. $up['sell_num'] = $num;
  1185. $state = Dever::db('factory/goods')->incSell($up);
  1186. if ($state) {
  1187. if ($sku_id > 0) {
  1188. } else {
  1189. $sku_id = -1;
  1190. }
  1191. $upSku = $up;
  1192. $upSku['where_sku_id'] = $sku_id;
  1193. $state = Dever::db('factory/goods_sku')->incSell($upSku);
  1194. }
  1195. return $state;
  1196. }
  1197. }
  1198. # 打印订单单
  1199. public function printer($user)
  1200. {
  1201. $id = Dever::input('id');
  1202. $type = Dever::input('type', 1);
  1203. $factory_config = Dever::db('main/factory_config')->find();
  1204. $main_config = Dever::db('main/config')->find();
  1205. $config = Dever::db('shop/buy_order')->config;
  1206. $info = Dever::db('shop/buy_order')->one($id);
  1207. $source_info = Dever::db('factory/info')->find($info['source_id']);
  1208. if ($type == 2) {
  1209. # 仓库
  1210. $member = Dever::db('store/member')->find($user['id']);
  1211. $name = '仓库名称';
  1212. } else {
  1213. # 工厂
  1214. $member = Dever::db('factory/member')->find($user['id']);
  1215. $name = '工厂名称';
  1216. }
  1217. if ($info['type'] == 1) {
  1218. $type_info = Dever::db('shop/info')->find($info['type_id']);
  1219. } elseif ($info['type'] == 2) {
  1220. $type_info = Dever::db('store/info')->find($info['type_id']);
  1221. } elseif ($info['type'] == 3) {
  1222. $type_info = Dever::db('store/info')->find($info['type_id']);
  1223. }
  1224. $cdate = date('Y-m-d H:i', $info['cdate']);
  1225. if ($info['operdate']) {
  1226. $operdate = date('Y-m-d H:i', $info['operdate']);
  1227. } else {
  1228. $operdate = '';
  1229. }
  1230. if ($info['fdate']) {
  1231. $fdate = date('Y-m-d H:i', $info['fdate']);
  1232. } else {
  1233. $fdate = '';
  1234. }
  1235. $status = $config['status'][$info['status']];
  1236. $info['ps_info'] = Dever::db('shop/buy_order_ps')->find(array('order_id' => $info['id']));
  1237. if ($info['ps_info']) {
  1238. $info['ps_info']['service_name'] = '供应商自送';
  1239. $info['ps_info']['cdate'] = date('Y-m-d H:i', $info['ps_info']['cdate']);
  1240. if ($info['ps_info']['ydate']) {
  1241. $info['ps_info']['ydate'] = date('Y-m-d H:i', $info['ps_info']['ydate']);
  1242. } else {
  1243. $info['ps_info']['ydate'] = '无';
  1244. }
  1245. $ps_status = Dever::db('shop/buy_order_ps')->config['status'];
  1246. $info['ps_info']['status_name'] = $status[$info['ps_info']['status']];
  1247. if ($info['ps_info']['service_id'] > 0) {
  1248. //暂时还没有
  1249. $service = Dever::db('shop/service')->find($info['ps_info']['service_id']);
  1250. $info['ps_info']['service_name'] = $service['name'];
  1251. }
  1252. $info['ps_info']['order_num'] = str_replace("\r\n", ',', $info['ps_info']['order_num']);
  1253. }
  1254. $pdf = Dever::load('pdf/lib/base')->init();
  1255. $pdf->hr('-', $main_config['name']);
  1256. $pdf->br()->font(20)->center('订货单号:' . $info['order_num']);
  1257. $pdf->font(10);
  1258. $pdf->br();
  1259. $pdf->br()->left($name . ':' . $type_info['name'], 80)->left('制单人:' . $member['name'], 60)->left('制单时间:' . date('Y-m-d H:i'), 40);
  1260. $pdf->hr();
  1261. if ($type == 2 && $info['type'] == 2) {
  1262. $pdf->br()->left('订单状态:' . $status, 140)->left('订货时间:' . $operdate, 40);
  1263. $pdf->hr();
  1264. if (!$info['ps_info']) {
  1265. $pdf->left('发货供应商:' . $source_info['name']);
  1266. } else {
  1267. $pdf->br()->left('发货供应商:' . $source_info['name'], 140)->left('发货时间:' . $info['ps_info']['cdate'], 40);
  1268. }
  1269. if ($info['ps_info']) {
  1270. $pdf->br()->left('物流信息:' . $info['ps_info']['service_name'] . ' 物流单号:' . $info['ps_info']['order_num'], 140)->left('确认收货时间:' . $info['ps_info']['ydate'], 40);
  1271. }
  1272. $pdf->hr();
  1273. } else {
  1274. $pdf->br()->left('订单状态:' . $status, 80)->left('订货人:' . $type_info['truename'], 60)->left('订货时间:' . $operdate, 40);
  1275. $pdf->hr();
  1276. $pdf->br()->left('配送至:' . $type_info['name'], 150)->right('收件人联系方式:' . $type_info['truename'] . ',' . $type_info['mobile'], 40);
  1277. $pdf->left('配送地址:' . $type_info['address']);
  1278. $pdf->hr();
  1279. if ($info['ps_info']) {
  1280. $pdf->br()->left('发货时间:' . $info['ps_info']['cdate'], 80)->left('配货员:' . $info['ps_info']['phy'], 70)->left('打包员:' . $info['ps_info']['dby'], 40);
  1281. if ($info['ps_info']['zl'] && $info['ps_info']['tj']) {
  1282. $pdf->br()->left('包裹重量:' . $info['ps_info']['zl'] . '克', 80)->left('包裹体积:' . $info['ps_info']['tj'] . '立方厘米', 70)->left('包裹数量:' . $info['ps_info']['num'], 40);
  1283. } elseif (!$info['ps_info']['zl'] && $info['ps_info']['tj']) {
  1284. $pdf->br()->left('包裹体积:' . $info['ps_info']['tj'] . '立方厘米', 150)->left('包裹数量:' . $info['ps_info']['num'], 40);
  1285. } elseif ($info['ps_info']['zl'] && !$info['ps_info']['tj']) {
  1286. $pdf->br()->left('包裹重量:' . $info['ps_info']['zl'] . '克', 150)->left('包裹数量:' . $info['ps_info']['num'], 40);
  1287. } else {
  1288. $pdf->left('包裹数量:' . $info['ps_info']['num']);
  1289. }
  1290. $pdf->br()->left('物流信息:' . $info['ps_info']['service_name'], 40);
  1291. if ($info['ps_info']['order_num']) {
  1292. $pdf->left('物流单号:' . $info['ps_info']['order_num'], 70);
  1293. }
  1294. if ($info['ps_info']['ydate']) {
  1295. $pdf->left('到货确认时间:' . $info['ps_info']['ydate']);
  1296. }
  1297. $pdf->hr();
  1298. }
  1299. }
  1300. $body = array();
  1301. $body_total = array();
  1302. $body_total['price'] = 0;
  1303. $body_total['num'] = 0;
  1304. $goods = Dever::db('shop/buy_order_goods')->select(array('order_id' => $info['id']));
  1305. $goods_status = Dever::db('shop/buy_order_goods')->config['status'];
  1306. $refund_body = array();
  1307. $refund_body_total = array();
  1308. $refund_body_total['price'] = 0;
  1309. $refund_body_total['num'] = 0;
  1310. foreach ($goods as $k => $v) {
  1311. if ($type == 1) {
  1312. $v['price'] = $v['p_price'];
  1313. }
  1314. $goods_info = Dever::load('goods/lib/info')->getInfoBySku($v['goods_id'], $v['sku_id']);
  1315. $status = $goods_status[$v['status']];
  1316. $tk = Dever::db('shop/buy_order_refund')->find(array('order_id' => $info['id'], 'order_goods_id' => $v['id'], 'type' => 2));
  1317. if (isset($goods_info['sku'])) {
  1318. $sku = $goods_info['sku']['string'];
  1319. } else {
  1320. $sku = '无';
  1321. }
  1322. $d = array
  1323. (
  1324. $goods_info['id'],
  1325. $goods_info['name'],
  1326. $sku,
  1327. $v['price'],
  1328. 'x ' . $v['num'],
  1329. );
  1330. if ($type == 2) {
  1331. unset($d[3]);
  1332. }
  1333. if ($tk && $v['status'] == 3 && $tk['status'] != 3) {
  1334. $refund_body[] = $d;
  1335. $price = $v['price']*$v['num'];
  1336. $refund_body_total['price'] += $price;
  1337. $refund_body_total['num'] += $v['num'];
  1338. } else {
  1339. $body[] = $d;
  1340. $price = $v['price']*$v['num'];
  1341. $body_total['price'] += $price;
  1342. $body_total['num'] += $v['num'];
  1343. }
  1344. }
  1345. $head = array(array('商品编号', 40), array('商品名称', 60), array('商品属性', 40), array('单价', 40), array('数量', 20));
  1346. if ($type == 2) {
  1347. unset($head[3]);
  1348. $head[1][1] = 70;
  1349. $head[2][1] = 60;
  1350. }
  1351. if ($body) {
  1352. $pdf->center('订单商品');
  1353. $pdf->br();
  1354. foreach ($head as $k => $v) {
  1355. $pdf->left($v[0], $v[1]);
  1356. }
  1357. foreach ($body as $k => $v) {
  1358. $pdf->br();
  1359. foreach ($head as $k1 => $v1) {
  1360. $pdf->left($v[$k1], $v1[1]);
  1361. }
  1362. }
  1363. $pdf->br();
  1364. if ($type == 2) {
  1365. $pdf->right('共'.$body_total['num'].'件商品');
  1366. } else {
  1367. $pdf->right('共'.$body_total['num'].'件商品,合计金额¥' . $body_total['price'] . '元');
  1368. }
  1369. $pdf->hr();
  1370. }
  1371. if ($refund_body) {
  1372. $pdf->center('缺货与报损商品');
  1373. $pdf->br();
  1374. foreach ($head as $k => $v) {
  1375. $pdf->left($v[0], $v[1]);
  1376. }
  1377. foreach ($refund_body as $k => $v) {
  1378. $pdf->br();
  1379. foreach ($head as $k1 => $v1) {
  1380. $pdf->left($v[$k1], $v1[1]);
  1381. }
  1382. }
  1383. $pdf->br();
  1384. if ($type == 2) {
  1385. $pdf->right('共'.$refund_body_total['num'].'件商品');
  1386. } else {
  1387. $pdf->right('共'.$refund_body_total['num'].'件商品,合计金额¥' . $refund_body_total['price'] . '元');
  1388. }
  1389. $pdf->hr();
  1390. }
  1391. $pdf->br(1);
  1392. $pdf->right('如遇任何问题请致电客服');
  1393. $pdf->br();
  1394. $pdf->font(20);
  1395. $pdf->left($main_config['name'], 160);
  1396. $pdf->font(10);
  1397. $pdf->right('电话:' . $factory_config['phone'], 30);
  1398. $pdf->br();
  1399. $pdf->left($main_config['site'], 160);
  1400. $pdf->font(10);
  1401. $pdf->right($main_config['worktime'], 30);
  1402. $pdf->out('订货单');
  1403. }
  1404. }