Buy.php 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271
  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 setOutStatus($id, $type = 1)
  45. {
  46. if ($type == 1) {
  47. $data['out_status'] = 2;
  48. $data['out_date'] = time();
  49. } else {
  50. $data['source_out_status'] = 2;
  51. $data['source_out_date'] = time();
  52. }
  53. $data['where_id'] = $id;
  54. Dever::db('shop/buy_order')->update($data);
  55. }
  56. # 获取订单列表
  57. public function getList($id, $status = false)
  58. {
  59. $result = array();
  60. $where = $this->where($id);
  61. $status = Dever::input('status', $status);
  62. if ($status) {
  63. if ($status == 'refund') {
  64. $where['refund_status'] = 2;
  65. } else {
  66. $where['status'] = $status;
  67. }
  68. }
  69. $order_num = Dever::input('order_num');
  70. if ($order_num) {
  71. $where['order_num'] = $order_num;
  72. }
  73. $refund_status = Dever::input('refund_status');
  74. if ($refund_status) {
  75. $where['refund_status'] = $refund_status;
  76. }
  77. $result['search_value'] = $where;
  78. $result['search_value']['day'] = $day = Dever::input('day');
  79. if ($day) {
  80. if ($this->type > 10) {
  81. $where['start_o'] = Dever::maketime($day . ' 00:00:00');
  82. $where['end_o'] = Dever::maketime($day . ' 23:59:59');
  83. } elseif ($this->type == 2) {
  84. $where['start_f'] = Dever::maketime($day . ' 00:00:00');
  85. $where['end_f'] = Dever::maketime($day . ' 23:59:59');
  86. } else {
  87. $where['start'] = Dever::maketime($day . ' 00:00:00');
  88. $where['end'] = Dever::maketime($day . ' 23:59:59');
  89. }
  90. }
  91. $result['search_value']['start'] = $start = Dever::input('start');
  92. $result['search_value']['end'] = $end = Dever::input('end');
  93. if ($start && $end) {
  94. if ($this->type > 10) {
  95. $where['start_o'] = Dever::maketime($start);
  96. $where['end_o'] = Dever::maketime($end);
  97. } elseif ($this->type == 2) {
  98. $where['start_f'] = Dever::maketime($start);
  99. $where['end_f'] = Dever::maketime($end);
  100. } else {
  101. $where['start'] = Dever::maketime($start);
  102. $where['end'] = Dever::maketime($end);
  103. }
  104. }
  105. $type = Dever::input('type');
  106. if ($type) {
  107. $where['type'] = $type;
  108. }
  109. $source_type = Dever::input('source_type');
  110. if ($source_type) {
  111. $where['source_type'] = $source_type;
  112. }
  113. $parent_type = Dever::input('parent_type');
  114. if ($parent_type) {
  115. $where['parent_type'] = $parent_type;
  116. }
  117. $out_status = Dever::input('out_status');
  118. if ($out_status) {
  119. $where['out_status'] = $out_status;
  120. }
  121. $source_out_status = Dever::input('source_out_status');
  122. if ($source_out_status) {
  123. $where['source_out_status'] = $source_out_status;
  124. }
  125. $excel = Dever::input('excel', 1);
  126. if ($excel == 2) {
  127. $result['order'] = Dever::db($this->table)->getData($where);
  128. } else {
  129. $result['order'] = Dever::db($this->table)->getAll($where);
  130. }
  131. if ($result['order']) {
  132. foreach ($result['order'] as $k => $v) {
  133. $result['order'][$k] = $this->getInfo($v);
  134. }
  135. }
  136. $result['search'] = array();
  137. $result['search']['status'] = array
  138. (
  139. array('value' => 1, 'name' => '待支付'),
  140. array('value' => 2, 'name' => '待审核'),
  141. array('value' => 3, 'name' => '待发货'),
  142. array('value' => 4, 'name' => '待收货确认'),
  143. array('value' => 5, 'name' => '已完成'),
  144. array('value' => 6, 'name' => '已完成(有退款)'),
  145. array('value' => '7,8,11', 'name' => '已取消'),
  146. );
  147. $result['config'] = Dever::db('main/manage_config')->find();
  148. return $result;
  149. }
  150. # 查看详情
  151. public function getView($id, $order_id, $show = true)
  152. {
  153. $where = $this->where($id);
  154. $where['id'] = $order_id;
  155. $result = Dever::db($this->table)->find($where);
  156. if (!$result) {
  157. Dever::alert('订单不存在');
  158. }
  159. if ($show) {
  160. $result = $this->getInfo($result, true);
  161. }
  162. $result['config'] = Dever::db('main/manage_config')->find();
  163. return $result;
  164. }
  165. # 查看退款详情
  166. public function getRefund($id, $order_id)
  167. {
  168. $data = $this->getView($id, $order_id, false);
  169. $data['refund'] = Dever::db('shop/buy_order_refund')->select(array('order_id' => $info['id']));
  170. return $data;
  171. }
  172. # 获取订单详细信息
  173. public function getInfo($info, $view = false)
  174. {
  175. if ($info['status'] == 1) {
  176. # 15分钟内支付,900秒
  177. $m = 900;
  178. # 支付倒计时
  179. $info['time'] = time() - $info['cdate'];
  180. if ($info['time'] >= $m) {
  181. # 已过期,自动取消
  182. $info['time'] = -1;
  183. Dever::db($this->table)->update(array('where_id' => $info['id'], 'status' => 11));
  184. $info['status'] = 11;
  185. } else {
  186. $info['time'] = $m - $info['time'];
  187. }
  188. }
  189. $info['status_name'] = $this->config['status'][$info['status']];
  190. $info['goods'] = Dever::db('shop/buy_order_goods')->select(array('order_id' => $info['id']));
  191. if ($info['type'] == 1) {
  192. $info['type_info'] = Dever::db('shop/info')->getOne($info['type_id']);
  193. } elseif ($info['type'] == 2) {
  194. $info['type_info'] = Dever::db('store/info')->find($info['type_id']);
  195. } elseif ($info['type'] == 3) {
  196. $info['type_info'] = Dever::db('factory/info')->find($info['type_id']);
  197. }
  198. if ($info['source_type'] == 1) {
  199. $info['source_info'] = Dever::db('shop/info')->getOne($info['source_id']);
  200. } elseif ($info['source_type'] == 2) {
  201. $info['source_info'] = Dever::db('store/info')->find($info['source_id']);
  202. } elseif ($info['source_type'] == 3) {
  203. $info['source_info'] = Dever::db('factory/info')->find($info['source_id']);
  204. }
  205. $info['cdate_day'] = date('Y-m-d', $info['cdate']);
  206. $info['cdate'] = date('Y-m-d H:i', $info['cdate']);
  207. if ($info['operdate']) {
  208. $info['operdate_day'] = date('Y-m-d', $info['operdate']);
  209. $info['operdate'] = date('Y-m-d H:i', $info['operdate']);
  210. } else {
  211. $info['operdate_day'] = $info['cdate_day'];
  212. $info['operdate'] = $info['cdate'];
  213. }
  214. $goods_status = Dever::db('shop/buy_order_goods')->config['status'];
  215. $goods_process = Dever::db('shop/buy_order_refund')->config['process'];
  216. if ($view || $this->view == 2) {
  217. foreach ($info['goods'] as $k => $v) {
  218. $info['goods'][$k]['info'] = Dever::load('goods/lib/info')->getPayInfo($v['goods_id'], $v['sku_id']);
  219. $info['goods'][$k]['status_name'] = $goods_status[$v['status']];
  220. }
  221. } else {
  222. foreach ($info['goods'] as $k => $v) {
  223. $goods = Dever::db('goods/info')->one($v['goods_id']);
  224. $info['goods'][$k]['name'] = $goods['name'];
  225. $info['goods'][$k]['cover'] = $goods['cover'];
  226. $info['goods'][$k]['status_name'] = $goods_status[$v['status']];
  227. }
  228. }
  229. if (!$info['refund_cash']) {
  230. $info['refund_cash'] = 0;
  231. }
  232. # 配送信息
  233. $info['ps_info'] = Dever::db('shop/buy_order_ps')->find(array('order_id' => $info['id']));
  234. if ($info['ps_info']) {
  235. $info['ps_info']['service'] = Dever::array_decode($info['ps_info']['service']);
  236. $info['ps_info']['cdate_day'] = date('Y-m-d', $info['ps_info']['cdate']);
  237. $info['ps_info']['cdate'] = date('Y-m-d H:i', $info['ps_info']['cdate']);
  238. $info['ps_info']['ydate_day'] = '-';
  239. if ($info['ps_info']['ydate']) {
  240. $info['ps_info']['ydate_day'] = date('Y-m-d', $info['ps_info']['ydate']);
  241. $info['ps_info']['ydate'] = date('Y-m-d H:i', $info['ps_info']['ydate']);
  242. }
  243. $status = Dever::db('shop/buy_order_ps')->config['status'];
  244. $info['ps_info']['status_name'] = $status[$info['ps_info']['status']];
  245. if ($info['ps_info']['service']) {
  246. foreach ($info['ps_info']['service'] as $k => $v) {
  247. $info['ps_info']['service'][$k]['service_name'] = '供应商自送';
  248. if ($v['service_id'] > 0) {
  249. $service = Dever::db('shop/service')->find($v['service_id']);
  250. $info['ps_info']['service'][$k]['service_name'] = $service['name'];
  251. }
  252. }
  253. }
  254. }
  255. return $info;
  256. }
  257. # 发起支付
  258. public function action($uid, $type, $type_id, $name, $num, $goods, $price, $info, $refer = '', $area = '')
  259. {
  260. $openid = false;
  261. if ($uid > 0) {
  262. $wechat = Dever::db('passport/wechat')->one(array('uid' => $uid, 'type' => 1, 'system_id' => 2));
  263. if (!$wechat) {
  264. Dever::alert('错误的用户信息');
  265. }
  266. $openid = $wechat['openid'];
  267. }
  268. $order_data['type'] = $type;
  269. $order_data['type_id'] = $type_id;
  270. if ($area) {
  271. $order_data['area'] = $area . ',' . $type_id;
  272. }
  273. $order_data['name'] = $name;
  274. $order_data['num'] = $num;
  275. $order_data['info'] = $info;
  276. $order_data['price'] = $price;
  277. $order_data['order_num'] = $this->getOrderId();
  278. $order_data['refund_cash'] = 0;
  279. $order_data['refund_p_cash'] = 0;
  280. $id = Dever::db('shop/buy_order')->insert($order_data);
  281. if (!$id) {
  282. Dever::alert('支付失败');
  283. }
  284. foreach($goods as $k => $v) {
  285. $data['order_id'] = $id;
  286. $data['goods_id'] = $v['id'];
  287. $data['sku_id'] = $v['sku_id'];
  288. $data['price'] = $v['price'];
  289. $data['num'] = $v['buy_num'];
  290. Dever::db('shop/buy_order_goods')->insert($data);
  291. }
  292. if ($price <= 0) {
  293. $param['pay_product_id'] = $id;
  294. $param['pay_order_id'] = $order_data['order_num'];
  295. $param['pay_status'] = 2;
  296. $param['pay_cash'] = $price;
  297. $param['pay_msg'] = '';
  298. $this->success($param);
  299. return array
  300. (
  301. 'order' => '',
  302. 'order_num' => $order_data['order_num'],
  303. 'order_id' => $id,
  304. 'type' => 'pay',
  305. );
  306. }
  307. $param = array
  308. (
  309. 'project_id' => 2,
  310. 'channel_id' => 1,
  311. 'system_source' => 5,
  312. 'account_id' => 7,
  313. 'uid' => $uid,
  314. 'name' => $order_data['name'],
  315. 'openid' => $openid,
  316. 'cash' => $price,
  317. 'product_id' => $id,
  318. 'order_id' => $order_data['order_num'],
  319. 'refer' => $refer,
  320. );
  321. $receipt = Dever::input('receipt');
  322. if ($receipt) {
  323. $param['receipt'] = $receipt;
  324. }
  325. $result = Dever::load('pay/api.pay', $param);
  326. //$result['type'] = 'test';
  327. //$result['order'] = '';
  328. $result['order_num'] = $order_data['order_num'];
  329. $result['order_id'] = $id;
  330. return $result;
  331. }
  332. # 再次发起支付
  333. public function raction($id, $refer = '')
  334. {
  335. $order = Dever::db('shop/buy_order')->find($id);
  336. if (!$order) {
  337. Dever::alert('订单信息错误');
  338. }
  339. if ($order['status'] > 1) {
  340. Dever::alert('订单已支付或已取消');
  341. }
  342. $param = array
  343. (
  344. 'project_id' => 2,
  345. 'channel_id' => 1,
  346. 'system_source' => 5,
  347. 'account_id' => 7,
  348. 'uid' => -1,
  349. 'name' => $order['name'],
  350. 'cash' => $order['price'],
  351. 'product_id' => $id,
  352. 'order_id' => $order['order_num'],
  353. 'refer' => $refer,
  354. );
  355. $receipt = Dever::input('receipt');
  356. if ($receipt) {
  357. $param['receipt'] = $receipt;
  358. }
  359. $result = Dever::load('pay/api.pay', $param);
  360. $result['order_num'] = $order['order_num'];
  361. $result['order_id'] = $id;
  362. return $result;
  363. }
  364. # 查询是否支付
  365. public function cpay($id, $system_source = 5, $refer = '')
  366. {
  367. $order = Dever::db('shop/buy_order')->find($id);
  368. if (!$order) {
  369. Dever::alert('订单信息错误');
  370. }
  371. $result['order_num'] = $order['order_num'];
  372. $result['order_id'] = $id;
  373. if ($order['status'] > 1 && $order['status'] <= 6) {
  374. # 已支付
  375. $result['status'] = 1;
  376. } else {
  377. # 待支付
  378. $result['status'] = 2;
  379. }
  380. return $result;
  381. }
  382. # 支付成功回调 安全加密 设置token
  383. public function success_secure_api_token()
  384. {
  385. $project_id = Dever::input('pay_project_id');
  386. $info = Dever::db('pay/project')->one($project_id);
  387. if ($info) {
  388. return $info['key'];
  389. }
  390. return 'shop_buy_dever_2020';
  391. }
  392. # 支付成功回调 安全加密
  393. public function success_secure_api($param = array())
  394. {
  395. $this->success($param);
  396. }
  397. # 支付成功回调
  398. public function success($param = array())
  399. {
  400. $send = $param ? $param : Dever::preInput('pay_');
  401. $product_id = $send['pay_product_id'];
  402. $order_id = $send['pay_order_id'];
  403. $status = $send['pay_status'];
  404. $cash = $send['pay_cash'];
  405. $msg = $send['pay_msg'];
  406. $order = Dever::db('shop/buy_order')->one(array('id' => $product_id, 'time' => time()));
  407. if ($order && $order['status'] == 1 && $status == 2) {
  408. $update['status'] = 2;
  409. $update['where_id'] = $order['id'];
  410. Dever::db('shop/buy_order')->update($update);
  411. # 生成结算单
  412. Dever::load('cash/lib/order')->up($order, 1, 1);
  413. }
  414. return 'ok';
  415. }
  416. # 生成订单号
  417. public function getOrderId()
  418. {
  419. $where['order_num'] = Dever::order('C');
  420. $state = Dever::db('shop/buy_order')->one($where);
  421. if (!$state) {
  422. return $where['order_num'];
  423. } else {
  424. return $this->getOrderId();
  425. }
  426. }
  427. # 添加配送信息
  428. public function updatePs($order, $status = 1)
  429. {
  430. $where['order_id'] = $order['id'];
  431. $data = Dever::db('shop/buy_order_ps')->find($where);
  432. if ($data) {
  433. $update['where_id'] = $data['id'];
  434. $update['status'] = $status;
  435. $update['ydate'] = time();
  436. Dever::db('shop/buy_order_ps')->update($update);
  437. }
  438. }
  439. # 确认收货
  440. public function finish($id, $order_id)
  441. {
  442. $data = $this->getView($id, $order_id, false);
  443. if ($data['status'] <= 4) {
  444. if ($data['refund_cash'] > 0) {
  445. $status = 6;
  446. } else {
  447. $status = 5;
  448. }
  449. $state = Dever::db('shop/buy_order')->update(array('where_id' => $data['id'], 'status' => $status, 'fdate' => time()));
  450. if ($state) {
  451. $this->updatePs($data, 3);
  452. # 增加库存
  453. $where['order_id'] = $data['id'];
  454. $where['status'] = 1;
  455. $goods = Dever::db('shop/buy_order_goods')->select($where);
  456. if ($goods) {
  457. Dever::load('shop/lib/goods')->oper($data, 1, 1, $goods);
  458. }
  459. # 生成结算单
  460. Dever::load('cash/lib/order')->up($data, 1, 2);
  461. }
  462. return 'ok';
  463. } else {
  464. Dever::alert('您没有权限');
  465. }
  466. }
  467. # 取消订单
  468. public function cancel($id, $order_id)
  469. {
  470. $data = $this->getView($id, $order_id, false);
  471. if ($data['status'] == 1) {
  472. $state = Dever::db('shop/buy_order')->update(array('where_id' => $data['id'], 'status' => 7, 'operdate' => time()));
  473. # 生成结算单
  474. if ($state) {
  475. //Dever::load('cash/lib/order')->up($data, 1, 3);
  476. }
  477. return 'ok';
  478. } else {
  479. Dever::alert('当前订单状态不允许取消');
  480. }
  481. }
  482. # 查看订单状态
  483. public function orderStatus($id)
  484. {
  485. $config = Dever::db('shop/buy_order')->config;
  486. $info = Dever::db('shop/buy_order')->one($id);
  487. $tk = Dever::db('shop/buy_order_refund')->find(array('order_id' => $info['id'], 'process' => 1));
  488. $status = $config['status'][$info['status']];
  489. if ($tk) {
  490. $status = '申请退款中';
  491. }
  492. return $status;
  493. }
  494. # 后台审核退款
  495. public function refund_commit_api()
  496. {
  497. $id = Dever::input('id');
  498. $process = Dever::input('process');
  499. return Dever::load('shop/lib/refund')->set('buy')->action($id, $process, false);
  500. }
  501. # 货物未发出,仅退款
  502. public function refund_apply_commit_api()
  503. {
  504. $order_id = Dever::input('order_id');
  505. $type = Dever::input('type');
  506. $type_id = Dever::input('type_id');
  507. $desc = Dever::input('desc');
  508. $pic = Dever::input('pic');
  509. return Dever::load('shop/lib/refund')->set('buy')->apply($type, $type_id, $order_id, false, 3, 0, $desc, $pic, 2);
  510. }
  511. # 货物已收到 全部退款 报损 需要审核
  512. public function refund_apply_info_commit_api()
  513. {
  514. $order_id = Dever::input('order_id');
  515. $status = Dever::input('status');
  516. $desc = Dever::input('desc');
  517. $pic = Dever::input('pic');
  518. $type = Dever::input('type');
  519. $type_id = Dever::input('type_id');
  520. return Dever::load('shop/lib/refund')->set('buy')->apply($type, $type_id, $order_id, false, $status, 0, $desc, $pic, 1);
  521. }
  522. # 部分退款信息 报损
  523. public function refund_apply_info_one_info()
  524. {
  525. $order_id = Dever::input('order_id');
  526. $order_goods_id = Dever::input('order_goods_id');
  527. $type = Dever::input('type');
  528. $type_id = Dever::input('type_id');
  529. return Dever::load('shop/lib/refund')->set('buy')->getInfo($type, $type_id, $order_id, $order_goods_id);
  530. }
  531. # 部分退款 报损
  532. public function refund_apply_info_one_commit_api()
  533. {
  534. $order_id = Dever::input('order_id');
  535. $order_goods_id = Dever::input('order_goods_id');
  536. $num = Dever::input('num', 0);
  537. $status = Dever::input('status');
  538. $desc = Dever::input('desc');
  539. $pic = Dever::input('pic');
  540. $type = Dever::input('type');
  541. $type_id = Dever::input('type_id');
  542. return Dever::load('shop/lib/refund')->set('buy')->apply($type, $type_id, $order_id, $order_goods_id, $status, $num, $desc, $pic, 1);
  543. }
  544. # 展示订单详情
  545. public function show()
  546. {
  547. $id = Dever::input('order_id');
  548. $type = 1;
  549. $type = Dever::input('search_option_type', $type);
  550. $type = Dever::input('type', $type);
  551. $noprice = Dever::input('noprice', 2);
  552. if ($type == 3) {
  553. $noprice = 1;
  554. }
  555. $cash_type = Dever::input('cash', 1);
  556. $config = Dever::db('shop/buy_order')->config;
  557. $info = Dever::db('shop/buy_order')->one($id);
  558. $tk_status = Dever::db('shop/buy_order_refund')->config['status'];
  559. $tk_process = Dever::db('shop/buy_order_refund')->config['process'];
  560. $status = $config['status'][$info['status']];
  561. $tk = Dever::db('shop/buy_order_refund')->find(array('order_id' => $info['id'], 'type' => 1));
  562. $cdate = date('Y-m-d H:i', $info['cdate']);
  563. if ($info['operdate']) {
  564. $operdate = date('Y-m-d H:i', $info['operdate']);
  565. } else {
  566. $operdate = '';
  567. }
  568. if ($info['fdate']) {
  569. $fdate = date('Y-m-d H:i', $info['fdate']);
  570. } else {
  571. $fdate = '';
  572. }
  573. if ($type == 2 || $info['type'] == 2) {
  574. $info['price'] = $info['p_price'];
  575. }
  576. if ($info['refund_status'] == 2 && $info['status'] != 8) {
  577. $status .= '[申请报损中]';
  578. }
  579. $time = array();
  580. if ($type == 1) {
  581. $time[] = array('下单时间', $cdate);
  582. $time[] = array('订货时间', $operdate);
  583. } else {
  584. $time[] = array('订货时间', $operdate);
  585. }
  586. if ($fdate) {
  587. $time[] = array('完成时间', $fdate);
  588. }
  589. if ($info['type'] == 1) {
  590. $type_info = Dever::db('shop/info')->find($info['type_id']);
  591. } elseif ($info['type'] == 2) {
  592. $type_info = Dever::db('store/info')->find($info['type_id']);
  593. } elseif ($info['type'] == 3) {
  594. $type_info = Dever::db('store/info')->find($info['type_id']);
  595. }
  596. $result = array();
  597. $result[$info['order_num']] = array
  598. (
  599. 'type' => 'info',
  600. 'content' => array
  601. (
  602. array
  603. (
  604. array('订单状态', $status),
  605. ),
  606. $time,
  607. )
  608. );
  609. $parent_order = array();
  610. if ($info['parent_type'] == 2) {
  611. $parent_order = Dever::db('shop/sell_order')->find($info['parent_order_id']);
  612. }
  613. if ($parent_order && $parent_order['uid']) {
  614. if ($parent_order['address_id']) {
  615. $address = Dever::load('passport/address')->getOne($parent_order['uid'], $parent_order['address_id']);
  616. $result[$info['order_num']]['content'][] = array
  617. (
  618. array('收件人', $address['contact']),
  619. array('收件人手机', $address['mobile']),
  620. );
  621. $result[$info['order_num']]['content'][] = array
  622. (
  623. array('收货地址', $address['address_info']),
  624. array('门牌号', $address['house_number']),
  625. );
  626. } else {
  627. $user = Dever::db('passport/user')->find($parent_order['uid']);
  628. $result[$info['order_num']]['content'][] = array
  629. (
  630. array('收件人', $user['username']),
  631. array('收件人手机', $user['mobile']),
  632. );
  633. }
  634. } else {
  635. $result[$info['order_num']]['content'][] = array
  636. (
  637. array('配送至', $type_info['name']),
  638. array('配送地址', $type_info['address']),
  639. );
  640. $result[$info['order_num']]['content'][] = array
  641. (
  642. array('联系人', $type_info['truename']),
  643. array('联系电话', $type_info['mobile']),
  644. array('订单备注', $info['info']),
  645. );
  646. }
  647. if ($type == 1 && $info['source_id'] > 0) {
  648. if ($info['source_type'] == 2) {
  649. # 仓库
  650. $source_info = Dever::db('store/info')->find($info['source_id']);
  651. } elseif ($info['source_type'] == 3) {
  652. # 工厂
  653. $source_info = Dever::db('factory/info')->find($info['source_id']);
  654. }
  655. $result[$info['order_num']]['content'][] = array
  656. (
  657. array('供应商', $source_info['name']),
  658. array('联系人', $source_info['truename']),
  659. array('联系电话', $source_info['mobile']),
  660. );
  661. }
  662. $button = array();
  663. if ($type == 2) {
  664. $config = Dever::load('factory/admin/auth.config');
  665. if ($info['status'] < 5) {
  666. $button[] = array
  667. (
  668. 'type' => 'link',
  669. 'link' => Dever::url('admin/order.print?id=' . $info['id'] . '&type=1', 'factory'),
  670. 'name' => '打印货单',
  671. );
  672. }
  673. if ($info['status'] == 3) {
  674. $button[] = array
  675. (
  676. 'type' => 'edit',
  677. 'link' => Dever::url('order_send?id=' . $info['id'], 'factory'),
  678. 'name' => '配送发货',
  679. );
  680. if ($parent_order && $parent_order['uid']) {
  681. } else {
  682. $button[] = array
  683. (
  684. 'type' => 'cancel',
  685. 'link' => Dever::url('lib/buy.refund_apply_commit?json=1&order_id=' . $info['id'] . '&type_id=' . $info['source_id'], 'mshop'),
  686. 'name' => '取消订单',
  687. );
  688. }
  689. }
  690. $config['phone'] = '您的专属客服:' . $config['kf_name'] . ',联系电话:' . $config['phone'];
  691. $button[] = array
  692. (
  693. 'type' => 'alert',
  694. 'content' => $config['phone'],
  695. 'name' => '联系平台',
  696. );
  697. } elseif ($type != 1 && $noprice == 1) {
  698. $config = Dever::load('factory/admin/auth.config');
  699. $button[] = array
  700. (
  701. 'type' => 'link',
  702. 'link' => Dever::url('admin/order.print?id=' . $info['id'] . '&type=2', 'store'),
  703. 'name' => '打印货单',
  704. );
  705. /*
  706. if ($info['type'] == 2 && $info['source_type'] != 2 && in_array($info['status'], array(5,6,8))) {
  707. $button[] = array
  708. (
  709. 'type' => 'link',
  710. 'link' => Dever::url('lib/buy.excel_one?type='.$info['type'].'&type_id='.$info['type_id'].'&id='.$info['id'], 'mshop'),
  711. 'name' => '导出货单',
  712. );
  713. }
  714. */
  715. $store_type = Dever::input('store_type');
  716. if ($info['status'] == 3 && $store_type == 1) {
  717. $button[] = array
  718. (
  719. 'type' => 'edit',
  720. 'link' => Dever::url('order_send?id=' . $info['id'] . '&type=2', 'store'),
  721. 'name' => '配送发货',
  722. );
  723. if ($parent_order && $parent_order['uid']) {
  724. } else {
  725. $button[] = array
  726. (
  727. 'type' => 'cancel',
  728. 'link' => Dever::url('lib/buy.refund_apply_commit?json=1&order_id=' . $info['id'] . '&type_id=' . $info['source_id'], 'mshop'),
  729. 'name' => '取消订单',
  730. );
  731. }
  732. }
  733. if ($info['status'] == 4 && $info['type'] == 2) {
  734. $button[] = array
  735. (
  736. 'type' => 'action',
  737. 'link' => Dever::url('admin/factory_order.action_commit?order_id='.$info['id'], 'store'),
  738. 'name' => '确认收货',
  739. );
  740. }
  741. $config['phone'] = '您的专属客服:' . $config['kf_name'] . ',联系电话:' . $config['phone'];
  742. $button[] = array
  743. (
  744. 'type' => 'alert',
  745. 'content' => $config['phone'],
  746. 'name' => '联系平台',
  747. );
  748. }
  749. $url = Dever::url('lib/buy.refund_commit?json=1', 'mshop');
  750. if (!$info['refund_cash']) {
  751. $info['refund_cash'] = 0;
  752. }
  753. if ($info['refund_cash'] > 0 && $tk) {
  754. if ($type == 2) {
  755. $info['refund_cash'] = $info['refund_p_cash'];
  756. }
  757. if ($tk['process'] == 1) {
  758. $process = '<a href="javascript:;" onclick="audit('.$tk['id'].', 2, \''.$url.'\')" class="layui-btn layui-btn-primary">通过</a><a href="javascript:;" onclick="audit('.$tk['id'].', 3, \''.$url.'\')" class="layui-btn layui-btn-danger">驳回</a>';
  759. } else {
  760. $process = $tk_process[$tk['process']];
  761. }
  762. $desc = array();
  763. $desc['退款原因'] = $tk['desc'];
  764. $desc['退款图片'] = '暂无';
  765. if ($tk['pic']) {
  766. $pic = explode(',', $tk['pic']);
  767. $tk['pic'] = '';
  768. foreach ($pic as $k => $v) {
  769. $tk['pic'] .= '<a href="'.$v.'" target="_blank"><img src="'.$v.'" width="100"/></a>';
  770. }
  771. }
  772. ;
  773. $tk['cdate'] = date('Y-m-d H:i', $tk['cdate']);
  774. $result['退款信息'] = array
  775. (
  776. 'type' => 'info',
  777. 'content' => array
  778. (
  779. array
  780. (
  781. array('退款金额', $info['refund_cash']),
  782. array('数量', $info['num']),
  783. array('退款进度', $process),
  784. ),
  785. array
  786. (
  787. array('申请时间', $tk['cdate']),
  788. array('申请原因', $tk['desc']),
  789. array('图片', $tk['pic']),
  790. ),
  791. ),
  792. );
  793. }
  794. $info['ps_info'] = Dever::db('shop/buy_order_ps')->find(array('order_id' => $info['id']));
  795. if ($info['ps_info']) {
  796. $info['ps_info']['service'] = Dever::array_decode($info['ps_info']['service']);
  797. $info['ps_info']['cdate'] = date('Y-m-d H:i', $info['ps_info']['cdate']);
  798. if ($info['ps_info']['ydate']) {
  799. $info['ps_info']['ydate'] = date('Y-m-d H:i', $info['ps_info']['ydate']);
  800. } else {
  801. $info['ps_info']['ydate'] = '无';
  802. }
  803. $status = Dever::db('shop/buy_order_ps')->config['status'];
  804. $info['ps_info']['status_name'] = $status[$info['ps_info']['status']];
  805. $service = array();
  806. if ($info['ps_info']['service']) {
  807. foreach ($info['ps_info']['service'] as $k => $v) {
  808. $info['ps_info']['service'][$k]['service_name'] = '供应商自送';
  809. if ($v['service_id'] > 0) {
  810. $service_info = Dever::db('shop/service')->find($v['service_id']);
  811. $info['ps_info']['service'][$k]['service_name'] = $service_info['name'];
  812. }
  813. $service[] = array
  814. (
  815. array('名称', $info['ps_info']['service'][$k]['service_name']),
  816. array('单号', $v['order_num']),
  817. );
  818. }
  819. }
  820. $result['物流信息'] = array
  821. (
  822. 'type' => 'info',
  823. 'content' => array
  824. (
  825. array
  826. (
  827. array('发货时间', $info['ps_info']['cdate']),
  828. array('收货时间', $info['ps_info']['ydate']),
  829. array('查单', '<a href="https://www.kuaidi100.com/?from=openv" target="_blank">点此手动查单</a>'),
  830. ),
  831. ),
  832. );
  833. $result['物流信息']['content'] = array_merge($result['物流信息']['content'], $service);
  834. /*
  835. if ($noprice == 1) {
  836. $result['物流信息'] = array
  837. (
  838. 'type' => 'info',
  839. 'content' => array
  840. (
  841. array
  842. (
  843. array('名称', $info['ps_info']['service_name']),
  844. array('单号', $info['ps_info']['order_num']),
  845. ),
  846. array
  847. (
  848. array('数量', $info['ps_info']['num']),
  849. array('重量', $info['ps_info']['zl']),
  850. array('体积', $info['ps_info']['tj']),
  851. ),
  852. array
  853. (
  854. array('发货时间', $info['ps_info']['cdate']),
  855. array('收货时间', $info['ps_info']['ydate']),
  856. ),
  857. ),
  858. );
  859. } else {
  860. $result['物流信息'] = array
  861. (
  862. 'type' => 'info',
  863. 'content' => array
  864. (
  865. array
  866. (
  867. array('名称', $info['ps_info']['service_name']),
  868. array('单号', $info['ps_info']['order_num']),
  869. array('费用', $info['ps_info']['price']),
  870. ),
  871. array
  872. (
  873. array('配货员', $info['ps_info']['phy']),
  874. array('打包员', $info['ps_info']['dby']),
  875. ),
  876. array
  877. (
  878. array('数量', $info['ps_info']['num']),
  879. array('重量', $info['ps_info']['zl']),
  880. array('体积', $info['ps_info']['tj']),
  881. ),
  882. array
  883. (
  884. array('发货时间', $info['ps_info']['cdate']),
  885. array('收货时间', $info['ps_info']['ydate']),
  886. ),
  887. ),
  888. );
  889. }
  890. */
  891. }
  892. $body = array();
  893. $body_total = array();
  894. $body_total['price'] = 0;
  895. $body_total['num'] = 0;
  896. $goods = Dever::db('shop/buy_order_goods')->select(array('order_id' => $info['id']));
  897. $goods_status = Dever::db('shop/buy_order_goods')->config['status'];
  898. $refund_body = array();
  899. $refund_body_total = array();
  900. $refund_body_total['price'] = 0;
  901. $refund_body_total['num'] = 0;
  902. foreach ($goods as $k => $v) {
  903. if ($type == 2) {
  904. $v['price'] = $v['p_price'];
  905. }
  906. $goods_info = Dever::load('goods/lib/info')->getInfoBySku($v['goods_id'], $v['sku_id']);
  907. $status = $goods_status[$v['status']];
  908. $tk = Dever::db('shop/buy_order_refund')->find(array('order_id' => $info['id'], 'order_goods_id' => $v['id'], 'type' => 2));
  909. if ($tk && $tk['process'] == 1) {
  910. if ($type == 1) {
  911. $status = '申请' . $tk_status[$tk['status']];
  912. } else {
  913. $status = '已上报';
  914. }
  915. if ($type == 1) {
  916. $desc = array();
  917. $desc['退款原因'] = $tk['desc'];
  918. $desc['退款图片'] = '暂无';
  919. if ($tk['pic']) {
  920. $desc['退款图片'] = '';
  921. $pic = explode(',', $tk['pic']);
  922. foreach ($pic as $k1 => $v1) {
  923. $desc['退款图片'] .= '<a href="'.$v1.'" target="_blank"><img src="'.$v1.'" width="100"/></a>';
  924. }
  925. }
  926. $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>';
  927. $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>';
  928. }
  929. } elseif ($type > 1 && (!$tk || ($tk && $tk['process'] == 3))) {
  930. //$tui = Dever::url('lib/buy.refund_apply_info_one_commit?json=1', 'mshop');
  931. if ($type == 2) {
  932. $tui = Dever::url('order_tui?order_goods_id=' . $v['id'] . '&order_id=' . $info['id'] . '&type=13&type_id=' . $info['source_id'], 'factory');
  933. } else {
  934. if ($info['source_type'] == 3) {
  935. $tui = Dever::url('order_tui?order_goods_id=' . $v['id'] . '&order_id=' . $info['id'] . '&type=13&type_id=' . $info['source_id'], 'store');
  936. } else {
  937. $tui = Dever::url('order_tui?order_goods_id=' . $v['id'] . '&order_id=' . $info['id'] . '&type=12&type_id=' . $info['source_id'], 'store');
  938. }
  939. }
  940. if ($info['status'] == 3) {
  941. $status = '<a href="javascript:;" onclick="fastEdit($(this), \''.$tui.'\', \'缺货退款\', \'\', 1)" class="layui-btn">缺货退款</a>';
  942. } elseif ($info['status'] == 4) {
  943. $status = '<a href="javascript:;" onclick="fastEdit($(this), \''.$tui.'\', \'报损退款\', \'\', 1)" class="layui-btn">报损退款</a>';
  944. }
  945. }
  946. if (isset($goods_info['sku'])) {
  947. $sku = '[' . $goods_info['sku']['string'] . ']';
  948. } else {
  949. $sku = '';
  950. }
  951. $d = array
  952. (
  953. 'pic' => $goods_info['cover'],
  954. 'name' => $goods_info['name'],
  955. 'sku' => $sku,
  956. 'price' => $v['price'],
  957. 'num' => $v['num'],
  958. 'status' => $status,
  959. );
  960. if ($tk && $v['status'] == 3 && $tk['status'] != 3) {
  961. $d['status'] = $tk_status[$tk['status']];
  962. if ($noprice == 1) {
  963. unset($d['price']);
  964. }
  965. $refund_body[] = $d;
  966. $price = $v['price']*$v['num'];
  967. $refund_body_total['price'] += $price;
  968. $refund_body_total['num'] += $v['num'];
  969. } else {
  970. if ($noprice == 1) {
  971. unset($d['price']);
  972. }
  973. $body[] = $d;
  974. $price = $v['price']*$v['num'];
  975. $body_total['price'] += $price;
  976. $body_total['num'] += $v['num'];
  977. }
  978. }
  979. if ($body) {
  980. if ($refund_body_total['price']) {
  981. $body_total['set_price'] = $body_total['price'] - $refund_body_total['price'];
  982. }
  983. if ($refund_body_total['num']) {
  984. $body_total['set_num'] = $body_total['num'] - $refund_body_total['num'];
  985. }
  986. if ($noprice == 1) {
  987. unset($body_total['price']);
  988. unset($body_total['set_price']);
  989. }
  990. $result['商品清单'] = array
  991. (
  992. 'type' => 'list',
  993. 'content' => $body,
  994. 'total' => $body_total,
  995. );
  996. }
  997. if ($refund_body) {
  998. if ($noprice == 1) {
  999. unset($refund_body_total['price']);
  1000. }
  1001. $result['缺货与报损商品'] = array
  1002. (
  1003. 'type' => 'list',
  1004. 'content' => $refund_body,
  1005. 'total' => $refund_body_total,
  1006. );
  1007. }
  1008. $search_option_type = Dever::input('search_option_type');
  1009. if ($cash_type == 1) {
  1010. if ($search_option_type == 1) {
  1011. # 门店结算单
  1012. $cash_order = Dever::db('cash/order')->select(array('type' => $info['type'], 'type_id' => $info['type_id'], 'source_order_id' => $info['id']));
  1013. $col = 'cash';
  1014. } elseif ($search_option_type == 2) {
  1015. # 工厂结算单
  1016. $cash_order = Dever::db('cash/order')->select(array('source_type' => $info['source_type'], 'source_id' => $info['source_id'], 'source_order_id' => $info['id']));
  1017. $col = 'p_cash';
  1018. } elseif ($search_option_type == 3) {
  1019. # 仓库结算单
  1020. $cash_order = Dever::db('cash/order')->select(array('source_type' => $info['source_type'], 'source_id' => $info['source_id'], 'source_order_id' => $info['id']));
  1021. $col = 'num';
  1022. }
  1023. }
  1024. if (isset($cash_order) && $cash_order) {
  1025. $head = array('序号', '结算单号', '数量', '金额', '结算类型', '入账状态', '审核状态', '结算时间', '审核未通过原因', '管理');
  1026. if ($search_option_type == 3 || $noprice == 1) {
  1027. unset($head[3]);
  1028. }
  1029. $body = array();
  1030. $config = Dever::db('cash/order')->config;
  1031. foreach ($cash_order as $k => $v) {
  1032. $cdate = date('Y-m-d H:i', $v['cdate']);
  1033. $fdate = $v['fdate'] ? date('Y-m-d H:i', $v['fdate']) : '';
  1034. $operdate = $v['operdate'] ? date('Y-m-d H:i', $v['operdate']) : '';
  1035. $cash = $v[$col];
  1036. $url = Dever::url('project/database/list?project=shop&table=buy_order_goods&order_id='.$v['source_order_id'].'&page_type=1', 'manage');
  1037. $v['source_order_num'] = '<a href="'.$url.'" style="color:blue">'.$v['source_order_num'].'</a>';
  1038. $m = '';
  1039. if ($v['audit'] == 1 && $v['audit_type'] == 2) {
  1040. $url = Dever::url('project/database/update?project=cash&table=order&where_id='.$v['id'].'&col=audit,desc', 'manage');
  1041. $m = '<a href="javascript:;" onclick="fastEdit($(this), \''.$url.'\', \'审核\', \'\', 1)" class="layui-btn">审核</a>';
  1042. }
  1043. $d = array
  1044. (
  1045. $k+1,
  1046. $v['order_num'],
  1047. $v['num'],
  1048. $cash,
  1049. $config['config_jstype'][$v['jstype']],
  1050. $config['config_status'][$v['status']],
  1051. $config['config_audit'][$v['audit']],
  1052. $operdate,
  1053. $v['desc'],
  1054. $m,
  1055. );
  1056. if ($search_option_type == 3 || $noprice == 1) {
  1057. unset($d[3]);
  1058. }
  1059. $body[] = $d;
  1060. }
  1061. $result['对账清单'] = array
  1062. (
  1063. 'type' => 'table',
  1064. 'content' => array
  1065. (
  1066. 'head' => $head,
  1067. 'body' => $body,
  1068. )
  1069. );
  1070. }
  1071. $head = array
  1072. (
  1073. 'name' => '基本信息',
  1074. 'btn' => $button,
  1075. );
  1076. $html = Dever::show($head, $result);
  1077. return $html;
  1078. }
  1079. # 发货
  1080. /*
  1081. public function send_commit()
  1082. {
  1083. $order_id = Dever::input('order_id');
  1084. $order = Dever::db('shop/buy_order')->find($order_id);
  1085. if (!$order || ($order && $order['status'] != 3)) {
  1086. Dever::alert('当前订单状态无法发货');
  1087. }
  1088. $state = Dever::db('shop/buy_order')->update(array('where_id' => $order['id'], 'status' => 4));
  1089. if ($state) {
  1090. $this->updatePs($order, 1);
  1091. }
  1092. return 'reload';
  1093. }*/
  1094. # 采购订单审核 拆单
  1095. /*
  1096. public function audit_commit()
  1097. {
  1098. $order_id = Dever::input('order_id');
  1099. $order = Dever::db('shop/buy_order')->find($order_id);
  1100. if (!$order || ($order && $order['status'] != 2)) {
  1101. Dever::alert('当前订单状态无法拆单');
  1102. }
  1103. if ($order['type'] != 1) {
  1104. Dever::alert('这不是门店的订单');
  1105. }
  1106. $goods = Dever::db('shop/buy_order_goods')->select(array('order_id' => $order_id));
  1107. $shop = Dever::db('shop/info')->find($order['type_id']);
  1108. # 获取门店分配的仓库和工厂
  1109. $shop_store = Dever::db('shop/store')->select(array('shop_id' => $shop['id']));
  1110. $store = array();
  1111. $distance = array();
  1112. # 按照距离排序
  1113. if ($shop_store) {
  1114. foreach ($shop_store as $k => $v) {
  1115. $info = Dever::db('store/info')->find($v['store_id']);
  1116. if ($info && $info['status'] == 1) {
  1117. $distance[] = $info['distance'] = Dever::distance($shop['lng'], $shop['lat'], $info['lng'], $info['lat']);
  1118. $store[] = $info;
  1119. }
  1120. }
  1121. if ($store) {
  1122. array_multisort($distance, SORT_ASC, SORT_NUMERIC, $store);
  1123. }
  1124. }
  1125. $shop_factory = Dever::db('shop/factory')->select(array('shop_id' => $shop['id']));
  1126. $factory = array();
  1127. $distance = array();
  1128. # 按照距离排序
  1129. if ($shop_factory) {
  1130. foreach ($shop_factory as $k => $v) {
  1131. $info = Dever::db('factory/info')->find($v['factory_id']);
  1132. if ($info && $info['status'] == 1) {
  1133. $distance[] = $info['distance'] = Dever::distance($shop['lng'], $shop['lat'], $info['lng'], $info['lat']);
  1134. $factory[] = $info;
  1135. }
  1136. }
  1137. if ($factory) {
  1138. array_multisort($distance, SORT_ASC, SORT_NUMERIC, $factory);
  1139. }
  1140. }
  1141. if (!$factory && !$store) {
  1142. Dever::alert('未分配仓库或者未分配工厂');
  1143. }
  1144. $this->order_num = 0;
  1145. $this->order_id = array();
  1146. $delete = array();
  1147. $yes = array();
  1148. foreach ($goods as $k => $v) {
  1149. # 开始找仓库
  1150. $find = $this->store($order['id'], $order['order_num'] . '_' . $this->order_num, $shop, $store, $v);
  1151. if (!$find[1]) {
  1152. # 仓库没有,找厂家
  1153. if ($factory) {
  1154. $find = $this->factory($order['id'], $order['order_num'] . '_' . $this->order_num, $shop, $factory, $v);
  1155. }
  1156. }
  1157. if ($find[1]) {
  1158. $delete[$v['id']] = $v;
  1159. } else {
  1160. $yes[$v['id']] = $v;
  1161. }
  1162. }
  1163. $num = count($this->order_id);
  1164. if ($num > 0) {
  1165. if ($num == 1) {
  1166. $key = array_keys($this->order_id);
  1167. $key = $key[0];
  1168. Dever::db('shop/buy_order')->delete($key);
  1169. $goods = Dever::db('shop/buy_order_goods')->select(array('order_id' => $key));
  1170. $p_price = 0;
  1171. foreach ($goods as $k => $v) {
  1172. $goods_info = Dever::db('shop/buy_order_goods')->find(array('order_id' => $order['id'], 'goods_id' => $v['goods_id']));
  1173. if ($goods_info) {
  1174. Dever::db('shop/buy_order_goods')->update(array('where_id' => $goods_info['id'], 'set_p_price' => $v['p_price']));
  1175. $p_price += $v['p_price'];
  1176. }
  1177. }
  1178. 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()));
  1179. Dever::db('shop/buy_order_goods')->delete(array('order_id' => $key));
  1180. $this->order_id[$order['id']] = array($this->order_id[$key][0], $this->order_id[$key][1]);
  1181. unset($this->order_id[$key]);
  1182. } else {
  1183. if (!$yes) {
  1184. Dever::db('shop/buy_order')->update(array('where_id' => $order['id'], 'state' => 2));
  1185. Dever::load('cash/lib/order')->up($order, 1, 3);
  1186. } else {
  1187. $price = 0;
  1188. $num = 0;
  1189. foreach ($delete as $k => $v) {
  1190. Dever::db('shop/buy_order_goods')->delete(array('id' => $v['id']));
  1191. $price += $v['price'];
  1192. $num += $v['num'];
  1193. }
  1194. $order['price'] = $order['price'] - $price;
  1195. $order['num'] = $order['num'] - $num;
  1196. Dever::db('shop/buy_order')->update(array('where_id' => $order['id'], 'price' => $order['price'], 'num' => $order['num']));
  1197. Dever::load('shop/lib/refund')->set('buy')->apply(1, $shop['id'], $order_id, false, 3, 0, '供货商库存不足');
  1198. Dever::load('cash/lib/order')->up($order, 1, 3);
  1199. }
  1200. }
  1201. } else {
  1202. # 没有找到,退款
  1203. Dever::alert('供货商库存不足,请联系供货商备货');
  1204. //Dever::load('shop/lib/refund')->set('buy')->apply(1, $shop['id'], $order_id, false, 3, 0, '供货商库存不足');
  1205. }
  1206. if ($this->order_id) {
  1207. foreach ($this->order_id as $k => $v) {
  1208. $this->sendMsg($v[0], $v[1], $k);
  1209. if ($k != $order['id']) {
  1210. $order_info = Dever::db('shop/buy_order')->find($k);
  1211. Dever::load('cash/lib/order')->up($order_info, 1, 1);
  1212. }
  1213. }
  1214. }
  1215. return 'ok';
  1216. }
  1217. */
  1218. # 采购订单审核 拆单
  1219. public function audit_commit()
  1220. {
  1221. $order_id = Dever::input('order_id');
  1222. $order = Dever::db('shop/buy_order')->find($order_id);
  1223. if (!$order || ($order && $order['status'] != 2)) {
  1224. Dever::alert('当前订单状态无法拆单');
  1225. }
  1226. if ($order['type'] != 1) {
  1227. Dever::alert('这不是门店的订单');
  1228. }
  1229. $order['type'] = 1;
  1230. $goods = Dever::db('shop/buy_order_goods')->select(array('order_id' => $order['id']));
  1231. $shop = Dever::db('shop/info')->find($order['type_id']);
  1232. $data = $this->assign($goods, $order, $shop);
  1233. $send = array();
  1234. if ($data) {
  1235. # 开始生成订单
  1236. $num = count($data);
  1237. if (!$goods && $num == 1) {
  1238. foreach ($data as $k => $v) {
  1239. $k = explode('_', $k);
  1240. $p_price = 0;
  1241. foreach ($v as $k1 => $v1) {
  1242. Dever::db('shop/buy_order_goods')->update(array('where_id' => $v1['order_goods_id'], 'set_p_price' => $v1['p_price']));
  1243. $p_price += $v1['p_price'];
  1244. $send[$order['id']] = $v1;
  1245. }
  1246. Dever::db('shop/buy_order')->update(array('where_id' => $order['id'], 'status' => 3, 'source_type' => $k[0], 'source_id' => $k[1], 'p_price' => $p_price, 'operdate' => time()));
  1247. }
  1248. } elseif ($num >= 1) {
  1249. $i = $order['order_index'];
  1250. $price = 0;
  1251. $num = 0;
  1252. foreach ($data as $k => $v) {
  1253. foreach ($v as $k1 => $v1) {
  1254. $v1['order_num'] .= '_' . $i;
  1255. $state = $this->createOrder($v1);
  1256. $send[$state] = $v1;
  1257. Dever::db('shop/buy_order_goods')->delete(array('id' => $v1['order_goods_id'], 'clear' => true));
  1258. $price += $v1['price'];
  1259. $num += $v1['num'];
  1260. }
  1261. $i++;
  1262. }
  1263. $order['price'] = $order['price'] - $price;
  1264. $order['num'] = $order['num'] - $num;
  1265. Dever::db('shop/buy_order')->update(array('where_id' => $order['id'], 'price' => $order['price'], 'num' => $order['num'], 'audit' => 1, 'order_num' => $order['order_num'] . '_' . $i, 'clear' => true));
  1266. }
  1267. } else {
  1268. Dever::db('shop/buy_order')->update(array('where_id' => $order['id'], 'audit' => 1));
  1269. Dever::alert('供货商库存不足,请联系供货商备货,该订单进入重新审核状态');
  1270. }
  1271. if ($send) {
  1272. foreach ($send as $k => $v) {
  1273. $this->sendMsg($v['source_type'], $v['source_id'], $k);
  1274. if ($k != $order['id']) {
  1275. $order_info = Dever::db('shop/buy_order')->find(array('id' => $k, 'clear' => true));
  1276. Dever::load('cash/lib/order')->up($order_info, 1, 1);
  1277. }
  1278. }
  1279. }
  1280. if ($goods) {
  1281. $send = array();
  1282. foreach ($goods as $k => $v) {
  1283. $send[$v['order_id']] = $v;
  1284. }
  1285. if ($send) {
  1286. foreach ($send as $k => $v) {
  1287. $order_info = Dever::db('shop/buy_order')->find(array('id' => $k, 'clear' => true));
  1288. Dever::load('cash/lib/order')->up($order_info, 1, 1);
  1289. }
  1290. }
  1291. }
  1292. return 'ok';
  1293. }
  1294. public function assign(&$goods, &$order, $shop)
  1295. {
  1296. if (strstr($order['order_num'], '_')) {
  1297. $temp = explode('_', $order['order_num']);
  1298. $order['order_num'] = $temp[0];
  1299. $order['order_index'] = $temp[1];
  1300. } else {
  1301. $order['order_index'] = 0;
  1302. }
  1303. # 获取门店分配的仓库和工厂
  1304. $data = array();
  1305. $this->assign_store($data, $goods, $order, $shop);
  1306. $this->assign_factory($data, $goods, $order, $shop);
  1307. return $data;
  1308. }
  1309. private function assign_store(&$data, &$goods, $order, $shop)
  1310. {
  1311. $shop_store = Dever::db('shop/store')->select(array('shop_id' => $shop['id']));
  1312. $store = array();
  1313. $distance = array();
  1314. # 按照距离排序
  1315. if ($shop_store) {
  1316. foreach ($shop_store as $k => $v) {
  1317. $info = Dever::db('store/info')->find($v['store_id']);
  1318. if ($info && $info['status'] == 1) {
  1319. $distance[] = $info['distance'] = Dever::distance($shop['lng'], $shop['lat'], $info['lng'], $info['lat']);
  1320. $store[] = $info;
  1321. }
  1322. }
  1323. if ($store) {
  1324. array_multisort($distance, SORT_ASC, SORT_NUMERIC, $store);
  1325. foreach ($store as $k => $v) {
  1326. if ($goods) {
  1327. foreach ($goods as $gk => $gv) {
  1328. $where = array();
  1329. $where['store_id'] = $v['id'];
  1330. $where['goods_id'] = $gv['goods_id'];
  1331. $where['sku_id'] = ($gv['sku_id'] && $gv['sku_id'] > 0) ? $gv['sku_id'] : -1;
  1332. $sku = Dever::db('store/goods_sku')->getOne($where);
  1333. if ($sku) {
  1334. if ($gv['num'] <= $sku['total']) {
  1335. # 库存符合
  1336. $data['2_' . $v['id']][] = array
  1337. (
  1338. 'area' => $shop['area'],
  1339. 'order_id' => $order['id'],
  1340. 'order_type' => $order['type'],
  1341. 'order_num' => $order['order_num'],
  1342. 'order_index' => $order['order_index'],
  1343. 'type' => 1,
  1344. 'type_id' => $shop['id'],
  1345. 'source_type' => 2,
  1346. 'source_id' => $v['id'],
  1347. 'source_name' => $v['name'],
  1348. 'order_goods_id' => $gv['id'],
  1349. 'goods_id' => $where['goods_id'],
  1350. 'sku_id' => $where['sku_id'],
  1351. 'price' => $gv['price'],
  1352. 'p_price' => $gv['price'],
  1353. 'num' => $gv['num'],
  1354. );
  1355. unset($goods[$gk]);
  1356. }
  1357. }
  1358. }
  1359. }
  1360. }
  1361. }
  1362. }
  1363. }
  1364. private function assign_factory(&$data, &$goods, $order, $shop)
  1365. {
  1366. $shop_factory = Dever::db('shop/factory')->select(array('shop_id' => $shop['id']));
  1367. $factory = array();
  1368. $distance = array();
  1369. # 按照距离排序
  1370. if ($shop_factory && $goods) {
  1371. foreach ($shop_factory as $k => $v) {
  1372. $info = Dever::db('factory/info')->find($v['factory_id']);
  1373. if ($info && $info['status'] == 1) {
  1374. $distance[] = $info['distance'] = Dever::distance($shop['lng'], $shop['lat'], $info['lng'], $info['lat']);
  1375. $factory[] = $info;
  1376. }
  1377. }
  1378. if ($factory) {
  1379. array_multisort($distance, SORT_ASC, SORT_NUMERIC, $factory);
  1380. foreach ($factory as $k => $v) {
  1381. if ($goods) {
  1382. foreach ($goods as $gk => $gv) {
  1383. $where = array();
  1384. $where['factory_id'] = $v['id'];
  1385. $where['goods_id'] = $gv['goods_id'];
  1386. $where['sku_id'] = ($gv['sku_id'] && $gv['sku_id'] > 0) ? $gv['sku_id'] : -1;
  1387. $sku = Dever::db('factory/goods_sku')->getOne($where);
  1388. if ($sku) {
  1389. $data['3_' . $v['id']][] = array
  1390. (
  1391. 'area' => $shop['area'],
  1392. 'order_id' => $order['id'],
  1393. 'order_type' => $order['type'],
  1394. 'order_num' => $order['order_num'],
  1395. 'order_index' => $order['order_index'],
  1396. 'type' => 1,
  1397. 'type_id' => $shop['id'],
  1398. 'source_type' => 3,
  1399. 'source_id' => $v['id'],
  1400. 'source_name' => $v['name'],
  1401. 'order_goods_id' => $gv['id'],
  1402. 'goods_id' => $where['goods_id'],
  1403. 'sku_id' => $where['sku_id'],
  1404. 'price' => $gv['price'],
  1405. 'p_price' => $sku['p_price'],
  1406. 'num' => $gv['num'],
  1407. );
  1408. unset($goods[$gk]);
  1409. }
  1410. }
  1411. }
  1412. }
  1413. }
  1414. }
  1415. }
  1416. /*
  1417. private function store($order_id, $order_num, $shop, $store, $goods, $state = 2)
  1418. {
  1419. $find = array();
  1420. $type_id = array();
  1421. $id = array();
  1422. if (!$store) {
  1423. return array(2, $type_id, $id);
  1424. }
  1425. foreach ($store as $k => $v) {
  1426. $where['store_id'] = $v['id'];
  1427. $where['goods_id'] = $goods['goods_id'];
  1428. $where['sku_id'] = ($goods['sku_id'] && $goods['sku_id'] > 0) ? $goods['sku_id'] : -1;
  1429. $sku = Dever::db('store/goods_sku')->getOne($where);
  1430. if ($sku) {
  1431. if ($goods['num'] <= $sku['total']) {
  1432. # 如果库存符合,直接下单即可,生成仓库订单
  1433. $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']);
  1434. if ($state) {
  1435. $type_id[] = $where['store_id'];
  1436. $id[] = $state;
  1437. $this->order_id[$state] = array(2, $where['store_id']);
  1438. break;
  1439. }
  1440. } elseif ($state == 1 && $sku['total'] > 0) {
  1441. # 如果库存不够,从这个仓库扣下一部分,剩余的从另外仓库处理
  1442. $goods['num'] = $goods['num'] - $sku['total'];
  1443. # 生成仓库订单
  1444. $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']);
  1445. if (!$state) {
  1446. $goods['num'] = $goods['num'] + $sku['total'];
  1447. } else {
  1448. $type_id[] = $where['store_id'];
  1449. $id[] = $state;
  1450. $this->order_id[$state] = array(2, $where['store_id']);
  1451. }
  1452. continue;
  1453. } else {
  1454. # 直接切换到下一个仓库处理
  1455. continue;
  1456. }
  1457. }
  1458. }
  1459. return array(2, $type_id, $id);
  1460. }
  1461. private function factory($order_id, $order_num, $shop, $factory, $goods)
  1462. {
  1463. $find = array();
  1464. $type_id = array();
  1465. $id = array();
  1466. if (!$factory) {
  1467. return array(3, $type_id, $id);
  1468. }
  1469. foreach ($factory as $k => $v) {
  1470. $where['factory_id'] = $v['id'];
  1471. $where['goods_id'] = $goods['goods_id'];
  1472. $where['sku_id'] = ($goods['sku_id'] && $goods['sku_id'] > 0) ? $goods['sku_id'] : -1;
  1473. $sku = Dever::db('factory/goods_sku')->getOne($where);
  1474. if ($sku && $sku['p_price'] > 0) {
  1475. $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']);
  1476. if ($state) {
  1477. $type_id[] = $where['factory_id'];
  1478. $id[] = $state;
  1479. $this->order_id[$state] = array(3, $where['factory_id']);
  1480. break;
  1481. }
  1482. } else {
  1483. continue;
  1484. }
  1485. }
  1486. return array(3, $type_id, $id);
  1487. }
  1488. */
  1489. # 发送消息
  1490. public function sendMsg($source_type, $source_id, $id)
  1491. {
  1492. if (Dever::project('message')) {
  1493. $msg_param['type'] = 1;//消息类型1是订单消息
  1494. $msg_param['id'] = $id;
  1495. $msg_param['source_id'] = $source_id;
  1496. $msg_param['source_type'] = $source_type;
  1497. $msg_param = Dever::json_encode($msg_param);
  1498. $project = $source_type + 1;
  1499. $msg = '您有一个新的订货单,请及时处理。';
  1500. Dever::load('message/lib/data')->push(-1, $source_id, '订货通知', $msg, 2, $project, false, $msg_param);
  1501. }
  1502. }
  1503. # 生成拆单的订单
  1504. /*
  1505. private function createOrder($order_id, $order_num, $type, $type_id, $source_type, $source_id, $price, $p_price, $num, $goods_id, $sku_id)
  1506. {
  1507. $where['parent_order_id'] = $order_id;
  1508. $where['type'] = $type;
  1509. $where['type_id'] = $type_id;
  1510. $where['source_type'] = $source_type;
  1511. $where['source_id'] = $source_id;
  1512. $where['r'] = $goods_id . '_' . microtime() . '_' . mt_rand(1, 10000);
  1513. $info = Dever::db('shop/buy_order')->find($where);
  1514. if (!$info) {
  1515. $this->order_num++;
  1516. $data = $where;
  1517. $data['name'] = $order_id;
  1518. $data['order_num'] = $order_num;
  1519. $data['operdate'] = time();
  1520. $data['status'] = 3;
  1521. $data['price'] = $price * $num;
  1522. $data['p_price'] = $p_price * $num;
  1523. $data['num'] = $num;
  1524. $data['refund_cash'] = 0;
  1525. $data['refund_p_cash'] = 0;
  1526. $id = $state = Dever::db('shop/buy_order')->insert($data);
  1527. } else {
  1528. $id = $info['id'];
  1529. $data['where_id'] = $id;
  1530. $data['price'] = $info['price'] + ($price * $num);
  1531. $data['p_price'] = $info['p_price'] + ($p_price * $num);
  1532. $data['num'] = $info['num'] + $num;
  1533. $state = Dever::db('shop/buy_order')->update($data);
  1534. }
  1535. if ($state && $id > 0) {
  1536. $goods_info = Dever::db('shop/buy_order_goods')->find(array('order_id' => $id));
  1537. if (!$goods_info) {
  1538. $goods['order_id'] = $id;
  1539. $goods['goods_id'] = $goods_id;
  1540. $goods['sku_id'] = $sku_id;
  1541. $goods['price'] = $price;
  1542. $goods['p_price'] = $p_price;
  1543. $goods['num'] = $num;
  1544. Dever::db('shop/buy_order_goods')->insert($goods);
  1545. }
  1546. $state = $this->updateSell($source_type, $source_id, $goods_id, $sku_id, $num);
  1547. return $id;
  1548. }
  1549. return false;
  1550. }
  1551. */
  1552. public function createOrder($data)
  1553. {
  1554. $where['parent_type'] = $data['order_type'];
  1555. $where['parent_order_id'] = $data['order_id'];
  1556. $where['type'] = $data['type'];
  1557. $where['type_id'] = $data['type_id'];
  1558. $where['source_type'] = $data['source_type'];
  1559. $where['source_id'] = $data['source_id'];
  1560. $where['clear'] = true;
  1561. $info = Dever::db('shop/buy_order')->find($where);
  1562. $goods_info = array();
  1563. $goods['goods_id'] = $data['goods_id'];
  1564. $goods['sku_id'] = $data['sku_id'];
  1565. $goods['clear'] = true;
  1566. if (!$info) {
  1567. $insert = $where;
  1568. if (isset($data['area'])) {
  1569. $insert['area'] = $data['area'] . ',' . $where['type_id'];
  1570. }
  1571. $insert['name'] = $data['order_id'];
  1572. $insert['order_num'] = $data['order_num'];
  1573. $insert['operdate'] = time();
  1574. $insert['status'] = 3;
  1575. $insert['price'] = $data['price'] * $data['num'];
  1576. $insert['p_price'] = $data['p_price'] * $data['num'];
  1577. $insert['num'] = $data['num'];
  1578. $insert['refund_cash'] = 0;
  1579. $insert['refund_p_cash'] = 0;
  1580. $id = $state = Dever::db('shop/buy_order')->insert($insert);
  1581. if ($id) {
  1582. $goods['order_id'] = $id;
  1583. $goods_info = Dever::db('shop/buy_order_goods')->find($goods);
  1584. }
  1585. } else {
  1586. $id = $info['id'];
  1587. $goods['order_id'] = $id;
  1588. $goods_info = Dever::db('shop/buy_order_goods')->find($goods);
  1589. $state = false;
  1590. if (!$goods_info) {
  1591. $update['where_id'] = $id;
  1592. $update['price'] = $info['price'] + ($data['price'] * $data['num']);
  1593. $update['p_price'] = $info['p_price'] + ($data['p_price'] * $data['num']);
  1594. $update['num'] = $info['num'] + $data['num'];
  1595. $state = Dever::db('shop/buy_order')->update($update);
  1596. }
  1597. }
  1598. if ($state && $id > 0 && !$goods_info) {
  1599. $goods['price'] = $data['price'];
  1600. $goods['p_price'] = $data['p_price'];
  1601. $goods['num'] = $data['num'];
  1602. Dever::db('shop/buy_order_goods')->insert($goods);
  1603. $state = $this->updateSell($data['source_type'], $data['source_id'], $data['goods_id'], $data['sku_id'], $data['num']);
  1604. return $id;
  1605. }
  1606. return false;
  1607. }
  1608. # 减少库存,增加销量
  1609. public function updateSell($source_type, $source_id, $goods_id, $sku_id, $num)
  1610. {
  1611. if ($source_type == 2) {
  1612. $data['store_id'] = $source_id;
  1613. $data['goods_id'] = $goods_id;
  1614. $data['sku_id'] = $sku_id;
  1615. $data['num'] = $num;
  1616. return Dever::load('store/lib/goods')->oper($source_id, 1, 2, array($data));
  1617. } else {
  1618. $up = array();
  1619. $up['where_factory_id'] = $source_id;
  1620. $up['where_goods_id'] = $goods_id;
  1621. $up['sell_num'] = $num;
  1622. $state = Dever::db('factory/goods')->incSell($up);
  1623. if ($state) {
  1624. if ($sku_id > 0) {
  1625. } else {
  1626. $sku_id = -1;
  1627. }
  1628. $upSku = $up;
  1629. $upSku['where_sku_id'] = $sku_id;
  1630. $state = Dever::db('factory/goods_sku')->incSell($upSku);
  1631. }
  1632. return $state;
  1633. }
  1634. }
  1635. # 打印订单单
  1636. public function printer($user)
  1637. {
  1638. $id = Dever::input('id');
  1639. $type = Dever::input('type', 1);
  1640. $factory_config = Dever::db('main/factory_config')->find();
  1641. $main_config = Dever::db('main/config')->find();
  1642. $config = Dever::db('shop/buy_order')->config;
  1643. $info = Dever::db('shop/buy_order')->one($id);
  1644. //$source_info = Dever::db('factory/info')->find($info['source_id']);
  1645. if ($type == 2) {
  1646. # 仓库
  1647. $member = Dever::db('store/member')->find($user['id']);
  1648. $name = '仓库名称';
  1649. } else {
  1650. # 工厂
  1651. $member = Dever::db('factory/member')->find($user['id']);
  1652. $name = '工厂名称';
  1653. }
  1654. if ($info['type'] == 1) {
  1655. $type_info = Dever::db('shop/info')->find($info['type_id']);
  1656. } elseif ($info['type'] == 2) {
  1657. $type_info = Dever::db('store/info')->find($info['type_id']);
  1658. } elseif ($info['type'] == 3) {
  1659. $type_info = Dever::db('factory/info')->find($info['type_id']);
  1660. }
  1661. if ($info['source_type'] == 1) {
  1662. $source_info = Dever::db('shop/info')->find($info['source_id']);
  1663. } elseif ($info['source_type'] == 2) {
  1664. $source_info = Dever::db('store/info')->find($info['source_id']);
  1665. } elseif ($info['source_type'] == 3) {
  1666. $source_info = Dever::db('factory/info')->find($info['source_id']);
  1667. }
  1668. $cdate = date('Y-m-d H:i', $info['cdate']);
  1669. if ($info['operdate']) {
  1670. $operdate = date('Y-m-d H:i', $info['operdate']);
  1671. } else {
  1672. $operdate = '';
  1673. }
  1674. if ($info['fdate']) {
  1675. $fdate = date('Y-m-d H:i', $info['fdate']);
  1676. } else {
  1677. $fdate = '';
  1678. }
  1679. $status = $config['status'][$info['status']];
  1680. $info['ps_info'] = Dever::db('shop/buy_order_ps')->find(array('order_id' => $info['id']));
  1681. if ($info['ps_info']) {
  1682. $info['ps_info']['service'] = Dever::array_decode($info['ps_info']['service']);
  1683. $info['ps_info']['cdate'] = date('Y-m-d H:i', $info['ps_info']['cdate']);
  1684. if ($info['ps_info']['ydate']) {
  1685. $info['ps_info']['ydate'] = date('Y-m-d H:i', $info['ps_info']['ydate']);
  1686. } else {
  1687. $info['ps_info']['ydate'] = '无';
  1688. }
  1689. $ps_status = Dever::db('shop/buy_order_ps')->config['status'];
  1690. $info['ps_info']['status_name'] = $status[$info['ps_info']['status']];
  1691. }
  1692. $pdf = Dever::load('pdf/lib/base')->init();
  1693. $pdf->hr('-', $main_config['name']);
  1694. $pdf->br()->font(20)->center('订货单号:' . $info['order_num']);
  1695. $pdf->font(10);
  1696. $pdf->br();
  1697. if ($type == 2 && $info['type'] == 2 && $info['source_type'] != 2) {
  1698. $pdf->br()->left($name . ':' . $type_info['name'], 80)->left('制单人:' . $member['name'], 60)->left('制单时间:' . date('Y-m-d H:i'), 40);
  1699. $pdf->hr();
  1700. $pdf->br()->left('订单状态:' . $status, 140)->left('订货时间:' . $operdate, 40);
  1701. $pdf->hr();
  1702. if (!$info['ps_info']) {
  1703. $pdf->left('发货供应商:' . $source_info['name']);
  1704. } else {
  1705. //$pdf->br()->left('发货供应商:' . $source_info['name'], 140)->left('发货时间:' . $info['ps_info']['cdate'], 40);
  1706. $pdf->br()->left('发货供应商:' . $source_info['name'], 80)->left('发货时间:' . $info['ps_info']['cdate'], 60)->left('收货时间:' . $info['ps_info']['ydate'], 40);
  1707. }
  1708. if ($info['ps_info'] && $info['ps_info']['service']) {
  1709. foreach ($info['ps_info']['service'] as $k => $v) {
  1710. $info['ps_info']['service'][$k]['service_name'] = '供应商自送';
  1711. if ($v['service_id'] > 0) {
  1712. $service = Dever::db('shop/service')->find($v['service_id']);
  1713. $info['ps_info']['service'][$k]['service_name'] = $service['name'];
  1714. }
  1715. $pdf->br()->left('物流信息:' . $info['ps_info']['service'][$k]['service_name'], 80)->left('物流单号:' . $info['ps_info']['service'][$k]['order_num'], 40);
  1716. }
  1717. }
  1718. $pdf->hr();
  1719. } else {
  1720. $pdf->br()->left($name . ':' . $source_info['name'], 80)->left('制单人:' . $member['name'], 60)->left('制单时间:' . date('Y-m-d H:i'), 40);
  1721. $pdf->hr();
  1722. $pdf->br()->left('订单状态:' . $status, 80)->left('订货时间:' . $operdate, 80);
  1723. $pdf->hr();
  1724. $parent_order = array();
  1725. if ($info['parent_type'] == 2) {
  1726. $parent_order = Dever::db('shop/sell_order')->find($info['parent_order_id']);
  1727. }
  1728. if ($parent_order && $parent_order['uid']) {
  1729. if ($parent_order['address_id']) {
  1730. $address = Dever::load('passport/address')->getOne($parent_order['uid'], $parent_order['address_id']);
  1731. $pdf->br()->left('收件人:' . $address['contact'], 80)->left('收件人手机:' . $address['mobile'], 80);
  1732. $pdf->left('收件地址:' . $address['address_info'] . ',' . $address['house_number']);
  1733. } else {
  1734. $user = Dever::db('passport/user')->find($parent_order['uid']);
  1735. $pdf->br()->left('收件人:' . $user['username'], 80)->left('收件人手机:' . $user['mobile'], 80);
  1736. }
  1737. } else {
  1738. $pdf->br()->left('配送至:' . $type_info['name'], 80)->left('联系方式:' . $type_info['truename'] . ',' . $type_info['mobile'], 80);
  1739. $pdf->left('配送地址:' . $type_info['address']);
  1740. }
  1741. $pdf->hr();
  1742. if ($info['ps_info'] && $info['ps_info']['service']) {
  1743. $pdf->br()->left('发货时间:' . $info['ps_info']['cdate'], 80)->left('收货时间:' . $info['ps_info']['ydate'], 80);
  1744. foreach ($info['ps_info']['service'] as $k => $v) {
  1745. $info['ps_info']['service'][$k]['service_name'] = '供应商自送';
  1746. if ($v['service_id'] > 0) {
  1747. $service = Dever::db('shop/service')->find($v['service_id']);
  1748. $info['ps_info']['service'][$k]['service_name'] = $service['name'];
  1749. }
  1750. $pdf->br()->left('物流信息:' . $info['ps_info']['service'][$k]['service_name'], 80)->left('物流单号:' . $info['ps_info']['service'][$k]['order_num'], 80);
  1751. }
  1752. /*
  1753. $pdf->br()->left('发货时间:' . $info['ps_info']['cdate'], 80)->left('配货员:' . $info['ps_info']['phy'], 70)->left('打包员:' . $info['ps_info']['dby'], 40);
  1754. if ($info['ps_info']['zl'] && $info['ps_info']['tj']) {
  1755. $pdf->br()->left('包裹重量:' . $info['ps_info']['zl'] . '克', 80)->left('包裹体积:' . $info['ps_info']['tj'] . '立方厘米', 70)->left('包裹数量:' . $info['ps_info']['num'], 40);
  1756. } elseif (!$info['ps_info']['zl'] && $info['ps_info']['tj']) {
  1757. $pdf->br()->left('包裹体积:' . $info['ps_info']['tj'] . '立方厘米', 150)->left('包裹数量:' . $info['ps_info']['num'], 40);
  1758. } elseif ($info['ps_info']['zl'] && !$info['ps_info']['tj']) {
  1759. $pdf->br()->left('包裹重量:' . $info['ps_info']['zl'] . '克', 150)->left('包裹数量:' . $info['ps_info']['num'], 40);
  1760. } else {
  1761. $pdf->left('包裹数量:' . $info['ps_info']['num']);
  1762. }
  1763. $pdf->br()->left('物流信息:' . $info['ps_info']['service_name'], 40);
  1764. if ($info['ps_info']['order_num']) {
  1765. $pdf->left('物流单号:' . $info['ps_info']['order_num'], 70);
  1766. }
  1767. if ($info['ps_info']['ydate']) {
  1768. $pdf->left('到货确认时间:' . $info['ps_info']['ydate']);
  1769. }
  1770. */
  1771. $pdf->hr();
  1772. }
  1773. }
  1774. $body = array();
  1775. $body_total = array();
  1776. $body_total['price'] = 0;
  1777. $body_total['num'] = 0;
  1778. $goods = Dever::db('shop/buy_order_goods')->select(array('order_id' => $info['id']));
  1779. $goods_status = Dever::db('shop/buy_order_goods')->config['status'];
  1780. $refund_body = array();
  1781. $refund_body_total = array();
  1782. $refund_body_total['price'] = 0;
  1783. $refund_body_total['num'] = 0;
  1784. foreach ($goods as $k => $v) {
  1785. if ($type == 1) {
  1786. $v['price'] = $v['p_price'];
  1787. }
  1788. $goods_info = Dever::load('goods/lib/info')->getInfoBySku($v['goods_id'], $v['sku_id']);
  1789. $status = $goods_status[$v['status']];
  1790. $tk = Dever::db('shop/buy_order_refund')->find(array('order_id' => $info['id'], 'order_goods_id' => $v['id'], 'type' => 2));
  1791. if (isset($goods_info['sku'])) {
  1792. $sku = $goods_info['sku']['string'];
  1793. } else {
  1794. $sku = '无';
  1795. }
  1796. $d = array
  1797. (
  1798. $goods_info['id'],
  1799. $goods_info['name'],
  1800. $sku,
  1801. $v['price'],
  1802. 'x ' . $v['num'],
  1803. );
  1804. if ($type == 2) {
  1805. unset($d[3]);
  1806. }
  1807. if ($tk && $v['status'] == 3 && $tk['status'] != 3) {
  1808. $refund_body[] = $d;
  1809. $price = $v['price']*$v['num'];
  1810. $refund_body_total['price'] += $price;
  1811. $refund_body_total['num'] += $v['num'];
  1812. } else {
  1813. $body[] = $d;
  1814. $price = $v['price']*$v['num'];
  1815. $body_total['price'] += $price;
  1816. $body_total['num'] += $v['num'];
  1817. }
  1818. }
  1819. $head = array(array('商品编号', 40), array('商品名称', 60), array('商品属性', 40), array('单价', 40), array('数量', 20));
  1820. if ($type == 2) {
  1821. unset($head[3]);
  1822. $head[1][1] = 70;
  1823. $head[2][1] = 60;
  1824. }
  1825. if ($body) {
  1826. $pdf->center('订单商品');
  1827. $pdf->br();
  1828. foreach ($head as $k => $v) {
  1829. $pdf->left($v[0], $v[1]);
  1830. }
  1831. foreach ($body as $k => $v) {
  1832. $pdf->br();
  1833. foreach ($head as $k1 => $v1) {
  1834. $pdf->left($v[$k1], $v1[1]);
  1835. }
  1836. }
  1837. $pdf->br();
  1838. if ($type == 2) {
  1839. $pdf->right('共'.$body_total['num'].'件商品');
  1840. } else {
  1841. $pdf->right('共'.$body_total['num'].'件商品,合计金额¥' . $body_total['price'] . '元');
  1842. }
  1843. $pdf->hr();
  1844. }
  1845. if ($refund_body) {
  1846. $pdf->center('缺货与报损商品');
  1847. $pdf->br();
  1848. foreach ($head as $k => $v) {
  1849. $pdf->left($v[0], $v[1]);
  1850. }
  1851. foreach ($refund_body as $k => $v) {
  1852. $pdf->br();
  1853. foreach ($head as $k1 => $v1) {
  1854. $pdf->left($v[$k1], $v1[1]);
  1855. }
  1856. }
  1857. $pdf->br();
  1858. if ($type == 2) {
  1859. $pdf->right('共'.$refund_body_total['num'].'件商品');
  1860. } else {
  1861. $pdf->right('共'.$refund_body_total['num'].'件商品,合计金额¥' . $refund_body_total['price'] . '元');
  1862. }
  1863. $pdf->hr();
  1864. }
  1865. $pdf->br(1);
  1866. $pdf->right('如遇任何问题请致电客服');
  1867. $pdf->br();
  1868. $pdf->font(20);
  1869. $pdf->left($main_config['name'], 160);
  1870. $pdf->font(10);
  1871. $pdf->right('电话:' . $factory_config['phone'], 30);
  1872. $pdf->br();
  1873. $pdf->left($main_config['site'], 160);
  1874. $pdf->font(10);
  1875. $pdf->right($main_config['worktime'], 30);
  1876. $pdf->out('订货单');
  1877. }
  1878. # 导出单个订单
  1879. public function excel_one_api()
  1880. {
  1881. $this->type = Dever::input('type');
  1882. $id = Dever::input('id');
  1883. $type_id = Dever::input('type_id');
  1884. $data = $this->getView($type_id, $id);
  1885. $this->excel(array($data));
  1886. }
  1887. # 导出订单
  1888. public function excel($data)
  1889. {
  1890. if (!$data) {
  1891. Dever::alert('无导出数据');
  1892. }
  1893. $file = '入库订单';
  1894. $type = Dever::input('search_option_type', $this->type);
  1895. $header = array('所属仓库', '订单号', '商品来源', '发货日期', '商品名称', '商品规格属性', '商品数量', '报损退款状态', '订单状态');
  1896. $table = 'store/info';
  1897. if ($type == 1) {
  1898. $header[0] = '所属门店';
  1899. $table = 'shop/info';
  1900. }
  1901. $body = array();
  1902. foreach ($data as $k => $v) {
  1903. if (!is_array($v)) {
  1904. continue;
  1905. }
  1906. foreach ($v['goods'] as $k1 => $v1) {
  1907. $goods_info = Dever::load('goods/lib/info')->getInfoBySku($v1['goods_id'], $v1['sku_id']);
  1908. if (isset($goods_info['sku'])) {
  1909. $sku = $goods_info['sku']['string'];
  1910. } else {
  1911. $sku = '';
  1912. }
  1913. $d = array
  1914. (
  1915. $v['type_info']['name'],
  1916. $v['order_num'],
  1917. $v['source_info']['name'],
  1918. $v['cdate'],
  1919. $goods_info['name'],
  1920. $sku,
  1921. $v1['num'],
  1922. $v1['status_name'],
  1923. $v['status_name'],
  1924. );
  1925. $body[] = $d;
  1926. }
  1927. }
  1928. Dever::excelExport($body, $header, $file);
  1929. }
  1930. }