123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248 |
- <?php
- # 销售支付
- namespace Shop\Lib;
- use Dever;
- class Sell
- {
- # 1是用户,2是门店
- public $type = 1;
- # 1是列表,2是详情
- public $view = 1;
- # 获取配置
- public $config = array();
- # table
- public $table = 'shop/sell_order';
- public function __construct()
- {
- $this->config = Dever::db($this->table)->config;
- }
- # 设置订单的类型
- public function set($type, $view)
- {
- $this->type = $type;
- $this->view = $view;
- return $this;
- }
- # 获取公共的where
- public function where($id)
- {
- $where = array();
- if ($this->type == 1) {
- $where['uid'] = $id;
- } elseif ($this->type == 2) {
- $where['shop_id'] = $id;
- }
- if (!$where) {
- Dever::alert('参数错误');
- }
- return $where;
- }
- # 获取订单列表
- public function getList($id)
- {
- $result = array();
- $where = $this->where($id);
- $mobile = Dever::input('mobile');
- if ($mobile) {
- $where['mobile'] = $mobile;
- }
- $status = Dever::input('status');
- if ($status) {
- $where['status'] = $status;
- }
- $method = Dever::input('method');
- if ($method) {
- $where['method'] = $method;
- }
- $pay_method = Dever::input('pay_method');
- if ($pay_method) {
- $where['pay_method'] = $pay_method;
- }
- $result['search_value'] = $where;
- $result['search_value']['day'] = $day = Dever::input('day');
- if ($day) {
- $where['start'] = Dever::maketime($day . ' 00:00:00');
- $where['end'] = Dever::maketime($day . ' 23:59:59');
- }
- $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' => '待处理'),
- );
- if ($method == 1) {
- $result['search']['status'][] = array('value' => 3, 'name' => '待自提');
- } elseif ($method == 2) {
- $result['search']['status'][] = array('value' => 3, 'name' => '配送中');
- } else {
- $result['search']['status'][] = array('value' => 3, 'name' => '待自提');
- $result['search']['status'][] = array('value' => 3, 'name' => '配送中');
- }
- $result['search']['status'][] = array('value' => 8, 'name' => '退款');
- $result['search']['status'][] = array('value' => '5,6', 'name' => '已完成');
- $result['search']['status'][] = array('value' => '7,11', 'name' => '已取消');
- $result['search']['method'] = array
- (
- array('value' => 1, 'name' => '自提'),
- array('value' => 2, 'name' => '配送')
- );
- $result['search']['pay_method'] = array
- (
- array('value' => 1, 'name' => '平台结算'),
- array('value' => 2, 'name' => '门店代下单')
- );
- 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);
- }
- return $result;
- }
- # 获取订单详细信息
- public function getInfo($info)
- {
- if ($info['status'] == 1) {
- # 15分钟内支付,900秒
- $m = 900;
- # 支付倒计时
- $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['method_name'] = $this->config['method'][$info['method']];
- $info['pay_method_name'] = $this->config['pay_method'][$info['pay_method']];
- $info['pay_type_name'] = $this->config['pay_type'][$info['pay_type']];
- if (!$info['coupon_cash']) {
- $info['coupon_cash'] = 0;
- }
- if (!$info['refund_cash']) {
- $info['refund_cash'] = 0;
- }
- if (!$info['ps_cash']) {
- $info['ps_cash'] = 0;
- }
- if ($this->type == 1) {
- if ($info['status'] == 2) {
- $info['status_name'] = '支付成功';
- }
- if ($info['status'] == 3) {
- if ($info['method'] == 1) {
- $info['status_name'] = '待自提';
- } else {
- $info['status_name'] = '配送中';
- }
- }
- } elseif ($this->type == 2) {
- if ($info['status'] == 2) {
- $info['status_name'] = '待处理';
- }
- if ($info['status'] == 3) {
- if ($info['method'] == 1) {
- $info['status_name'] = '待自提';
- } else {
- $info['status_name'] = '配送中';
- }
- }
- }
- if ($info['method'] == 2) {
- $info['ps_info'] = Dever::db('shop/sell_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']['qu_date']) {
- $info['ps_info']['qu_date'] = date('Y-m-d H:i', $info['ps_info']['qu_date']);
- }
- if ($info['ps_info']['qs_date']) {
- $info['ps_info']['qs_date'] = date('Y-m-d H:i', $info['ps_info']['qs_date']);
- }
- $status = Dever::db('shop/sell_order_ps')->config['status'];
- $info['ps_info']['status_name'] = $status[$info['ps_info']['status']];
-
- if ($info['ps_info']['service_id'] > 0) {
- //暂时还没有
- }
- }
- }
- $info['goods'] = Dever::db('shop/sell_order_goods')->select(array('order_id' => $info['id']));
- if ($info['uid'] && $info['uid'] > 0) {
- $info['user'] = Dever::load('passport/api')->info($info['uid']);
- }
-
- $info['shop'] = Dever::db('shop/info')->getOne($info['shop_id']);
- $info['cdate'] = date('Y-m-d H:i', $info['cdate']);
- if ($info['operdate']) {
- $info['operdate'] = date('Y-m-d H:i', $info['operdate']);
- } else {
- $info['operdate'] = '';
- }
- if ($info['fdate']) {
- $info['fdate'] = date('Y-m-d H:i', $info['fdate']);
- } else {
- $info['fdate'] = '';
- }
- $goods_status = Dever::db('shop/sell_order_goods')->config['status'];
- if ($info['address_id']) {
- $info['address'] = Dever::db('passport/address')->find($info['address_id']);
- }
- if ($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']];
- }
- if ($info['invoice_id']) {
- $info['invoice'] = Dever::db('passport/invoice')->find($info['invoice_id']);
- }
- if ($info['user_coupon_id']) {
- $coupon = Dever::db('shop/user_coupon')->find($info['user_coupon_id']);
- if ($coupon) {
- $info['coupon'] = Dever::db('goods/coupon')->find($coupon['coupon_id']);
- }
- }
- } 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']];
- }
- }
- return $info;
- }
- # 取消订单
- public function cancel($id, $order_id)
- {
- $data = $this->getView($id, $order_id, false);
- if ($data['status'] == 1) {
- $state = Dever::db('shop/sell_order')->update(array('where_id' => $data['id'], 'status' => 7, 'operdate' => time()));
- if ($state) {
- if ($data['user_coupon_id']) {
- Dever::db('shop/user_coupon')->update(array('where_id' => $data['user_coupon_id'], 'status' => 1));
- }
- $this->updateSell($data, 2);
- }
- return 'ok';
- } else {
- Dever::alert('当前订单状态不允许取消');
- }
- }
- # 获取优惠券
- public function coupon(&$data, $type = 1)
- {
- $user_coupon_id = Dever::input('user_coupon_id');
- $shop_coupon_id = Dever::input('shop_coupon_id');
- $data['user_coupon_id'] = 0;
- $data['coupon_id'] = 0;
- $data['coupon_cash'] = 0;
- if ($data['pay_method'] == 3) {
- return $data;
- }
- if ($type == 1) {
- if (isset($data['uid']) && $data['uid'] > 0) {
- # 默认选择优惠券
- # 查找符合要求的优惠券
- $coupon = Dever::db('shop/user_coupon')->getAll(array('uid' => $data['uid'], 'city' => $data['shop']['city'], 'status' => 1, 'edate' => time()));
- if ($coupon) {
- foreach ($coupon as $k => $v) {
- $coupon_info = Dever::db('goods/coupon')->find($v['coupon_id']);
- if ($coupon_info) {
- if ($v['shop_id'] != $data['shop']['id'] && $coupon_info['method'] == 3) {
- # 门店专属券 不能给别的门店用
- continue;
- }
- $kou = false;
- if ($coupon_info['type'] == 1) {
- # 满减券
- if ($data['price'] >= $coupon_info['total_cash']) {
- $kou = true;
- }
- } else {
- $kou = true;
- }
- if ($kou) {
- $coupon_info['user_coupon_id'] = $v['id'];
- $coupon_info['uid'] = $v['uid'];
- $coupon_info['edate'] = date('Y-m-d', $v['edate']);
- $coupon_info['shop_id'] = $v['shop_id'];
- $coupon_info['coupon_id'] = $v['coupon_id'];
- $coupon_info['city'] = $v['city'];
- $coupon_info = Dever::load('shop/lib/coupon')->getShop($coupon_info, $data['shop'], false);
- $data['coupon'][] = $coupon_info;
- if (!$user_coupon_id && $data['coupon_cash'] <= $coupon_info['cash']) {
- $data['user_coupon_id'] = $v['id'];
- $data['coupon_id'] = $coupon_info['id'];
- $data['coupon_cash'] = $coupon_info['cash'];
- }
- }
- }
- }
- }
- } else {
- $coupon = Dever::db('shop/coupon')->getAll(array('shop_id' => $data['shop']['id']));
- if ($coupon) {
- foreach ($coupon as $k => $v) {
- $coupon_info = Dever::db('goods/coupon')->find($v['coupon_id']);
- $kou = false;
- if ($coupon_info['type'] == 1) {
- # 满减券
- if ($data['price'] >= $coupon_info['total_cash']) {
- $kou = true;
- }
- } else {
- $kou = true;
- }
- if ($kou) {
- $coupon_info['shop_id'] = $v['shop_id'];
- $coupon_info['shop_coupon_id'] = $v['id'];
- $coupon_info['coupon_id'] = $v['coupon_id'];
- $coupon_info['city'] = $v['city'];
- $coupon_info = Dever::load('shop/lib/coupon')->getShop($coupon_info, $data['shop'], false);
- $data['coupon'][] = $coupon_info;
- }
- }
- }
- }
- }
- if ($user_coupon_id && isset($data['uid']) && $data['uid'] > 0) {
- # 用户自己使用优惠券
- if ($data['price'] <= 0) {
- Dever::alert('付款价格错误');
- }
- $coupon = Dever::db('shop/user_coupon')->find(array('uid' => $data['uid'], 'id' => $user_coupon_id, 'status' => 1));
- if (!$coupon) {
- Dever::alert('优惠券不可用');
- }
- if (time() > $coupon['edate']) {
- Dever::db('shop/user_coupon')->update(array('where_id' => $user_coupon_id, 'status' => 3));
- Dever::alert('优惠券已过期');
- }
- $goods_coupon = Dever::db('goods/coupon')->find($coupon['coupon_id']);
- if (!$goods_coupon) {
- Dever::alert('优惠券不可用');
- }
- if ($coupon['shop_id'] != $data['shop']['id']) {
- if ($goods_coupon['method'] == 3) {
- Dever::alert('优惠券不可用');
- } else {
- $coupon_info = Dever::db('shop/coupon')->find(array('shop_id' => $coupon['shop_id'], 'coupon_id' => $coupon['coupon_id'], 'city' => $coupon['city']));
- if (!$coupon_info) {
- Dever::alert('优惠券不可用');
- }
- }
- }
- if ($goods_coupon['type'] == 2 && $data['price'] < $goods_coupon['total_cash']) {
- Dever::alert('优惠券不可用');
- }
- $data['user_coupon_id'] = $user_coupon_id;
- $data['coupon_id'] = $goods_coupon['id'];
- $data['coupon_cash'] = $goods_coupon['cash'];
- } elseif ($shop_coupon_id) {
- # 店里直接给用优惠券
- if ($data['price'] <= 0) {
- Dever::alert('付款价格错误');
- }
- $coupon_info = Dever::db('shop/coupon')->find(array('shop_id' => $data['shop']['id'], 'id' => $shop_coupon_id));
- if (!$coupon_info) {
- Dever::alert('优惠券不可用');
- }
- $goods_coupon = Dever::db('goods/coupon')->find($coupon_info['coupon_id']);
- if (!$goods_coupon) {
- Dever::alert('优惠券不可用');
- }
- if ($goods_coupon['type'] == 2 && $data['price'] < $goods_coupon['total_cash']) {
- Dever::alert('优惠券不可用');
- }
- $data['user_coupon_id'] = -1;
- $data['coupon_id'] = $goods_coupon['id'];
- $data['coupon_cash'] = $goods_coupon['cash'];
- }
- if (isset($data['coupon_cash']) && $data['coupon_cash'] > 0) {
- # 这里还要计算每个商品的优惠金额
- if (isset($data['list']) && $data['list']) {
- foreach ($data['list'] as $k => $v) {
- $data['list'][$k]['coupon_id'] = $data['coupon_id'];
- $data['list'][$k]['user_coupon_id'] = $data['user_coupon_id'];
- $data['list'][$k]['coupon_cash'] = round(($v['price'] * $v['buy_num'])/$data['price'], 2) * $data['coupon_cash'];
- }
- }
- $data['price'] -= $data['coupon_cash'];
- if ($data['price'] < 0) {
- $data['price'] = 0;
- }
- }
- return $data;
- }
- # 获取礼品卡
- public function card($uid, $shop)
- {
- $card = Dever::input('card');
- $pwd = Dever::input('pwd');
- if (!$card) {
- Dever::alert('卡号/密码错误');
- }
- if (!$pwd) {
- Dever::alert('卡号/密码错误');
- }
- $data = Dever::db('goods/card_code')->find(array('card' => $card, 'pwd' => $pwd));
- if (!$data) {
- Dever::alert('卡号/密码错误');
- }
- $info = Dever::db('goods/card')->find($data['card_id']);
- if (!$info || ($info && $info['status'] != 1)) {
- Dever::alert('卡号/密码错误');
- }
- if ($data['uid'] && $data['uid'] > 0) {
- if ($data['uid'] != $uid) {
- Dever::alert('礼品卡已被领取');
- }
- if (time() > $data['edate']) {
- # 更新礼品卡状态
- $card_update['where_id'] = $data['id'];
- $card_update['status'] = 5;
- Dever::db('goods/card_code')->update($card_update);
- Dever::alert('礼品卡已失效');
- }
- } else {
- if (time() > $data['edate']) {
- # 更新礼品卡状态
- $card_update['where_id'] = $data['id'];
- $card_update['uid'] = $uid;
- $card_update['status'] = 5;
- if ($shop) {
- $card_update['shop_id'] = $shop['id'];
- }
- Dever::db('goods/card_code')->update($card_update);
- Dever::alert('礼品卡已失效');
- } else {
- # 更新礼品卡状态
- $card_update['where_id'] = $data['id'];
- $card_update['status'] = 2;
- $card_update['uid'] = $uid;
- $card_update['ddate'] = time();
- if ($shop) {
- $card_update['shop_id'] = $shop['id'];
- }
- Dever::db('goods/card_code')->update($card_update);
- }
- }
- $data = Dever::db('goods/card_code')->find($data['id']);
- $data['goods'] = $info['goods'];
- return $data;
- }
- # 得到商品和总价
- public function goods(&$data)
- {
- # 1自提,2配送
- $data['method'] = Dever::input('method', 1);
- $data['pay_method'] = Dever::input('pay_method');
- if ($data['pay_method'] == 3) {
- $data['card'] = $this->card($data['uid'], $data['shop']);
- $goods = Dever::array_decode($data['card']['goods']);
- $goods_id = array();
- $num = array();
- $sku_id = array();
- foreach ($goods as $k => $v) {
- $goods_id[] = $v['goods_id'];
- $num[] = $v['num'];
- $sku_id[] = -1;
- }
- } else {
- $goods_id = Dever::input('goods_id');
- if (!$goods_id) {
- Dever::alert('请传入商品');
- }
- $goods_id = explode(',', $goods_id);
- $sku_id = Dever::input('price_id');
- if ($sku_id) {
- $sku_id = explode(',', $sku_id);
- }
- $single_id = Dever::input('single_id');
- if ($single_id) {
- $single_id = explode(',', $single_id);
- }
- $input_id = Dever::input('input_id');
- if ($input_id) {
- $input_id = explode(',', $input_id);
- }
- $input_value = Dever::input('input_value');
- if ($input_value) {
- $input_value = explode(',', $input_value);
- }
-
- $num = Dever::input('num');
- if (!$num) {
- Dever::alert('请传入商品数量');
- }
- $num = explode(',', $num);
- }
- $data['price'] = 0;
- $data['num'] = 0;
- $data['name'] = array();
- $count = count($goods_id);
- # 计算总价格
- foreach ($goods_id as $k => $v) {
- $s = isset($sku_id[$k]) ? $sku_id[$k] : -1;
- $n = isset($num[$k]) ? $num[$k] : 1;
- $data['list'][$k] = Dever::load('goods/lib/info')->getPayInfo($v, $s);
- $data['list'][$k]['num'] = $n;
- # 2是库存不足
- $data['list'][$k]['ku_state'] = 1;
- # 验证是否有货
- $total = Dever::load('shop/lib/info')->checkTotal($n, $v, $data['shop']['id'], $s);
- if (isset($data['list'][$k]['min']) && $data['list'][$k]['min'] > 0) {
- if ($total < $data['list'][$k]['min']) {
- $total = 0;
- }
- }
- if ($total <= 0) {
- $data['list'][$k]['ku_state'] = 2;
- $data['list'][$k]['buy_num'] = 0;
- }
- if ($data['list'][$k]['ku_state'] == 1) {
- $data['list'][$k]['buy_num'] = $n;
- $data['num'] += $n;
- $data['price'] += $data['list'][$k]['price'] * $n;
- $data['name'][] = $data['list'][$k]['name'];
- }
- }
- $data['name'] = implode(',', $data['name']);
- if ($data['method'] == 2) {
- $data['ps_cash'] = $data['shop']['ps_cash'];
- }
- return $data;
- }
- # 发起支付
- public function pay($method, $pay_method, $pay_type, $user, $shop, $name, $num, $goods, $price, $cash, $address_id, $invoice_id, $info, $card, $coupon_id, $user_coupon_id, $coupon_cash, $cart = false, $system_source = 5, $refer = '')
- {
- if (!$user) {
- Dever::alert('错误的用户信息');
- }
- $uid = $user['id'];
- if ($method == 2) {
- $order_data['ps_cash'] = $shop['ps_cash'];
- $price += $order_data['ps_cash'];
- }
-
- $order_data['shop_id'] = $shop['id'];
- $order_data['uid'] = $uid;
- $order_data['mobile'] = $user['mobile'];
- $order_data['address_id'] = $address_id;
- $order_data['invoice_id'] = $invoice_id;
- $order_data['name'] = $name;
- $order_data['num'] = $num;
- $order_data['info'] = $info;
- $order_data['price'] = $price;
- $order_data['kou_cash'] = $cash;
- $order_data['method'] = $method;
- $order_data['pay_method'] = $pay_method;
- $order_data['pay_type'] = $pay_type;
- $order_data['refund_cash'] = 0;
- if ($card) {
- $order_data['card_code_id'] = $card['id'];
- }
- if ($user_coupon_id) {
- $order_data['user_coupon_id'] = $user_coupon_id;
- }
- if ($coupon_id) {
- $order_data['coupon_id'] = $coupon_id;
- }
- if ($coupon_cash) {
- $order_data['coupon_cash'] = $coupon_cash;
- }
- $order_data['order_num'] = $this->getOrderId();
- $id = Dever::db('shop/sell_order')->insert($order_data);
- if (!$id) {
- Dever::alert('支付失败');
- }
- foreach($goods as $k => $v) {
- if ($v['ku_state'] == 1) {
- $data['uid'] = $uid;
- $data['order_id'] = $id;
- $data['goods_id'] = $v['id'];
- $data['sku_id'] = $v['sku_id'];
- $data['price'] = $v['price'];
- $data['num'] = $v['buy_num'];
- if (isset($v['user_coupon_id']) && $v['user_coupon_id']) {
- $data['user_coupon_id'] = $v['user_coupon_id'];
- }
- if (isset($v['coupon_id']) && $v['coupon_id']) {
- $data['coupon_id'] = $v['coupon_id'];
- }
- if (isset($v['coupon_cash']) && $v['coupon_cash']) {
- $data['coupon_cash'] = $v['coupon_cash'];
- } else {
- $data['coupon_cash'] = 0;
- }
- Dever::db('shop/sell_order_goods')->insert($data);
- }
- }
- # 减少库存 增加销量
- $order_data['id'] = $id;
- $this->updateSell($order_data);
- if ($card || $price <= 0 || $pay_type == 2) {
- $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);
- if ($cart) {
- # 来自购物车,要清空一下
- $this->dropCart($cart, $uid, $goods, $shop['id']);
- }
- # 使用优惠券
- $this->useCoupon($coupon_id, $user_coupon_id);
- if ($card) {
- # 更新礼品卡状态
- $card_update['where_id'] = $card['id'];
- $card_update['status'] = 3;
- $card_update['order_id'] = $id;
- $card_update['shop_id'] = $shop['id'];
- Dever::db('goods/card_code')->update($card_update);
- }
- return array
- (
- 'order' => '',
- 'order_num' => $order_data['order_num'],
- 'order_id' => $id,
- 'type' => 'pay',
- );
- }
- $param = array
- (
- 'project_id' => 1,
- 'channel_id' => 1,
- 'system_source' => $system_source,
- 'uid' => $uid,
- '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 = Dever::load('pay/api.pay', $param);
- $result['type'] = 'test';
- $result['order'] = '';
- if ($cart) {
- # 来自购物车,要清空一下
- $this->dropCart($cart, $uid, $goods, $shop['id']);
- }
- # 使用优惠券
- $this->useCoupon($coupon_id, $user_coupon_id);
- $result['order_num'] = $order_data['order_num'];
- $result['order_id'] = $id;
- return $result;
- }
- public function dropCart($cart, $uid, $goods, $shop_id)
- {
- $where['uid'] = $uid;
- $where['shop_id'] = $shop_id;
- foreach ($goods as $k => $v) {
- $where['goods_id'] = $v['id'];
- if ($cart == 1) {
- Dever::db('shop/cart')->delete($where);
- } else {
- unset($where['uid']);
- Dever::db('shop/shop_cart')->delete($where);
- }
- }
- }
- public function useCoupon($coupon_id, $user_coupon_id)
- {
- if ($user_coupon_id) {
- Dever::db('shop/user_coupon')->update(array('where_id' => $user_coupon_id, 'status' => 2));
- }
- # 这里可以记录一下使用日志
- }
- # 再次发起支付
- public function rpay($id, $system_source = 5, $refer = '')
- {
- $order = Dever::db('shop/sell_order')->find($id);
- if (!$order) {
- Dever::alert('订单信息错误');
- }
- if ($order['status'] > 1) {
- Dever::alert('订单已支付或已取消');
- }
- $param = array
- (
- 'project_id' => 1,
- 'channel_id' => 1,
- 'system_source' => $system_source,
- 'uid' => $order['uid'],
- '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;
- }
- # 支付成功回调 安全加密 设置token
- 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_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/sell_order')->one(array('id' => $product_id, 'time' => time()));
- if ($order && $order['status'] == 1) {
- $update = array();
- if ($status == 2) {
- # 生成自提码或者取件码
- $update['code'] = $this->getCode();
- if ($order['method'] == 1) {
- $msg = '您有一件自提商品已订购成功,取件码:' . $update['code'];
- } else {
- $msg = '您有一件外送商品已订购成功,核销码:' . $update['code'];
- # 分配配送信息
- //$this->updatePs($order);
- }
- # 发消息
- if (Dever::project('message') && $order['uid']) {
- $shop = Dever::db('shop/info')->one($order['shop_id']);
- $msg_param['type'] = 1;//消息类型1是订单消息
- $msg_param['id'] = $order['id'];
- $msg_param['name'] = $shop['name'];
- $msg_param = Dever::json_encode($msg_param);
- Dever::load('message/lib/data')->push(-1, $order['uid'], '订购成功通知', $msg, 2, 1, false, $msg_param);
- }
-
- if ($order['pay_method'] == 2) {
- if ($order['refund_cash'] > 0) {
- $status = 6;
- } else {
- $status = 5;
- }
- $update['fdate'] = time();
- }
- $update['status'] = $status;
- $update['where_id'] = $order['id'];
- Dever::db('shop/sell_order')->update($update);
- }
- }
- return 'ok';
- }
- # 添加配送信息
- public function updatePs($order, $status = 1)
- {
- $where['order_id'] = $order['id'];
- $data = Dever::db('shop/sell_order_ps')->find($where);
- if (!$data) {
- $insert = $where;
- $insert['service_id'] = -1;
- $insert['price'] = 0;
- $insert['status'] = $status;
- $insert['num'] = 1;
- if ($status == 2) {
- $insert['qu_date'] = time();
- }
-
- Dever::db('shop/sell_order_ps')->insert($insert);
- } else {
- $update = $where;
- $update['where_id'] = $data['id'];
- $update['status'] = $status;
- if ($status == 2) {
- $update['qu_date'] = time();
- }
- if ($status == 3) {
- $update['qs_date'] = time();
- }
- Dever::db('shop/sell_order_ps')->update($update);
- }
- }
- # 减少库存,增加销量
- public function updateSell($order, $type = 1)
- {
- $where['order_id'] = $order['id'];
- $where['status'] = 1;
- $data = Dever::db('shop/sell_order_goods')->select($where);
- if ($data) {
- Dever::load('shop/lib/goods')->oper($order, $type, 2, $data);
- }
- }
- # 生成自提码
- public function getCode()
- {
- $where['code'] = Dever::rand(6, 0);
- $state = Dever::db('shop/sell_order')->one($where);
- if (!$state) {
- return $where['code'];
- } else {
- return $this->getCode();
- }
- }
- # 生成订单号
- public function getOrderId()
- {
- $where['order_num'] = Dever::order('G');
- $state = Dever::db('shop/sell_order')->one($where);
- if (!$state) {
- return $where['order_num'];
- } else {
- return $this->getOrderId();
- }
- }
- # 展示订单详情
- public function show()
- {
- $id = Dever::input('order_id');
- $config = Dever::db('shop/sell_order')->config;
- $info = Dever::db('shop/sell_order')->one($id);
- $tk_status = Dever::db('shop/sell_order_refund')->config['status'];
- $tk_process = Dever::db('shop/sell_order_refund')->config['process'];
- $status = $config['status_manage'][$info['status']];
- $tk = Dever::db('shop/sell_order_refund')->find(array('order_id' => $info['id'], 'type' => 1));
- $shop = Dever::db('shop/info')->find($info['shop_id']);
- $user = Dever::db('passport/user')->find($info['uid']);
- $cdate = date('Y-m-d H:i', $info['cdate']);
- if ($info['operdate']) {
- $opertime = date('Y-m-d H:i', $info['operdate']);
- } else {
- $opertime = '';
- }
- if ($info['fdate']) {
- $fdate = date('Y-m-d H:i', $info['fdate']);
- } else {
- $fdate = '';
- }
- if (!$user) {
- $user['username'] = '无';
- }
- if (!isset($user['truename'])) {
- $user['truename'] = $user['username'];
- }
- if (!$info['coupon_cash']) {
- $info['coupon_cash'] = 0;
- }
- if (!$info['kou_cash']) {
- $info['kou_cash'] = 0;
- }
- if (!$info['ps_cash']) {
- $info['ps_cash'] = 0;
- }
- if ($tk && $tk['process'] == 1) {
- $status = '申请' . $tk_status[$tk['status']];
- $process = $tk_process[$tk['process']];
- $process = '';
- }
- $time = array();
- $time[] = array('下单时间', $cdate);
- if ($opertime) {
- if ($info['status'] == 2) {
- $time[] = array('通知时间', $opertime);
- }
- if ($info['status'] == 7) {
- $time[] = array('取消时间:', $opertime);
- }
- }
- if ($fdate) {
- $time[] = array('完成时间:', $fdate);
- }
- $result = array();
- $result[$info['order_num']] = array
- (
- 'type' => 'info',
- 'content' => array
- (
- array
- (
- array('订单状态', $status),
- array('支付方式', $config['pay_method'][$info['pay_method']]),
- array('配送方式', $config['method'][$info['method']]),
- ),
-
- array
- (
- array('门店名称', $shop['name']),
- array('联系人', $shop['truename']),
- array('联系电话', $shop['mobile']),
- ),
- array
- (
- array('下单用户', $user['username']),
- array('联系电话', $info['mobile']),
- array('订单备注', $info['info']),
- ),
- array
- (
- array('优惠券满减', '¥ ' . $info['coupon_cash']),
- array('抹零', '¥ ' . $info['kou_cash']),
- array('配送费', '¥ ' . $info['ps_cash']),
- ),
- $time,
- )
- );
- if ($info['address_id'] > 0) {
- $address = Dever::load('passport/address')->getOne($info['uid'], $info['address_id']);
- if ($address) {
- $result['收货地址'] = array
- (
- 'type' => 'info',
- 'content' => array
- (
- array
- (
- array('联系人', $address['contact']),
- array('联系电话', $address['mobile']),
- ),
- array
- (
- array('收货地址', $address['address']),
- array('门牌号', $address['house_number']),
- ),
- ),
- );
- }
- }
-
- if ($info['invoice_id'] > 0) {
- $invoice = Dever::load('passport/invoice')->getOne($info['uid'], $info['invoice_id']);
- if ($invoice) {
- $result['发票信息'] = array
- (
- 'type' => 'info',
- 'content' => array
- (
- array
- (
- array('发票类型', $invoice['title_type_name']),
- array('抬头', $invoice['title']),
- array('税号', $invoice['number']),
- ),
- array
- (
- array('手机号', $invoice['mobile']),
- array('邮箱', $invoice['email']),
- ),
- ),
- );
- }
- }
- if (!$info['refund_cash']) {
- $info['refund_cash'] = 0;
- }
- if ($info['refund_cash'] > 0 && $tk) {
- $process = $tk_process[$tk['process']];
- $tk['cdate'] = date('Y-m-d H:i', $tk['cdate']);
- $result['退款信息'] = array
- (
- 'type' => 'info',
- 'content' => array
- (
- array
- (
- array('退款金额', $info['refund_cash']),
- array('数量', $info['num']),
- array('退款进度', $process),
- ),
- array
- (
- array('申请时间', $tk['cdate']),
- array('退款原因', $tk['desc']),
- ),
- ),
- );
- }
- $body = $refund_body = array();
- $body_total = array();
- $body_total['price'] = 0;
- $body_total['num'] = 0;
- $refund_body_total = array();
- $refund_body_total['price'] = 0;
- $refund_body_total['num'] = 0;
- $goods = Dever::db('shop/sell_order_goods')->select(array('order_id' => $info['id']));
- $goods_status = Dever::db('shop/sell_order_goods')->config['status'];
- foreach ($goods as $k => $v) {
- $goods_info = Dever::load('goods/lib/info')->getInfoBySku($v['goods_id'], $v['sku_id']);
- $status = $goods_status[$v['status']];
- $tk = Dever::db('shop/sell_order_refund')->find(array('order_id' => $info['id'], 'order_goods_id' => $v['id'], 'type' => 2));
- if ($tk && $tk['process'] == 1) {
- $status = '申请' . $tk_status[$tk['status']];
- //$status .= ' [' . $tk_process[$tk['process']] . ']';
- }
- if (isset($goods_info['sku'])) {
- $sku = $goods_info['sku']['string'];
- } else {
- $sku = '无';
- }
- $d = array
- (
- 'pic' => $goods_info['cover'],
- 'name' => $goods_info['name'],
- 'sku' => $sku,
- 'price' => $v['price'],
- 'num' => $v['num'],
- 'status' => $status,
- );
- if ($tk && $v['status'] == 3) {
- $d['status'] = $tk_status[$tk['status']];
- $refund_body[] = $d;
- $price = $v['price']*$v['num'];
- $refund_body_total['price'] += $price;
- $refund_body_total['num'] += $v['num'];
- } else {
- $body[] = $d;
- $price = $v['price']*$v['num'];
- $body_total['price'] += $price;
- $body_total['num'] += $v['num'];
- }
- }
- if ($body) {
- if ($refund_body_total['price']) {
- $body_total['set_price'] = $body_total['price'] - $refund_body_total['price'];
- }
- if ($refund_body_total['num']) {
- $body_total['set_num'] = $body_total['num'] - $refund_body_total['num'];
- }
- $result['商品清单'] = array
- (
- 'type' => 'list',
- 'content' => $body,
- 'total' => $body_total,
- );
- }
- if ($refund_body) {
- $result['退款商品'] = array
- (
- 'type' => 'list',
- 'content' => $refund_body,
- 'total' => $refund_body_total,
- );
- }
-
- $head = array
- (
- 'name' => '基本信息',
- 'btn' => array(),
- );
- $html = Dever::show($head, $result);
- return $html;
- }
- # 打印小票信息
-
- }
|