250 lines
9.5 KiB
PHP
250 lines
9.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* 订单
|
|
*/
|
|
class Orders_entity{
|
|
|
|
private $ci;
|
|
|
|
public function __construct(){
|
|
$this->ci = & get_instance();
|
|
}
|
|
|
|
/*
|
|
* 获取合同h5地址
|
|
* @param $id int 订单id
|
|
* @param $type int 合同类型(0整车合同 1代理协议 2确定信息 3交接信息)
|
|
*/
|
|
public function get_contract_h5($id,$type,$wxapp=''){
|
|
$url = http_host_com('api');
|
|
$res = $path = '';
|
|
switch($type){
|
|
case 0;
|
|
$path = '/wxapp/licheb/protocol/car';
|
|
$title = '车辆整车合同';
|
|
break;
|
|
case 1:
|
|
$path = '/wxapp/licheb/protocol/agent';
|
|
$title = '委托代理服务协议';
|
|
break;
|
|
case 2:
|
|
$path = '/wxapp/licheb/protocol/car_ck';
|
|
$title = '车辆信息确认单';
|
|
break;
|
|
case 3:
|
|
$path = '/wxapp/licheb/protocol/car_fh';
|
|
$title = '车辆交接信息';
|
|
break;
|
|
default:
|
|
}
|
|
if($path){
|
|
$res = $url.$path.'?id='.$id.'&wxapp='.$wxapp;
|
|
}
|
|
return [$res,$title];
|
|
}
|
|
|
|
/**
|
|
* 签完成协议后操作
|
|
* @param $oid int 订单id
|
|
* @param $app_id int 小程序id
|
|
* @param $userinfo array() 小程序用户信息
|
|
*/
|
|
public function sign_after($oid,$app_id,$userinfo){
|
|
$this->ci->load->model('receiver/order/receiver_orders_model','orders_model');
|
|
$this->ci->load->model('receiver/order/receiver_order_signs_model','signs_model');
|
|
$this->ci->load->model('receiver/receiver_customers_model','customers_model');
|
|
$this->ci->load->model('apporder/order_purchase_model');
|
|
$row = $this->ci->orders_model->get(['id'=>$oid]);
|
|
if(!$row){
|
|
return false;
|
|
}
|
|
$customers = $this->ci->customers_model->get(['id'=>$row['rid']],'rid');
|
|
$ifpay = false;
|
|
if($customers['rid']){ //判断线索是否支付定金
|
|
$ifpay = $this->ci->order_purchase_model->count(['type'=>3,'status'=>2,'cf_id'=>$customers['rid'],'app_id'=>$app_id,'app_uid'=>$userinfo['uid']]);
|
|
}
|
|
if($ifpay){
|
|
$this->ci->signs_model->update(['status'=>2],['o_id'=>$oid]);
|
|
if($row['payway']){//全款
|
|
$status = 2;
|
|
$this->ci->load->model('receiver/order/receiver_order_ckcars_model','next_model');
|
|
}else{
|
|
$status = 1;
|
|
$this->ci->load->model('receiver/order/receiver_order_loans_model','next_model');
|
|
}
|
|
$res = $this->ci->orders_model->update(['status'=>$status],['id'=>$row['id']]);
|
|
if($res){
|
|
$this->ci->next_model->add(['o_id'=>$row['id'],'c_time'=>time()]);
|
|
}
|
|
}else{
|
|
$this->ci->signs_model->update(['status'=>1],['o_id'=>$row['id']]);
|
|
$res = $this->c_order($row,$app_id,$userinfo);
|
|
}
|
|
return $res;
|
|
}
|
|
/**
|
|
* 创建定金消费订单
|
|
* @param $oder array 订单数据
|
|
* return boolean
|
|
*/
|
|
public function c_order($order,$app_id,$userinfo){
|
|
$this->ci->load->model('apporder/order_purchase_model');
|
|
$this->ci->load->model('auto/auto_series_model');
|
|
$this->ci->load->model('auto/auto_brand_model');
|
|
|
|
$brand = $this->ci->auto_brand_model->get(['id'=>$order['brand_id']],'name');
|
|
$series = $this->ci->auto_series_model->get(['id'=>$order['s_id']],'name');
|
|
$car_json = json_decode($order['car_json'],true);
|
|
$color = isset($car_json['color']) ? $car_json['color'] : '';
|
|
|
|
$sid = create_order_no(350200,'liche',1,2);
|
|
$jsondata['car'] = $car_json;
|
|
if($color['jsondata']['img']){
|
|
$jsondata['cover'] = $color['jsondata']['img'];
|
|
}
|
|
$add_data = [
|
|
'app_id' => $app_id,
|
|
'app_uid' => $userinfo['uid'],
|
|
'sid' => $sid,
|
|
'item_id' => $order['id'],
|
|
'item_title' => $brand['name'].$series['name'],
|
|
'item_num' => 1,
|
|
'type' => 4,
|
|
'item_price' => $order['deposit'],
|
|
'total_price' => $order['deposit'],
|
|
'uname' => $userinfo['nickname'],
|
|
'mobile' => $userinfo['mobile'],
|
|
'payway' => 1,
|
|
'status' => 1,
|
|
'status_detail' => 11,
|
|
'jsondata' => json_encode($jsondata,JSON_UNESCAPED_UNICODE),
|
|
'c_time' => time(),
|
|
'cf_id' => $order['id']
|
|
];
|
|
$result = $this->ci->order_purchase_model->add($add_data);
|
|
return $result;
|
|
}
|
|
/*
|
|
* 获取签名图片
|
|
* @param $oid int 订单id
|
|
* @param $type array 类型
|
|
*/
|
|
public function get_sign_imgs($oid,$type){
|
|
$this->ci->load->model('receiver/order/receiver_order_contracts_model');
|
|
$where = [
|
|
'o_id' => $oid,
|
|
'status' => 1
|
|
];
|
|
$types = implode(',',$type);
|
|
if($types){
|
|
$where["type in ($types)"] = null;
|
|
}
|
|
$contracts = $this->ci->receiver_order_contracts_model->select($where,'type asc','','','imgs');
|
|
$data = [];
|
|
if($contracts){
|
|
foreach($contracts as $key => $val){
|
|
$imgs = json_decode($val['imgs'],true);
|
|
foreach($imgs as $item){
|
|
$data[] = build_qiniu_image_url($item);
|
|
}
|
|
}
|
|
}
|
|
return $data;
|
|
}
|
|
/**
|
|
* 更新订单用户信息
|
|
* @param $oid int 订单id
|
|
* @param $info array() 腾讯云识别返回参数
|
|
*/
|
|
public function up_info($oid,$info){
|
|
$this->ci->load->model('receiver/order/receiver_orders_model','orders_model');
|
|
$row = $this->ci->orders_model->get(['id'=>$oid]);
|
|
if(!$row){
|
|
return false;
|
|
}
|
|
$info_json = json_decode($row['info_json'],true);
|
|
$info['Name'] && $info_json['name'] = $info['Name'];
|
|
$info['Sex'] && $info_json['sex'] = $info['Sex'];
|
|
$info['Nation'] && $info_json['nation'] = $info['Nation'];
|
|
$info['Birth'] && $info_json['birth'] = date('Y-m-d',strtotime($info['Birth']));
|
|
$info['Address'] && $info_json['address'] = $info['Address'];
|
|
$info['IdNum'] && $info_json['cardid'] = $info['IdNum'];
|
|
$update = [
|
|
'info_json' => json_encode($info_json,JSON_UNESCAPED_UNICODE)
|
|
];
|
|
$result = $this->ci->orders_model->update($update,['id'=>$row['id']]);
|
|
return $result;
|
|
}
|
|
/**
|
|
* 添加日志
|
|
* @param $o_id int 订单id
|
|
* @param $uid int 操作用户id
|
|
* @param $uname int 操作用户名
|
|
* @param $content string 日志内容
|
|
* @param $type int 操作类型 (0普通日志 1短信 2拨打电话)
|
|
* @param $cf_platform string 来源 (wxapp小程序 admin后台)
|
|
*/
|
|
public function add_log($o_id,$uid,$uname,$content,$type='',$cf_platform='wxapp'){
|
|
$this->ci->load->model('receiver/order/receiver_order_oplogs_model','order_oplogs_model');
|
|
$add_data = [
|
|
'order_id' => $o_id,
|
|
'uid' => $uid,
|
|
'log' => $content,
|
|
'c_time' => time()
|
|
];
|
|
$uname && $add_data['uname'] = $uname;
|
|
$type && $add_data['type'] = $type;
|
|
$cf_platform && $add_data['cf_platform'] = $cf_platform;
|
|
$result = $this->ci->order_oplogs_model->add($add_data);
|
|
return $result;
|
|
}
|
|
/**
|
|
* 确认交车
|
|
* @param $oid int 订单id
|
|
* @param $app_id int 小程序id
|
|
* return boolean
|
|
*/
|
|
public function finish_after($oid,$app_id){
|
|
$this->ci->load->model('receiver/order/receiver_orders_model','orders_model');
|
|
$this->ci->load->model('receiver/receiver_customers_model','customers_model');
|
|
$this->ci->load->model('receiver/receiver_clues_model','clues_model');
|
|
$this->ci->load->model('apporder/order_purchase_model');
|
|
$row = $this->ci->orders_model->get(['id'=>$oid]);
|
|
if(!$row){
|
|
return false;
|
|
}
|
|
$customers = $this->ci->customers_model->get(['id'=>$row['rid']],'rid');
|
|
$clues = $this->ci->clues_model->get(['id'=>$customers['rid']],'mobile,recommend_id');
|
|
$res = false;
|
|
//获取线索生成的支付订单
|
|
$clu_order = $this->ci->order_purchase_model->get(['type'=>3,'status'=>2,'cf_id'=>$customers['rid'],'app_id'=>$app_id]);
|
|
if($clu_order){
|
|
$res = $this->ci->order_purchase_model->update(['status'=>3],['id'=>$clu_order['id']]);
|
|
}
|
|
//获取合同生成的支付订单
|
|
$o_order = $this->ci->order_purchase_model->get(['type'=>4,'status'=>2,'cf_id'=>$row['id'],'app_id'=>$app_id]);
|
|
if($o_order){
|
|
$res = $this->ci->order_purchase_model->update(['status'=>3],['id'=>$o_order['id']]);
|
|
}
|
|
if($clues['recommend_id']){ //推荐人获得佣金
|
|
$this->ci->load->library('entity/account_entity');
|
|
$account_entity = new Account_entity($app_id,['order_id'=>$row['sid']]);
|
|
$account = $account_entity->get_account($clues['recommend_id'],'user');
|
|
if(!$account){
|
|
$a_id = $account_entity->new_account($clues['recommend_id'],'user');
|
|
}else{
|
|
$a_id = $account['id'];
|
|
}
|
|
$money=500;
|
|
$log_msg = $clues['mobile'].'成交';
|
|
$sql_arr = $account_entity->charge($a_id,$money,$log_msg);
|
|
$this->ci->load->helper('db');
|
|
$ret = trans_sql($sql_arr);
|
|
}
|
|
return $res;
|
|
}
|
|
}
|
|
|
|
?>
|