| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <?php
- namespace app\common\model;
- use think\Db;
- class Order extends Base {
- // 设置数据表(不含前缀)
- protected $name = 'order';
- // 定义时间戳字段名
- protected $createTime = '';
- protected $updateTime = '';
- // 自动完成
- protected $auto = [];
- protected $insert = [];
- protected $update = [];
- public function listData($where,$order,$page=1,$limit=20,$start=0)
- {
- $page = $page > 0 ? (int)$page : 1;
- $limit = $limit ? (int)$limit : 20;
- $start = $start ? (int)$start : 0;
- if(!is_array($where)){
- $where = json_decode($where,true);
- }
- $limit_str = ($limit * ($page-1) + $start) .",".$limit;
- $total = $this->alias('o')->where($where)->count();
- $list = Db::name('Order')->alias('o')
- ->field('o.*,u.user_name')
- ->join('__USER__ u','o.user_id = u.user_id','left')
- ->where($where)
- ->order($order)
- ->limit($limit_str)
- ->select();
- return ['code'=>1,'msg'=>lang('data_list'),'page'=>$page,'pagecount'=>ceil($total/$limit),'limit'=>$limit,'total'=>$total,'list'=>$list];
- }
- public function infoData($where,$field='*')
- {
- if(empty($where) || !is_array($where)){
- return ['code'=>1001,'msg'=>lang('param_err')];
- }
- $info = $this->field($field)->where($where)->find();
- if(empty($info)){
- return ['code'=>1002,'msg'=>lang('obtain_err')];
- }
- $info = $info->toArray();
- return ['code'=>1,'msg'=>lang('obtain_ok'),'info'=>$info];
- }
- public function saveData($data)
- {
- $validate = \think\Loader::validate('Order');
- if(!$validate->check($data)){
- return ['code'=>1001,'msg'=>lang('param_err').':'.$validate->getError() ];
- }
- $data['order_time'] = time();
- if(!empty($data['order_id'])){
- $where=[];
- $where['order_id'] = ['eq',$data['order_id']];
- $res = $this->allowField(true)->where($where)->update($data);
- }
- else{
- $res = $this->allowField(true)->insert($data);
- }
- if(false === $res){
- return ['code'=>1002,'msg'=>lang('save_err').':'.$this->getError() ];
- }
- return ['code'=>1,'msg'=>lang('save_ok')];
- }
- public function delData($where)
- {
- $res = $this->where($where)->delete();
- if($res===false){
- return ['code'=>1001,'msg'=>lang('del_err').':'.$this->getError() ];
- }
- return ['code'=>1,'msg'=>lang('del_ok')];
- }
- public function fieldData($where,$col,$val)
- {
- if(!isset($col) || !isset($val)){
- return ['code'=>1001,'msg'=>lang('param_err')];
- }
- $data = [];
- $data[$col] = $val;
- $res = $this->allowField(true)->where($where)->update($data);
- if($res===false){
- return ['code'=>1001,'msg'=>lang('set_err').':'.$this->getError() ];
- }
- return ['code'=>1,'msg'=>lang('set_ok')];
- }
- /*
- * 充值回调函数接口
- * 任何充值接口,回调接口里直接调用该接口更新订单状态、用户积分
- * pay_type预留值alipay,weixin,bank,可以继续自定义最长10个字符
- */
- public function notify($order_code,$pay_type)
- {
- if(empty($order_code) || empty($pay_type)){
- return ['code'=>1001,'msg'=>lang('param_err')];
- }
- $where = [];
- $where['order_code'] = $order_code;
- $order = model('Order')->infoData($where);
- if($order['code']>1){
- return $order;
- }
- if($order['info']['order_status'] == 1){
- return ['code'=>1,'msg'=>lang('model/order/pay_over')];
- }
- $where2=[];
- $where2['user_id'] = $order['info']['user_id'];
- $user = model('User')->infoData($where2);
- if($user['code']>1){
- return $user;
- }
- $update = [];
- $update['order_status'] = 1;
- $update['order_pay_time'] = time();
- $update['order_pay_type'] = $pay_type;
- $res = $this->where($where)->update($update);
- if($res===false){
- return ['code'=>2002,'msg'=>lang('model/order/update_status_err')];
- }
- $where2 = [];
- $where2['user_id'] = $user['info']['user_id'];
- $res = model('User')->where($where2)->setInc('user_points',$order['info']['order_points']);
- if($res===false){
- return ['code'=>2003,'msg'=>lang('model/order/update_user_points_err')];
- }
- //积分日志
- $data = [];
- $data['user_id'] = $user['info']['user_id'];
- $data['plog_type'] = 1;
- $data['plog_points'] = $order['info']['order_points'];
- model('Plog')->saveData($data);
- return ['code'=>1,'msg'=>lang('model/order/pay_ok')];
- }
- }
|