635 lines
22 KiB
PHP
Executable File
635 lines
22 KiB
PHP
Executable File
<?php
|
||
|
||
# @Author: 嗨噜客(三亚) <fm453>
|
||
# @Date: 2022-04-25T01:57:06+08:00
|
||
# @Email: fm453@lukegzs.com
|
||
# @Last modified by: fm453
|
||
# @Last modified time: 2024-08-09T09:18:53+08:00
|
||
# @Copyright: www.hiluker.cn
|
||
|
||
namespace api\controllers\gm\v1;
|
||
|
||
use Yii;
|
||
use yii\data\Pagination;
|
||
use addons\models\AcCar;
|
||
use addons\models\AcCarOwner;
|
||
use addons\models\AcCarBrand;
|
||
use addons\models\AcCarSeries;
|
||
use addons\models\AcStore;
|
||
use addons\models\AcEmployee;
|
||
use addons\models\AcOrder;
|
||
use addons\models\AcOrderPre;
|
||
use addons\models\AcOrderStatus;
|
||
use addons\models\AcTruck;
|
||
use addons\models\AcDriver;
|
||
use addons\models\AcPlat;
|
||
use common\models\CVcode;
|
||
use addons\models\AcContact;
|
||
use common\models\Member as User;
|
||
use addons\models\AcUserExt;
|
||
use common\models\Fans;
|
||
|
||
class JiaocheController extends Common
|
||
{
|
||
public function beforeAction($action)
|
||
{
|
||
$session = Yii::$app->session;
|
||
$pid = $session->get('pid');
|
||
$pid = 1;
|
||
if (!$pid) {
|
||
$return = [];
|
||
$return['code'] = 0;
|
||
$return['msg'] = '您正使用本系统内部接口,禁止非法链接使用!';
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE));
|
||
}
|
||
return parent::beforeAction($action);
|
||
}
|
||
|
||
public function actionIndex()
|
||
{
|
||
$return = [];
|
||
$return['code'] = 200;
|
||
$return['msg'] = '您正使用CMTS系统,本接口为内部系统接口,禁止非法链接使用!';
|
||
$return['data'] = ['total' => 0, 'data' => [], 'page' => 1];
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE | JSON_FORCE_OBJECT));
|
||
}
|
||
|
||
//订单列表
|
||
public function actionList()
|
||
{
|
||
$pid = Yii::$app->session->get('pid');
|
||
$pid = 1;
|
||
$session = Yii::$app->session;
|
||
$return = [];
|
||
$model = new AcOrder();
|
||
$where = $orwhere = [];
|
||
$where[] = 'and';
|
||
$where[] = ['=', 'pid', $pid];
|
||
$post = Yii::$app->request->post();
|
||
$search = isset($post['search']) ? $post['search'] : [];
|
||
|
||
$CarModel = new AcCar();
|
||
if (isset($search['carno']) && !empty($search['carno'])) {
|
||
$search['carno'] = trim($search['carno']);
|
||
$cars = $CarModel->find()->where(['LIKE', 'num_left', $search['carno']])->limit(5)->offset(0)->all(); //最多仅显示可匹配车牌号的前5个
|
||
if (empty($cars)) {
|
||
$return['code'] = 400;
|
||
$return['msg'] = '未查询到相关车辆';
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE | JSON_FORCE_OBJECT));
|
||
} else {
|
||
$car_ids = [];
|
||
foreach ($cars as $car) {
|
||
$car_ids[] = $car->id;
|
||
}
|
||
$where[] = ['IN', 'car_id', $car_ids];
|
||
}
|
||
}
|
||
|
||
if (isset($search['city']) && !empty($search['city'])) {
|
||
$search['city'] = trim($search['city']);
|
||
$where[] = ['LIKE', 'start_city', $search['city']];
|
||
}
|
||
|
||
if (isset($search['phone']) && !empty($search['phone'])) {
|
||
$search['phone'] = trim($search['phone']);
|
||
$orwhere = ['or', ['LIKE', 'sender_mobiles', $search['phone']], ['LIKE', 'receiver_mobiles', $search['phone']]];
|
||
}
|
||
|
||
$deleted = 0;
|
||
$where[] = ['=', 'deleted', $deleted];
|
||
$where[] = ['=', 'is_turnover', 1]; //交车单
|
||
|
||
$data = $model->find()->where($where)->andwhere($orwhere);
|
||
|
||
$pages = new Pagination(['totalCount' => $data->count(), 'pageSize' => '10']);
|
||
|
||
$_orderby = 'sign_date DESC,id DESC';
|
||
|
||
$res = $data->offset($pages->offset)->limit($pages->limit)->orderby($_orderby)->all();
|
||
$status = Yii::$app->params['OrderStatus'];
|
||
|
||
$cids = $sids = $eids = $mids = [];
|
||
if ($res) {
|
||
foreach ($res as $r) {
|
||
$cids[$r->car_id] = $r->car_id;
|
||
$sids[$r->store_id] = $r->store_id;
|
||
$eids[$r->employee_id] = $r->employee_id;
|
||
$mids[$r->from_mid] = $r->from_mid;
|
||
}
|
||
}
|
||
|
||
$model = new AcStore();
|
||
$where = [];
|
||
$where['pid'] = Yii::$app->session->get('pid');
|
||
$_stores = $model->find()->where(['in', 'id', $sids])->all();
|
||
$stores = [];
|
||
foreach ($_stores as $s) {
|
||
$stores[$s->id] = $s->toArray();
|
||
}
|
||
|
||
$model = new AcEmployee();
|
||
$employees = [];
|
||
$_employees = $model->find()->where(['in', 'id', $eids])->indexBy('id')->all();
|
||
foreach ($_employees as $s) {
|
||
$employees[$s->id] = $s->toArray();
|
||
}
|
||
|
||
$model = new User();
|
||
$users = [];
|
||
$_users = $model->find()->where(['in', 'id', $mids])->all();
|
||
foreach ($_users as $s) {
|
||
$s = $s->toArray();
|
||
$users[$s['id']] = $s;
|
||
}
|
||
|
||
$model = new AcCar();
|
||
$cars = [];
|
||
$_cars = $model->find()->where(['in', 'id', $cids])->indexBy('id')->all();
|
||
$bids = $sids = [];
|
||
foreach ($_cars as $s) {
|
||
$bids[] = $s->brand_id;
|
||
$sids[] = $s->series_id;
|
||
$cars[$s->id] = $s->toArray();
|
||
}
|
||
|
||
if ($cars) {
|
||
foreach ($cars as &$car) {
|
||
$car['title2'] = '';
|
||
if (isset($brands[$car['brand_id']])) {
|
||
$car['title2'] .= $brands[$car['brand_id']]['title'];
|
||
}
|
||
if (isset($series[$car['series_id']])) {
|
||
$car['title2'] .= $series[$car['series_id']]['title'];
|
||
}
|
||
$car['number2'] = $car['num_frame'];
|
||
if ($car['num_p']) {
|
||
$car['number2'] = $car['num_p'];
|
||
}
|
||
if ($car['num_area']) {
|
||
$car['number2'] .= $car['num_area'];
|
||
}
|
||
if ($car['num_left']) {
|
||
$car['number2'] .= $car['num_left'];
|
||
}
|
||
}
|
||
}
|
||
|
||
$orders = [];
|
||
$unsets = ['pid', 'commission', 'commission_left', 'fee_truck', 'create_at', 'create_by', 'deleted', 'income', 'expense', 'fee_deliver', 'fee_extra', 'fee_insurance', 'fee_pickup', 'fee_urgent', 'from_bid', 'from_mid', 'is_commission', 'is_cwqr', 'is_holdon', 'is_over', 'pay_receive_pids', 'pay_send_pids', 'pre_id', 'remark', 'car_extra', 'thumb_b', 'thumb_f', 'thumb_l', 'thumb_r', 'thumbs', 'driving_lisence', 'videos'];
|
||
|
||
foreach ($res as $s) {
|
||
$car = $cars[$s->car_id];
|
||
$s = $s->toArray();
|
||
if (isset($exts[$s['from_mid']])) {
|
||
foreach ($exts[$s['from_mid']] as $col => $val) {
|
||
$s[$col] = $val;
|
||
}
|
||
}
|
||
foreach ($unsets as $us) {
|
||
unset($s[$us]);
|
||
}
|
||
$weekdays = [0 => '日', 1 => '一', 2 => '二', 3 => '三', 4 => '四', 5 => '五', 6 => '六'];
|
||
$wk = date('w', $s['sign_date']);
|
||
$s['signdate'] = date('Y-m-d ', $s['sign_date']) . '星期' . $weekdays[$wk];
|
||
$s['from_province'] = Yii::$app->params['regionAreas'][$s['start_province']];
|
||
$s['to_province'] = Yii::$app->params['regionAreas'][$s['aim_province']];
|
||
$s['car_number'] = $car['number2'];
|
||
$s['car_title'] = $car['title'];
|
||
$s['status'] = $status[$s['status_code']];
|
||
$orders[] = $s;
|
||
}
|
||
|
||
$return = [];
|
||
$return['code'] = 200;
|
||
$return['msg'] = '订单查询成功!';
|
||
$return['data'] = ['total' => $data->count(),
|
||
'data' => [
|
||
'orders' => $orders,
|
||
'employees' => $employees,
|
||
'stores' => $stores,
|
||
'users' => $users
|
||
],
|
||
'page' => 1];
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE | JSON_FORCE_OBJECT));
|
||
}
|
||
|
||
public function actionDetail()
|
||
{
|
||
$pid = Yii::$app->session->get('pid');
|
||
$status = Yii::$app->params['OrderStatus'];
|
||
$post = Yii::$app->request->post();
|
||
$return = [];
|
||
|
||
$id = isset($post['oid']) ? $post['oid'] : 0;
|
||
if ($id <= 0) {
|
||
$return['code'] = 200;
|
||
$return['msg'] = '查询参数错误!';
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE | JSON_FORCE_OBJECT));
|
||
}
|
||
$AcOrder = new AcOrder();
|
||
$order = $AcOrder->findOne($id);
|
||
$detail = $order->toArray();
|
||
$detail['thumbs'] = json_decode($detail['thumbs']);
|
||
|
||
$model = new AcStore();
|
||
$store = $model->findOne($detail['store_id']);
|
||
if ($store) {
|
||
$detail['store_title'] = $store->title;
|
||
}
|
||
|
||
$model = new AcEmployee();
|
||
$employee = $model->findOne($detail['employee_id']);
|
||
if ($employee) {
|
||
$detail['employee_title'] = $employee->name;
|
||
}
|
||
|
||
$detail['car_owner_id'] = $detail['car_brand_id'] = $detail['car_series_id'] = 0;
|
||
$model = new AcCar();
|
||
$car = $model->findOne($detail['car_id']);
|
||
if ($car) {
|
||
$detail['car_owner_id'] = $car->owner_id;
|
||
$detail['car_brand_id'] = $car->brand_id;
|
||
$detail['car_series_id'] = $car->series_id;
|
||
$detail['car_number'] = $car->num_p . $car->num_area . $car->num_left;
|
||
$detail['car_number'] = $detail['car_number'] ? $detail['car_number'] : $car->num_frame;
|
||
}
|
||
|
||
$model = new User();
|
||
$user = $model->findOne($detail['from_mid']);
|
||
|
||
$model = new AcUserExt();
|
||
$exts = [];
|
||
$_exts = $model->find()->where(['mid' => $detail['from_mid'], 'pid' => $pid, 'deleted' => 0])->indexBy('id')->all();
|
||
foreach ($_exts as $ext) {
|
||
$ext = $ext->toArray();
|
||
if (isset($users[$s['id']])) {
|
||
if ($ext['mobile'] == $user->mobile) {
|
||
$exts[$ext['mid']][$ext['key']] = $ext['value'];
|
||
}
|
||
}
|
||
}
|
||
|
||
$AcCarOwner = new AcCarOwner();
|
||
$owner = $AcCarOwner->findOne($detail['car_owner_id']);
|
||
if ($owner) {
|
||
$_owner = User::findOne($detail['car_owner_id']);
|
||
$detail['car_owner'] = $_owner->username . '【' . $_owner->mobile . '】';
|
||
}
|
||
|
||
$AcCarBrand = new AcCarBrand();
|
||
$brand = $AcCarBrand->findOne($detail['car_brand_id']);
|
||
if ($brand) {
|
||
$detail['car_title'] = $brand->title;
|
||
}
|
||
|
||
$AcCarSeries = new AcCarSeries();
|
||
$where = [];
|
||
$series = $AcCarSeries->findOne($detail['car_series_id']);
|
||
if ($series) {
|
||
$detail['car_title'] .= $series->title;
|
||
}
|
||
|
||
$sn = '00000000000'; //11位
|
||
$sn = substr($sn, 0, 11 - strlen($id));
|
||
$sn .= $id;
|
||
$detail['sn'] = $sn;
|
||
|
||
$detail['signdate'] = date('Y-m-d 星期w', $detail['sign_date']);
|
||
$detail['from_province'] = Yii::$app->params['regionAreas'][$detail['start_province']];
|
||
$detail['to_province'] = Yii::$app->params['regionAreas'][$detail['aim_province']];
|
||
$detail['remark'] = htmlspecialchars_decode($detail['remark']);
|
||
|
||
// $src = 'http://'.$_SERVER["HTTP_HOST"].'/upload';
|
||
// $detail['thumb_b'] = $src.$detail['thumb_b'];
|
||
|
||
$unsets = ['commission', 'commission_left', 'fee_truck', 'create_at', 'create_by', 'deleted', 'income', 'expense', 'fee_deliver', 'fee_extra', 'fee_insurance', 'fee_pickup', 'fee_urgent', 'from_bid', 'from_mid', 'is_commission', 'is_cwqr', 'is_holdon', 'is_over', 'pay_receive_pids', 'pay_send_pids', 'pre_id'];
|
||
foreach ($unsets as $us) {
|
||
unset($detail[$us]);
|
||
}
|
||
|
||
$return['code'] = 200;
|
||
$return['msg'] = '订单查询成功!';
|
||
$return['data'] = $detail;
|
||
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE | JSON_FORCE_OBJECT));
|
||
}
|
||
|
||
public function actionCreate()
|
||
{
|
||
$get = Yii::$app->request->get();
|
||
$post = Yii::$app->request->post();
|
||
$pid = (int)$post['pid'];
|
||
|
||
//格式化数据 为空的项则不修改
|
||
//目标键=》POST键
|
||
$cols = ['start_province' => 'start_province', 'start_city' => 'start_city', 'aim_province' => 'aim_province', 'aim_city' => 'aim_city', 'aim_address' => 'aim_address',
|
||
'signer' => 'signer', 'bind' => 'bind', 'wtdw' => "wtdw",
|
||
'sender_name' => 'sender_name', 'sender_idcard' => 'sender_idcard', 'sender_mobiles' => 'sender_mobiles',
|
||
'receiver_name' => 'receiver_name', 'receiver_idcard' => 'receiver_idcard', 'receiver_mobiles' => 'receiver_mobiles',
|
||
'car_extra' => 'car_extra'];
|
||
foreach ($cols as $col => $key) {
|
||
if (isset($post[$key]) && $post[$key] != '') {
|
||
$data[$col] = trim($post[$key]);
|
||
}
|
||
}
|
||
//'car_id'=>'car_id','employee_id'=>'employee_id',
|
||
//'weituo'=>'weituo'
|
||
$cols = ['car_value' => 'car_value', 'fee_insurance' => 'fee_insurance', 'fee_truck' => 'fee_truck', 'fee_deliver' => 'fee_deliver', 'fee_pickup' => 'fee_pickup', 'fee_urgent' => 'fee_urgent', 'fee_extra' => 'fee_extra', 'fee_total' => 'fee_total', 'pay_send' => 'pay_send', 'pay_receive' => 'pay_receive', 'not_insurance' => 'not_insurance',];
|
||
foreach ($cols as $col => $key) {
|
||
$data[$col] = 0;
|
||
if (isset($post[$key]) && $post[$key] != '') {
|
||
$data[$col] = (int)$post[$key];
|
||
}
|
||
}
|
||
|
||
$cols = ['remark' => 'remark'];
|
||
foreach ($cols as $col => $key) {
|
||
if (isset($post[$key]) && $post[$key] != '') {
|
||
$data[$col] = htmlspecialchars($post[$key]);
|
||
}
|
||
}
|
||
$data['remark'] = isset($data['remark']) ? isset($data['remark']) : '';
|
||
|
||
/*@sign_date: 1649952000000*/
|
||
$sign_date = isset($post['sign_date']) ? strtotime($post['sign_date'] / 1000) : '';
|
||
$data['sign_date'] = $sign_date ? $sign_date : time();
|
||
|
||
$mid = isset($post['mid']) ? (int)$post['mid'] : 11; //11是方孟
|
||
$data['create_by'] = $mid;
|
||
$data['is_cwqr'] = 0; //修改财务确认状态为待确认
|
||
$data['is_turnover'] = 1; //交车补单
|
||
$data['status_code'] = 1; //订单处于创建待审核状态
|
||
|
||
//部分规则校验
|
||
$fee_total = $data['fee_truck'] + $data['fee_insurance'] + $data['fee_deliver'] + $data['fee_pickup'] + $data['fee_urgent'] + $data['fee_extra'];
|
||
$fee_pay = $data['pay_send'] + $data['pay_receive'];
|
||
if (!$data['fee_truck']) {
|
||
$return = [];
|
||
$return['code'] = 100;
|
||
$return['msg'] = '请注意,运费未正确填写!';
|
||
$return['data'] = [];
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE | JSON_FORCE_OBJECT));
|
||
}
|
||
|
||
if ($fee_total != $data['fee_total']) {
|
||
$return = [];
|
||
$return['code'] = 100;
|
||
$return['msg'] = '所填各项费用汇总的值与所填写的总费用不一致!';
|
||
$return['data'] = [];
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE | JSON_FORCE_OBJECT));
|
||
}
|
||
if ($fee_pay != $data['fee_total']) {
|
||
$return = [];
|
||
$return['code'] = 100;
|
||
$return['msg'] = '所填现付与到收费用汇总的值与所填写的总费用不一致!';
|
||
$return['data'] = [];
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE | JSON_FORCE_OBJECT));
|
||
}
|
||
|
||
$data['create_at'] = time();
|
||
$data['update_at'] = $data['create_at'];
|
||
$data['pid'] = $pid;
|
||
|
||
$data['employee_id'] = isset($post['employee_id']) ? (int)$post['employee_id'] : 0;
|
||
$data['store_id'] = 0;
|
||
$model = new AcEmployee();
|
||
$employee = $model->findOne($data['employee_id']);
|
||
if ($employee) {
|
||
$data['store_id'] = $employee->store_id;
|
||
}
|
||
|
||
//校验生成部分补充数据
|
||
//生成现付说明
|
||
$payments = [
|
||
'wechat' => '微信',
|
||
'alipay' => '支付宝',
|
||
'cash' => '现金',
|
||
'bankcard' => '银行卡',
|
||
'bankunion' => '银联',
|
||
'others' => '其他'
|
||
];
|
||
if ($post['pay_send']) {
|
||
$txt = $post['payto'] . '收款' . $post['pay_send'] . '元(' . $payments[$post['payment']] . ')';
|
||
$data['remark'] .= ' ; ' . $txt;
|
||
}
|
||
//生成车辆信息
|
||
$carModel = new AcCar();
|
||
$where = [];
|
||
if ($post['isTempCarno']) {
|
||
$post['carno_left'] .= '临';
|
||
}
|
||
if (empty($post['carno_frame'])) {
|
||
$where['num_p'] = $post['carno_p'];
|
||
$where['num_area'] = $post['carno_area'];
|
||
$where['num_left'] = $post['carno_left'];
|
||
}
|
||
if (!empty($post['carno_frame'])) {
|
||
$where['num_frame'] = $post['carno_frame'];
|
||
}
|
||
$car = $carModel->find()->where($where)->one();
|
||
if (empty($car)) {
|
||
$carModel->pid = $pid;
|
||
$carModel->num_frame = $post['carno_frame'];
|
||
$carModel->num_p = $post['carno_p'];
|
||
$carModel->num_area = $post['carno_area'];
|
||
$carModel->num_left = $post['carno_left'];
|
||
$carModel->title = $post['carno_title'];
|
||
$carModel->status_code = 1;
|
||
$carModel->create_at = time();
|
||
$carModel->update_at = time();
|
||
$carModel->save();
|
||
$car_id = $carModel->attributes['id'];
|
||
} else {
|
||
$car_id = $car->id;
|
||
}
|
||
$data['car_id'] = $car_id;
|
||
|
||
//查询联系人信息是否在库
|
||
$sender_mobiles = isset($data['sender_mobiles']) ? $data['sender_mobiles'] : NULL;
|
||
$receiver_mobiles = isset($data['receiver_mobiles']) ? $data['receiver_mobiles'] : NULL;
|
||
if ($sender_mobiles) {
|
||
//项目分支自有数据表
|
||
$contactModel = new AcContact();
|
||
$contactor = $contactModel->find()->where(['mobile' => $data['sender_mobiles'], 'pid' => $pid])->one();
|
||
if (empty($contactor)) {
|
||
$contactModel->name = isset($data['sender_name']) ? $data['sender_name'] : '客户';
|
||
$contactModel->mobile = $data['sender_mobiles'];
|
||
$contactModel->pid = $pid;
|
||
$contactModel->idcard = isset($data['sender_idcard']) ? $data['sender_idcard'] : '';
|
||
$contactModel->create_at = time();
|
||
$contactModel->status_code = 1;
|
||
$contactModel->save();
|
||
} else {
|
||
$_contactDatas = [];
|
||
$_contactDatas['name'] = isset($data['sender_name']) ? $data['sender_name'] : $contactModel->name;
|
||
$_contactDatas['idcard'] = isset($data['idcard']) ? $data['idcard'] : $contactModel->idcard;
|
||
if ($_contactDatas['name'] == $contactModel->name && $_contactDatas['idcard'] == $contactModel->idcard) {
|
||
//无须做任何变化
|
||
} else {
|
||
$_contactDatas['update_at'] = time();
|
||
$contactModel->updateAll($_contactDatas, ['id' => $contactModel->id]);
|
||
}
|
||
}
|
||
|
||
//框架核心数据表Fans
|
||
$userModel = new Fans();
|
||
$user = $userModel->findByUsername($sender_mobiles);
|
||
if (empty($user)) {
|
||
$userModel->mobile = $sender_mobiles;
|
||
$userModel->email = $sender_mobiles . '@hiluker.com';
|
||
$userModel->setPassword(Yii::$app->params['defaultFansPassword']);
|
||
$userModel->generateAuthKey();
|
||
$userModel->created_at = time();
|
||
$userModel->from = 'ctms';
|
||
$userModel->save();
|
||
}
|
||
}
|
||
if ($receiver_mobiles && $receiver_mobiles != $sender_mobiles) {
|
||
//项目分支自有数据表
|
||
$contactModel2 = new AcContact();
|
||
$contactor2 = $contactModel2->find()->where(['mobile' => $data['receiver_mobiles'], 'pid' => $pid])->one();
|
||
if (empty($contactor2)) {
|
||
$contactModel2->name = isset($data['receiver_name']) ? $data['receiver_name'] : '客户';
|
||
$contactModel2->mobile = $data['receiver_mobiles'];
|
||
$contactModel2->pid = $pid;
|
||
$contactModel2->idcard = isset($data['receiver_idcard']) ? $data['receiver_idcard'] : '';
|
||
$contactModel2->create_at = time();
|
||
$contactModel2->status_code = 1;
|
||
$contactModel2->save();
|
||
} else {
|
||
$_contactDatas = [];
|
||
$_contactDatas['name'] = isset($data['receiver_name']) ? $data['receiver_name'] : $contactModel2->name;
|
||
$_contactDatas['idcard'] = isset($data['idcard']) ? $data['idcard'] : $contactModel2->idcard;
|
||
if ($_contactDatas['name'] == $contactModel2->name && $_contactDatas['idcard'] == $contactModel2->idcard) {
|
||
//无须做任何变化
|
||
} else {
|
||
$_contactDatas['update_at'] = time();
|
||
$contactModel2->updateAll($_contactDatas, ['id' => $contactModel2->id]);
|
||
}
|
||
}
|
||
//框架核心数据表Fans
|
||
$userModel = new Fans();
|
||
$user = $userModel->findByUsername($receiver_mobiles);
|
||
if (empty($user)) {
|
||
$userModel->mobile = $receiver_mobiles;
|
||
$userModel->email = $receiver_mobiles . '@hiluker.com';
|
||
$userModel->setPassword(Yii::$app->params['defaultFansPassword']);
|
||
$userModel->generateAuthKey();
|
||
$userModel->created_at = time();
|
||
$userModel->from = 'ctms';
|
||
$userModel->save();
|
||
}
|
||
}
|
||
|
||
//保存资料
|
||
$AcOrder = new AcOrder();
|
||
foreach ($data as $key => $val) {
|
||
$AcOrder->$key = $val;
|
||
}
|
||
|
||
$res = $AcOrder->save();
|
||
$id = $AcOrder->attributes['id']; //获取插入后id
|
||
|
||
if ($res) {
|
||
$return = [];
|
||
$return['code'] = 200;
|
||
$return['msg'] = '订单保存成功!';
|
||
$return['data'] = ['id' => $id];
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE | JSON_FORCE_OBJECT));
|
||
} else {
|
||
$return = [];
|
||
$return['code'] = 100;
|
||
$return['msg'] = '订单保存失败!';
|
||
$return['data'] = [];
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE | JSON_FORCE_OBJECT));
|
||
}
|
||
}
|
||
|
||
public function actionAjax()
|
||
{
|
||
$get = Yii::$app->request->get();
|
||
$post = Yii::$app->request->post();
|
||
$id = (int)$get['id'];
|
||
$data = $where = [];
|
||
$where['id'] = $id;
|
||
$data['update_at'] = time();
|
||
|
||
$model = new AcOrder();
|
||
$res = $model->findOne($id);
|
||
$return = [];
|
||
$return['timeout'] = 1; //几秒后自动跳转
|
||
$return['status'] = 0;
|
||
$return['ajax'] = 1;
|
||
|
||
if (!$res) {
|
||
$return['msg'] = '订单数据不存在';
|
||
$return['errorcode'] = 404;
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE));
|
||
} else {
|
||
$order = $res;
|
||
if ($order->deleted > 0) {
|
||
$return['msg'] = '订单已被删除了,无法操作';
|
||
$return['errorcode'] = 404;
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE));
|
||
}
|
||
}
|
||
|
||
switch ($get['do']) {
|
||
case 'cancel':
|
||
if ($order->is_cwqr > 0) {
|
||
$return['msg'] = '订单已入账,请先联系财务销账后再取消';
|
||
$return['errorcode'] = 404;
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE));
|
||
}
|
||
if ($order->status_code > 1) {
|
||
$return['msg'] = '订单已进入运输后流程,无法操作取消';
|
||
$return['errorcode'] = 404;
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE));
|
||
}
|
||
if ($order->status_code == -1) {
|
||
$return['msg'] = '订单已经是被取消状态';
|
||
$return['errorcode'] = 404;
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE));
|
||
}
|
||
$data['status_code'] = -1;
|
||
$model->id = $id;
|
||
$res = $model->updateAll($data, $where);
|
||
if ($res) {
|
||
$return['msg'] = '订单取消成功';
|
||
$return['errorcode'] = 200;
|
||
$return['data'] = ['css' => 'btn-info'];
|
||
} else {
|
||
$return['msg'] = '订单取消失败';
|
||
$return['errorcode'] = 0;
|
||
}
|
||
break;
|
||
case 'truckcar':
|
||
if ($order->status_code == -1) {
|
||
$return['msg'] = '订单已被取消,不能承运';
|
||
$return['errorcode'] = 404;
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE));
|
||
}
|
||
if ($order->status_code != 1) {
|
||
$return['msg'] = '订单当前非初始状态(协议签订),不可作承运处理';
|
||
$return['errorcode'] = 404;
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE));
|
||
}
|
||
$data['status_code'] = 5;
|
||
$model->id = $id;
|
||
$res = $model->updateAll($data, $where);
|
||
if ($res) {
|
||
$return['msg'] = '订单已转为待承运状态';
|
||
$return['errorcode'] = 200;
|
||
$return['data'] = ['css' => 'default'];
|
||
} else {
|
||
$return['msg'] = '订单标记失败,请稍后再试';
|
||
$return['errorcode'] = 0;
|
||
}
|
||
break;
|
||
default:
|
||
break;
|
||
}
|
||
exit(json_encode($return, JSON_UNESCAPED_UNICODE));
|
||
}
|
||
}
|