1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207 |
- <?php
- namespace Mshop\Lib;
- use Dever;
- class Buy
- {
-
- public $type = 1;
-
- public $view = 1;
-
- public $config = array();
-
- public $table = 'shop/buy_order';
- public function __construct()
- {
- $this->config = Dever::db($this->table)->config;
- }
-
- public function set($type, $view)
- {
- $this->type = $type;
- $this->view = $view;
- return $this;
- }
-
- public function where($id)
- {
- $where = array();
- if ($this->type > 10) {
- $type = $this->type - 10;
- $where['source_type'] = $type;
- $where['source_id'] = $id;
- } else {
- $where['type'] = $this->type;
- $where['type_id'] = $id;
- }
-
- if (!$where) {
- Dever::alert('参数错误');
- }
- return $where;
- }
-
- public function getList($id)
- {
- $result = array();
- $where = $this->where($id);
- $status = Dever::input('status');
- if ($status) {
- if ($status == 'refund') {
- $where['refund_status'] = 2;
- } else {
- $where['status'] = $status;
- }
- }
- $order_num = Dever::input('order_num');
- if ($order_num) {
- $where['order_num'] = $order_num;
- }
- $refund_status = Dever::input('refund_status');
- if ($refund_status) {
- $where['refund_status'] = $refund_status;
- }
- $result['search_value'] = $where;
- $result['search_value']['day'] = $day = Dever::input('day');
- if ($day) {
- if ($this->type > 10) {
- $where['start_o'] = Dever::maketime($day . ' 00:00:00');
- $where['end_o'] = Dever::maketime($day . ' 23:59:59');
- } else {
- $where['start'] = Dever::maketime($day . ' 00:00:00');
- $where['end'] = Dever::maketime($day . ' 23:59:59');
- }
- }
- $result['search_value']['start'] = $start = Dever::input('start');
- $result['search_value']['end'] = $end = Dever::input('end');
- if ($start && $end) {
- if ($this->type > 10) {
- $where['start_o'] = Dever::maketime($start);
- $where['end_o'] = Dever::maketime($end);
- } else {
- $where['start'] = Dever::maketime($start);
- $where['end'] = Dever::maketime($end);
- }
- }
- $result['order'] = Dever::db($this->table)->getAll($where);
- if ($result['order']) {
- foreach ($result['order'] as $k => $v) {
- $result['order'][$k] = $this->getInfo($v);
- }
- }
- $result['search'] = array();
- $result['search']['status'] = array
- (
- array('value' => 1, 'name' => '待支付'),
- array('value' => 2, 'name' => '待审核'),
- array('value' => 3, 'name' => '待发货'),
- array('value' => 4, 'name' => '待收货确认'),
- array('value' => 5, 'name' => '已完成'),
- array('value' => 6, 'name' => '已完成(有退款)'),
- array('value' => '7,8,11', 'name' => '已取消'),
- );
- $result['config'] = Dever::db('main/manage_config')->find();
- return $result;
- }
-
- public function getView($id, $order_id, $show = true)
- {
- $where = $this->where($id);
- $where['id'] = $order_id;
- $result = Dever::db($this->table)->find($where);
- if (!$result) {
- Dever::alert('订单不存在');
- }
- if ($show) {
- $result = $this->getInfo($result, true);
- }
- return $result;
- }
-
- public function getRefund($id, $order_id)
- {
- $data = $this->getView($id, $order_id, false);
- $data['refund'] = Dever::db('shop/buy_order_refund')->select(array('order_id' => $info['id']));
- return $data;
- }
-
- public function getInfo($info, $view = false)
- {
- if ($info['status'] == 1) {
-
- $m = 9000;
-
- $info['time'] = time() - $info['cdate'];
- if ($info['time'] >= $m) {
-
- $info['time'] = -1;
- Dever::db($this->table)->update(array('where_id' => $info['id'], 'status' => 11));
- $info['status'] = 11;
- } else {
- $info['time'] = $m - $info['time'];
- }
- }
- $info['status_name'] = $this->config['status'][$info['status']];
- $info['goods'] = Dever::db('shop/buy_order_goods')->select(array('order_id' => $info['id']));
- if ($info['type'] == 1) {
- $info['type_info'] = Dever::db('shop/info')->getOne($info['type_id']);
- } elseif ($info['type'] == 2) {
- $info['type_info'] = Dever::db('store/info')->find($info['type_id']);
- } elseif ($info['type'] == 3) {
- $info['type_info'] = Dever::db('factory/info')->find($info['type_id']);
- }
- if ($info['source_type'] == 1) {
- $info['source_info'] = Dever::db('shop/info')->getOne($info['source_id']);
- } elseif ($info['source_type'] == 2) {
- $info['source_info'] = Dever::db('store/info')->find($info['source_id']);
- } elseif ($info['source_type'] == 3) {
- $info['source_info'] = Dever::db('factory/info')->find($info['source_id']);
- }
-
- $info['cdate'] = date('Y-m-d H:i', $info['cdate']);
- if ($info['operdate']) {
- $info['operdate'] = date('Y-m-d H:i', $info['operdate']);
- }
- $goods_status = Dever::db('shop/buy_order_goods')->config['status'];
- $goods_process = Dever::db('shop/buy_order_refund')->config['process'];
- if ($view || $this->view == 2) {
- foreach ($info['goods'] as $k => $v) {
- $info['goods'][$k]['info'] = Dever::load('goods/lib/info')->getPayInfo($v['goods_id'], $v['sku_id']);
- $info['goods'][$k]['status_name'] = $goods_status[$v['status']];
- }
- } else {
- foreach ($info['goods'] as $k => $v) {
- $goods = Dever::db('goods/info')->one($v['goods_id']);
- $info['goods'][$k]['name'] = $goods['name'];
- $info['goods'][$k]['cover'] = $goods['cover'];
- $info['goods'][$k]['status_name'] = $goods_status[$v['status']];
- }
- }
- if (!$info['refund_cash']) {
- $info['refund_cash'] = 0;
- }
-
- $info['ps_info'] = Dever::db('shop/buy_order_ps')->find(array('order_id' => $info['id']));
- if ($info['ps_info']) {
- $info['ps_info']['service_name'] = '商家自送';
- $info['ps_info']['cdate'] = date('Y-m-d H:i', $info['ps_info']['cdate']);
- if ($info['ps_info']['ydate']) {
- $info['ps_info']['ydate'] = date('Y-m-d H:i', $info['ps_info']['ydate']);
- }
- $status = Dever::db('shop/buy_order_ps')->config['status'];
- $info['ps_info']['status_name'] = $status[$info['ps_info']['status']];
-
- if ($info['ps_info']['service_id'] > 0) {
-
- $service = Dever::db('shop/service')->find($info['ps_info']['service_id']);
- $info['ps_info']['service_name'] = $service['name'];
- }
- }
- return $info;
- }
-
- public function action($type, $type_id, $name, $num, $goods, $price, $info, $refer = '')
- {
- $order_data['type'] = $type;
- $order_data['type_id'] = $type_id;
- $order_data['name'] = $name;
- $order_data['num'] = $num;
- $order_data['info'] = $info;
- $order_data['price'] = $price;
- $order_data['order_num'] = $this->getOrderId();
- $id = Dever::db('shop/buy_order')->insert($order_data);
- if (!$id) {
- Dever::alert('支付失败');
- }
- foreach($goods as $k => $v) {
- $data['order_id'] = $id;
- $data['goods_id'] = $v['id'];
- $data['sku_id'] = $v['sku_id'];
- $data['price'] = $v['price'] * $v['buy_num'];
- $data['num'] = $v['buy_num'];
- Dever::db('shop/buy_order_goods')->insert($data);
- }
- if ($price <= 0) {
- $param['pay_product_id'] = $id;
- $param['pay_order_id'] = $order_data['order_num'];
- $param['pay_status'] = 2;
- $param['pay_cash'] = $price;
- $param['pay_msg'] = '';
- $this->success($param);
- return array
- (
- 'order' => '',
- 'order_num' => $order_data['order_num'],
- 'order_id' => $id,
- 'type' => 'pay',
- );
- }
- $param = array
- (
- 'project_id' => 2,
- 'channel_id' => 1,
- 'system_source' => 5,
- 'uid' => -1,
- 'name' => $order_data['name'],
- 'cash' => $price,
- 'product_id' => $id,
- 'order_id' => $order_data['order_num'],
- 'refer' => $refer,
- );
- $receipt = Dever::input('receipt');
- if ($receipt) {
- $param['receipt'] = $receipt;
- }
-
- $result['type'] = 'test';
- $result['order'] = '';
- $result['order_num'] = $order_data['order_num'];
- $result['order_id'] = $id;
- return $result;
- }
-
- public function raction($id, $refer = '')
- {
- $order = Dever::db('shop/buy_order')->find($id);
- if (!$order) {
- Dever::alert('订单信息错误');
- }
- if ($order['status'] > 1) {
- Dever::alert('订单已支付或已取消');
- }
- $param = array
- (
- 'project_id' => 2,
- 'channel_id' => 1,
- 'system_source' => 5,
- 'uid' => -1,
- 'name' => $order['name'],
- 'cash' => $order['price'],
- 'product_id' => $id,
- 'order_id' => $order['order_num'],
- 'refer' => $refer,
- );
- $receipt = Dever::input('receipt');
- if ($receipt) {
- $param['receipt'] = $receipt;
- }
- $result = Dever::load('pay/api.pay', $param);
- $result['order_num'] = $order['order_num'];
- $result['order_id'] = $id;
- return $result;
- }
-
- public function success_secure_api_token()
- {
- $project_id = Dever::input('pay_project_id');
- $info = Dever::db('pay/project')->one($project_id);
- if ($info) {
- return $info['key'];
- }
- return 'shop_buy_dever_2020';
- }
-
- public function success_secure_api($param = array())
- {
- $this->success($param);
- }
-
- public function success($param = array())
- {
- $send = $param ? $param : Dever::preInput('pay_');
- $product_id = $send['pay_product_id'];
- $order_id = $send['pay_order_id'];
- $status = $send['pay_status'];
- $cash = $send['pay_cash'];
- $msg = $send['pay_msg'];
- $order = Dever::db('shop/buy_order')->one(array('id' => $product_id, 'time' => time()));
- if ($order && $order['status'] == 1 && $status == 2) {
- $update['status'] = 2;
- $update['where_id'] = $order['id'];
- Dever::db('shop/buy_order')->update($update);
-
- if ($order['type'] == 1) {
- Dever::load('cash/lib/shop')->up($order, 1, 1, 1, 1);
- }
- }
- return 'ok';
- }
-
- public function getOrderId()
- {
- $where['order_num'] = Dever::order('C');
- $state = Dever::db('shop/buy_order')->one($where);
- if (!$state) {
- return $where['order_num'];
- } else {
- return $this->getOrderId();
- }
- }
-
- public function updatePs($order, $status = 1)
- {
- $where['order_id'] = $order['id'];
- $data = Dever::db('shop/buy_order_ps')->find($where);
- if ($data) {
- $update['where_id'] = $data['id'];
- $update['status'] = $status;
- $update['ydate'] = time();
- Dever::db('shop/buy_order_ps')->update($update);
- }
- }
-
- public function finish($id, $order_id)
- {
- $data = $this->getView($id, $order_id, false);
- if ($data['status'] <= 4) {
- if ($data['refund_cash'] > 0) {
- $status = 6;
- } else {
- $status = 5;
- }
- $state = Dever::db('shop/buy_order')->update(array('where_id' => $data['id'], 'status' => $status));
- if ($state) {
- $this->updatePs($data, 3);
-
- $where['order_id'] = $data['id'];
- $where['status'] = 1;
- $goods = Dever::db('shop/buy_order_goods')->select($where);
- if ($goods) {
- Dever::load('shop/lib/goods')->oper($data, 1, 1, $goods);
- }
-
- if ($data['type'] == 1) {
- Dever::load('cash/lib/shop')->up($data, 1, 2, 2, 1);
- }
- }
- return 'ok';
- } else {
- Dever::alert('您没有权限');
- }
- }
-
- public function cancel($id, $order_id)
- {
- $data = $this->getView($id, $order_id, false);
- if ($data['status'] == 1) {
- $state = Dever::db('shop/buy_order')->update(array('where_id' => $data['id'], 'status' => 7, 'operdate' => time()));
-
- if ($state && $data['type'] == 1) {
- Dever::load('cash/lib/shop')->up($data, 1, 1, 3, 1);
- }
- return 'ok';
- } else {
- Dever::alert('当前订单状态不允许取消');
- }
- }
-
- public function orderStatus($id)
- {
- $config = Dever::db('shop/buy_order')->config;
- $info = Dever::db('shop/buy_order')->one($id);
- $tk = Dever::db('shop/buy_order_refund')->find(array('order_id' => $info['id'], 'process' => 1));
- $status = $config['status'][$info['status']];
- if ($tk) {
- $status = '申请退款中';
- }
- return $status;
- }
-
- public function refund_commit_api()
- {
- $id = Dever::input('id');
- $process = Dever::input('process');
- return Dever::load('shop/lib/refund')->set('buy')->action($id, $process, false);
- }
-
- public function refund_apply_commit_api()
- {
- $order_id = Dever::input('order_id');
- $type = Dever::input('type');
- $type_id = Dever::input('type_id');
- $desc = Dever::input('desc');
- $pic = Dever::input('pic');
- return Dever::load('shop/lib/refund')->set('buy')->apply($type, $type_id, $order_id, false, 3, 0, $desc, $pic, 2);
- }
-
- public function refund_apply_info_commit_api()
- {
- $order_id = Dever::input('order_id');
- $status = Dever::input('status');
- $desc = Dever::input('desc');
- $pic = Dever::input('pic');
- $type = Dever::input('type');
- $type_id = Dever::input('type_id');
- return Dever::load('shop/lib/refund')->set('buy')->apply($type, $type_id, $order_id, false, $status, 0, $desc, $pic, 1);
- }
-
- public function refund_apply_info_one_commit_api()
- {
- $order_id = Dever::input('order_id');
- $order_goods_id = Dever::input('order_goods_id');
- $num = Dever::input('num', 0);
- $status = Dever::input('status');
- $desc = Dever::input('desc');
- $pic = Dever::input('pic');
- $type = Dever::input('type');
- $type_id = Dever::input('type_id');
- return Dever::load('shop/lib/refund')->set('buy')->apply($type, $type_id, $order_id, $order_goods_id, $status, $num, $desc, $pic, 1);
- }
-
- public function show()
- {
- $id = Dever::input('order_id');
- $type = Dever::input('type', 1);
- $config = Dever::db('shop/buy_order')->config;
- $info = Dever::db('shop/buy_order')->one($id);
- $tk_status = Dever::db('shop/buy_order_refund')->config['status'];
- $tk_process = Dever::db('shop/buy_order_refund')->config['process'];
- $status = $config['status'][$info['status']];
- $tk = Dever::db('shop/buy_order_refund')->find(array('order_id' => $info['id'], 'type' => 1));
- $cdate = date('Y-m-d H:i', $info['cdate']);
- $opertime = date('Y-m-d H:i', $info['operdate']);
-
- $html = '<div class="layui-col-md12"><div class="layui-card"><div class="layui-card-header">基本信息</div><div class="layui-card-body">';
- $html .= '<table class="layui-table"><thead><tr><th style="width:20%">项目</th><th style="width:80%">详情</th></tr> </thead><tbody>';
- if ($type == 2) {
- $info['price'] = $info['p_price'];
- }
- $html .= '<tr>
- <td>基本信息</td>
- <td>'.$this->table(false, array(array('订单号:' . $info['order_num'], '金额:' . $info['price'], '数量:' . $info['num'], '状态:' . $status))).'</td>
- </tr>';
- if ($type == 1 && $tk && $tk['process'] == 1) {
- $status = '申请' . $tk_status[$tk['status']];
- }
- if ($type == 1) {
- $time = array('下单时间:' . $cdate, '订货时间:' . $opertime);
- } else {
- $time = array('订货时间:' . $opertime);
- }
-
- $html .= '<tr>
- <td>订单时间</td>
- <td>'.$this->table(false, array($time)).'</td>
- </tr>';
- if ($info['type'] == 1) {
- $type_info = Dever::db('shop/info')->find($info['type_id']);
- } elseif ($info['type'] == 2) {
- $type_info = Dever::db('store/info')->find($info['type_id']);
- } elseif ($info['type'] == 3) {
- $type_info = Dever::db('store/info')->find($info['type_id']);
- }
- $html .= '<tr>
- <td>配送信息</td>
- <td>'.$this->table(false, array(array($type_info['name'] . ',' . $type_info['truename'] . ',' . $type_info['mobile'] . ',' . $type_info['address']))).'</td>
- </tr>';
- if ($type == 1 && $info['source_id'] > 0) {
- if ($info['source_type'] == 2) {
-
- $source_info = Dever::db('store/info')->find($info['source_id']);
- } elseif ($info['source_type'] == 3) {
-
- $source_info = Dever::db('factory/info')->find($info['source_id']);
- }
- $html .= '<tr>
- <td>供应商信息</td>
- <td>'.$this->table(false, array(array($source_info['name'] . ',' . $source_info['truename'] . ',' . $source_info['mobile']))).'</td>
- </tr>';
- }
-
- if ($info['info']) {
- $html .= '<tr>
- <td>订单备注</td>
- <td>'.$this->table(false, array(array($info['info']))).'</td>
- </tr>';
- }
- if ($type == 2) {
- $config = Dever::load('factory/admin/auth.config');
- $button = array();
- if ($info['status'] < 5) {
- $button[] = '<button class="layui-btn layui-btn-primary" onclick="$(\'#print_'.$info['id'].'\').click()">打印货单</button>';
- }
- if ($info['status'] == 3) {
- $cancel = Dever::url('lib/buy.refund_apply_commit?json=1', 'mshop');
- $button[] = '<button class="layui-btn layui-btn-primary" onclick="$(\'#send_'.$info['id'].'\').click()">配送发货</button>';
- $button[] = '<button class="layui-btn layui-btn-primary" onclick="cancel('.$info['id'].','.$info['source_id'].', \''.$cancel.'\')">取消订单</button>';
- }
- $config['phone'] = '您的专属客服:' . $config['kf_name'] . ',联系电话:' . $config['phone'];
- $button[] = '<button class="layui-btn layui-btn-primary" onclick="showAlert(\''.$config['phone'].'\')">联系平台</button>';
- $html .= '<tr>
- <td>功能按钮</td>
- <td>'.$this->table(false, array($button)).'</td>
- </tr>';
- }
- $html .= '</tbody></table></div></div>';
- $url = Dever::url('lib/buy.refund_commit?json=1', 'mshop');
- if (!$info['refund_cash']) {
- $info['refund_cash'] = 0;
- }
- if ($info['refund_cash'] > 0 && $tk) {
-
- if ($tk['process'] == 1) {
- $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>';
- } else {
- $process = $tk_process[$tk['process']];
- }
- $desc = array();
- $desc['退款原因'] = $tk['desc'];
- $desc['退款图片'] = '暂无';
- if ($tk['pic']) {
- $desc['退款图片'] = '';
- $pic = explode(',', $tk['pic']);
- foreach ($pic as $k => $v) {
- $desc['退款图片'] .= '<a href="'.$v.'" target="_blank"><img src="'.$v.'" width="100"/></a>';
- }
- }
- $tk['desc'] = '<a href="javascript:showAlert($(\'#desc_content\').html());">查看</a><span id="desc_content" style="display:none">'.Dever::table($desc).'</span>';
- $head = array('退款金额', '数量', '退款进度', '退款原因');
- $body = array(array($info['refund_cash'], $info['num'], $process, $tk['desc']));
- $html .= '<div class="layui-card"><div class="layui-card-header">退款信息</div><div class="layui-card-body">' . $this->table($head, $body) . '</div></div>';
- }
- $info['ps_info'] = Dever::db('shop/buy_order_ps')->find(array('order_id' => $info['id']));
- if ($info['ps_info']) {
- $info['ps_info']['service_name'] = '供应商自送';
- $info['ps_info']['cdate'] = date('Y-m-d H:i', $info['ps_info']['cdate']);
- if ($info['ps_info']['ydate']) {
- $info['ps_info']['ydate'] = date('Y-m-d H:i', $info['ps_info']['ydate']);
- }
- $status = Dever::db('shop/buy_order_ps')->config['status'];
- $info['ps_info']['status_name'] = $status[$info['ps_info']['status']];
-
- if ($info['ps_info']['service_id'] > 0) {
-
- $service = Dever::db('shop/service')->find($info['ps_info']['service_id']);
- $info['ps_info']['service_name'] = $service['name'];
- }
- $head = array('名称', '单号', '费用', '配货员', '更多');
- $table = array();
- $table['打包员'] = $info['ps_info']['dby'];
- $table['数量'] = $info['ps_info']['num'];
- $table['重量'] = $info['ps_info']['zl'];
- $table['体积'] = $info['ps_info']['tj'];
- $table['发货时间'] = $info['ps_info']['cdate'];
- if ($info['ps_info']['ydate']) {
- $table['收货时间'] = $info['ps_info']['ydate'];
- }
- $body = array(array($info['ps_info']['service_name'], $info['ps_info']['order_num'], $info['ps_info']['price'], $info['ps_info']['phy'], '<a href="javascript:showAlert($(\'#refund_content\').html());">查看</a><span id="refund_content" style="display:none">'.Dever::table($table).'</span>'));
- $html .= '<div class="layui-card"><div class="layui-card-header">物流信息</div><div class="layui-card-body">' . $this->table($head, $body) . '</div></div>';
- }
-
- $body = array();
- $body_total = array();
- $body_total['price'] = 0;
- $body_total['num'] = 0;
- $goods = Dever::db('shop/buy_order_goods')->select(array('order_id' => $info['id']));
- $goods_status = Dever::db('shop/buy_order_goods')->config['status'];
- $refund_body = array();
- $refund_body_total = array();
- $refund_body_total['price'] = 0;
- $refund_body_total['num'] = 0;
- foreach ($goods as $k => $v) {
- if ($type == 2) {
- $v['price'] = $v['p_price'];
- }
- $goods_info = Dever::load('goods/lib/info')->getInfoBySku($v['goods_id'], $v['sku_id']);
- $status = $goods_status[$v['status']];
- $tk = Dever::db('shop/buy_order_refund')->find(array('order_id' => $info['id'], 'order_goods_id' => $v['id'], 'type' => 2));
- if ($tk && $tk['process'] == 1) {
- if ($type == 1) {
- $status = '申请' . $tk_status[$tk['status']];
- } else {
- $status = '已上报';
- }
- if ($type == 1) {
- $desc = array();
- $desc['退款原因'] = $tk['desc'];
- $desc['退款图片'] = '暂无';
- if ($tk['pic']) {
- $desc['退款图片'] = '';
- $pic = explode(',', $tk['pic']);
- foreach ($pic as $k => $v) {
- $desc['退款图片'] .= '<a href="'.$v.'" target="_blank"><img src="'.$v.'" width="100"/></a>';
- }
- }
- $status .= ' <a href="javascript:showAlert($(\'#desc_content\').html());">查看原因</a><span id="desc_content" style="display:none">'.Dever::table($desc).'</span>';
- $status .= ' <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>';
- }
- } elseif ($type > 1 && (!$tk || ($tk && $tk['process'] == 3))) {
- $tui = Dever::url('lib/buy.refund_apply_info_one_commit?json=1', 'mshop');
- if ($info['status'] == 3) {
- $status = '<a href="javascript:;" onclick="tui('.$v['id'].','.$info['id'].','.$info['source_id'].', 2, \''.$tui.'\')" class="layui-btn">缺货退款</a>';
- } elseif ($info['status'] == 4) {
- $status = '<a href="javascript:;" onclick="tui('.$v['id'].','.$info['id'].','.$info['source_id'].', 1, \''.$tui.'\')" class="layui-btn">报损退款</a>';
- }
- }
- if (isset($goods_info['sku'])) {
- $sku = '[' . $goods_info['sku']['string'] . ']';
- } else {
- $sku = '';
- }
- if ($tk && $v['status'] == 3) {
- $refund_body[] = array
- (
- $goods_info['name'] . ' ' . $sku,
- $v['price'],
- $v['num'],
- $tk_status[$tk['status']],
- );
- $refund_body_total['price'] += $v['price'];
- $refund_body_total['num'] += $v['num'];
- } else {
- $body[] = array
- (
- $goods_info['name'] . ' ' . $sku,
- $v['price'],
- $v['num'],
- $status,
- );
- $body_total['price'] += $v['price'];
- $body_total['num'] += $v['num'];
- }
- }
- if ($body) {
- $head = array('名称', '金额', '数量', '状态');
- $body[] = array
- (
- '合计',
- $body_total['price'],
- $body_total['num'],
- '-'
- );
- $html .= '<div class="layui-card"><div class="layui-card-header">商品清单</div><div class="layui-card-body" style="max-height: 500px;overflow: auto;">' . $this->table($head, $body) . '</div></div>';
- }
- if ($refund_body) {
- $head = array('名称', '金额', '数量', '状态');
- $refund_body[] = array
- (
- '合计',
- $refund_body_total['price'],
- $refund_body_total['num'],
- '-'
- );
- $html .= '<div class="layui-card"><div class="layui-card-header">缺货与报损商品</div><div class="layui-card-body" style="max-height: 300px;overflow: auto;">' . $this->table($head, $refund_body) . '</div></div>';
- }
- if ($type == 1) {
-
- $cash_order = Dever::db('cash/shop')->select(array('shop_id' => $order['type_id'], 'buy_order_id' => $info['id']));
- } elseif ($type == 2) {
-
- }
- $html .= '</div>';
- return $html;
- }
- private function table($head, $data)
- {
- $html = '';
- if ($head) {
- $html = '<table class="layui-table">';
- $html .= '<thead><tr>';
- foreach ($head as $k => $v) {
- $html .= '<th>'.$v.'</th>';
- }
- $html .= '</tr></thead>';
- $html .= '<tbody>';
- foreach ($data as $k => $v) {
- $html .= '<tr>';
- foreach ($v as $k1 => $v1) {
- $html .= '<td>'.$v1.'</td>';
- }
- $html .= '</tr>';
- }
- $html .= '</tbody>';
- $html .= '</table>';
- } else {
- foreach ($data as $k => $v) {
- $html .= '';
- foreach ($v as $k1 => $v1) {
- $html .= $v1 . ' ';
- }
- $html .= '';
- }
- }
- return $html;
- }
-
-
-
- public function audit_commit()
- {
- $order_id = Dever::input('order_id');
- $order = Dever::db('shop/buy_order')->find($order_id);
- if (!$order || ($order && $order['status'] != 2)) {
- Dever::alert('当前订单状态无法拆单');
- }
- if ($order['type'] != 1) {
- Dever::alert('这不是门店的订单');
- }
- $goods = Dever::db('shop/buy_order_goods')->select(array('order_id' => $order_id));
- $shop = Dever::db('shop/info')->find($order['type_id']);
-
- $shop_store = Dever::db('shop/store')->select(array('shop_id' => $shop['id']));
- $store = array();
- $distance = array();
-
- foreach ($shop_store as $k => $v) {
- $info = Dever::db('store/info')->find($v['store_id']);
- if ($info && $info['status'] == 1) {
- $distance[] = $info['distance'] = Dever::distance($shop['lng'], $shop['lat'], $info['lng'], $info['lat']);
- $store[] = $info;
- }
- }
- if (!$store) {
- Dever::alert('未分配仓库');
- }
- array_multisort($distance, SORT_ASC, SORT_NUMERIC, $store);
- $shop_factory = Dever::db('shop/factory')->select(array('shop_id' => $shop['id']));
- $factory = array();
- $distance = array();
-
- foreach ($shop_factory as $k => $v) {
- $info = Dever::db('factory/info')->find($v['factory_id']);
- if ($info && $info['status'] == 1) {
- $distance[] = $info['distance'] = Dever::distance($shop['lng'], $shop['lat'], $info['lng'], $info['lat']);
- $factory[] = $info;
- }
- }
- if (!$factory) {
- Dever::alert('未分配工厂');
- }
- array_multisort($distance, SORT_ASC, SORT_NUMERIC, $factory);
- $this->order_num = 0;
- $this->order_id = array();
- $delete = array();
- $yes = array();
-
- foreach ($goods as $k => $v) {
-
- $find = $this->store($order['id'], $order['order_num'] . '_' . $this->order_num, $shop, $store, $v);
- if (!$find[1]) {
-
- if ($factory) {
- $find = $this->factory($order['id'], $order['order_num'] . '_' . $this->order_num, $shop, $factory, $v);
- }
- }
- if ($find[1]) {
- $delete[$v['id']] = $v;
- } else {
- $yes[$v['id']] = $v;
- }
- }
- if ($this->order_num > 0) {
- if ($this->order_num == 1) {
- Dever::db('shop/buy_order')->delete($find[2][0]);
- $goods = Dever::db('shop/buy_order_goods')->select(array('order_id' => $find[2][0]));
- $p_price = 0;
- foreach ($goods as $k => $v) {
- $goods_info = Dever::db('shop/buy_order_goods')->find(array('order_id' => $order['id'], 'goods_id' => $v['goods_id']));
- if ($goods_info) {
- Dever::db('shop/buy_order_goods')->update(array('where_id' => $goods_info['id'], 'set_p_price' => $v['p_price']));
- $p_price += $v['p_price'];
- }
- }
- Dever::db('shop/buy_order')->update(array('where_id' => $order['id'], 'status' => 3, 'source_type' => $find[0], 'source_id' => $find[1][0], 'p_price' => $p_price, 'operdate' => time()));
- Dever::db('shop/buy_order_goods')->delete(array('order_id' => $find[2][0]));
- unset($this->order_id[$find[2][0]]);
- $this->order_id[$order['id']] = array($find[0], $find[1][0]);
- } else {
- if (!$yes) {
- Dever::db('shop/buy_order')->update(array('where_id' => $order['id'], 'state' => 2));
- } else {
- $price = 0;
- $num = 0;
- foreach ($delete as $k => $v) {
- Dever::db('shop/buy_order_goods')->delete(array('where_id' => $v['id']));
- $price += $v['price'];
- $num += $v['num'];
- }
- $price = $order['price'] - $price;
- $num = $order['num'] - $num;
- Dever::db('shop/buy_order')->update(array('where_id' => $order['id'], 'price' => $price, 'num' => $num));
- Dever::load('shop/lib/refund')->set('buy')->apply(1, $shop['id'], $order_id, false, 3, 0, '供货商库存不足');
- if ($order['type'] == 1) {
- Dever::load('cash/lib/shop')->up($order, 2, 1, 1, 2);
- }
- }
- }
- } else {
-
- Dever::load('shop/lib/refund')->set('buy')->apply(1, $shop['id'], $order_id, false, 3, 0, '供货商库存不足');
- }
- if ($this->order_id) {
- foreach ($this->order_id as $k => $v) {
- $this->sendMsg($v[0], $v[1], $k);
- if ($k != $order['id']) {
- $order_info = Dever::db('shop/buy_order')->find($k);
- if ($order_info['type'] == 1) {
- Dever::load('cash/lib/shop')->up($order_info, 1, 1, 1, 1);
- }
- }
- }
- }
- return 'ok';
- }
- private function store($order_id, $order_num, $shop, $store, $goods, $state = 2)
- {
- $find = array();
- $type_id = array();
- $id = array();
- if (!$store) {
- return array(2, $type_id, $id);
- }
- foreach ($store as $k => $v) {
- $where['store_id'] = $v['id'];
- $where['goods_id'] = $goods['goods_id'];
- $where['sku_id'] = ($goods['sku_id'] && $goods['sku_id'] > 0) ? $goods['sku_id'] : -1;
- $sku = Dever::db('store/goods_sku')->getOne($where);
- if ($sku) {
- if ($goods['num'] <= $sku['total']) {
-
- $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']);
- if ($state) {
- $type_id[] = $where['store_id'];
- $id[] = $state;
- $this->order_id[$state] = array(2, $where['store_id']);
- break;
- }
- } elseif ($state == 1 && $sku['total'] > 0) {
-
- $goods['num'] = $goods['num'] - $sku['total'];
-
- $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']);
- if (!$state) {
- $goods['num'] = $goods['num'] + $sku['total'];
- } else {
- $type_id[] = $where['store_id'];
- $id[] = $state;
- $this->order_id[$state] = array(2, $where['store_id']);
- }
- continue;
- } else {
-
- continue;
- }
- }
- }
- return array(2, $type_id, $id);
- }
- private function factory($order_id, $order_num, $shop, $factory, $goods)
- {
- $find = array();
- $type_id = array();
- $id = array();
- if (!$factory) {
- return array(3, $type_id, $id);
- }
- foreach ($factory as $k => $v) {
- $where['factory_id'] = $v['id'];
- $where['goods_id'] = $goods['goods_id'];
- $where['sku_id'] = ($goods['sku_id'] && $goods['sku_id'] > 0) ? $goods['sku_id'] : -1;
- $sku = Dever::db('factory/goods_sku')->getOne($where);
- if ($sku && $sku['p_price'] > 0) {
- $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']);
- if ($state) {
- $type_id[] = $where['factory_id'];
- $id[] = $state;
- $this->order_id[$state] = array(3, $where['factory_id']);
- break;
- }
- } else {
- continue;
- }
- }
- return array(3, $type_id, $id);
- }
-
- private function sendMsg($source_type, $source_id, $id)
- {
- if (Dever::project('message')) {
- $msg_param['type'] = 1;
- $msg_param['id'] = $id;
- $msg_param['source_id'] = $source_id;
- $msg_param['source_type'] = $source_type;
- $msg_param = Dever::json_encode($msg_param);
- $project = $source_type + 1;
- $msg = '您有一个新的订货单,请及时处理。';
- Dever::load('message/lib/data')->push(-1, $source_id, '订货通知', $msg, 2, $project, false, $msg_param);
- }
- }
-
- private function createOrder($order_id, $order_num, $type, $type_id, $source_type, $source_id, $price, $p_price, $num, $goods_id, $sku_id)
- {
- $where['parent_order_id'] = $order_id;
- $where['type'] = $type;
- $where['type_id'] = $type_id;
- $where['source_type'] = $source_type;
- $where['source_id'] = $source_id;
- $where['r'] = $goods_id;
- $info = Dever::db('shop/buy_order')->find($where);
- if (!$info) {
- $this->order_num++;
- $data = $where;
- $data['name'] = $order_id;
- $data['order_num'] = $order_num;
- $data['operdate'] = time();
- $data['status'] = 3;
- $data['price'] = $price;
- $data['p_price'] = $p_price;
- $data['num'] = $num;
- $id = $state = Dever::db('shop/buy_order')->insert($data);
- } else {
- $id = $info['id'];
- $data['where_id'] = $id;
- $data['price'] = $info['price'] + $price;
- $data['p_price'] = $info['p_price'] + $p_price;
- $data['num'] = $info['num'] + $num;
- $state = Dever::db('shop/buy_order')->update($data);
- }
- if ($state && $id > 0) {
- $goods_info = Dever::db('shop/buy_order_goods')->find(array('order_id' => $id));
- if (!$goods_info) {
- $goods['order_id'] = $id;
- $goods['goods_id'] = $goods_id;
- $goods['sku_id'] = $sku_id;
- $goods['price'] = $price;
- $goods['p_price'] = $p_price;
- $goods['num'] = $num;
- Dever::db('shop/buy_order_goods')->insert($goods);
- }
-
- return $id;
- }
- return false;
- }
-
- public function updateSell($source_type, $source_id, $goods_id, $sku_id, $num)
- {
- if ($source_type == 2) {
- $data['store_id'] = $source_id;
- $data['goods_id'] = $goods_id;
- $data['sku_id'] = $sku_id;
- $data['num'] = $num;
- return Dever::load('store/lib/goods')->oper($source_id, 1, 2, array($data));
- } else {
- $up = array();
- $up['where_factory_id'] = $source_id;
- $up['where_goods_id'] = $goods_id;
- $up['sell_num'] = $num;
- $state = Dever::db('factory/goods')->incSell($up);
- if ($state) {
- if ($sku_id > 0) {
-
- } else {
- $sku_id = -1;
- }
- $upSku = $up;
- $upSku['where_sku_id'] = $sku_id;
- $state = Dever::db('factory/goods_sku')->incSell($upSku);
- }
- return $state;
- }
- }
- }
|