|
@@ -2,7 +2,9 @@
|
|
|
|
|
|
namespace app\api\controller;
|
|
namespace app\api\controller;
|
|
|
|
|
|
|
|
+use app\api\model\Address;
|
|
use app\api\model\Commoditycolor;
|
|
use app\api\model\Commoditycolor;
|
|
|
|
+use app\api\model\CommodityModel;
|
|
use app\api\model\Logistics;
|
|
use app\api\model\Logistics;
|
|
use app\api\model\OrderModel;
|
|
use app\api\model\OrderModel;
|
|
use app\api\model\Torder;
|
|
use app\api\model\Torder;
|
|
@@ -11,6 +13,7 @@ use app\common\controller\Api;
|
|
use app\common\lib\WxPay;
|
|
use app\common\lib\WxPay;
|
|
use think\Cache;
|
|
use think\Cache;
|
|
use think\Db;
|
|
use think\Db;
|
|
|
|
+use think\File;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 订单接口
|
|
* 订单接口
|
|
@@ -107,7 +110,7 @@ class Order extends Api
|
|
{
|
|
{
|
|
$pre_id = $this->request->post('pre_id');
|
|
$pre_id = $this->request->post('pre_id');
|
|
if (!$pre_id) {
|
|
if (!$pre_id) {
|
|
- return $this->result('网络错误', [], 100);
|
|
|
|
|
|
+ return $this->result('网络错误1', [], 100);
|
|
}
|
|
}
|
|
$order_pre = Db::name('order_pre')->where('pre_id', $pre_id)->find(); //查出预存订单
|
|
$order_pre = Db::name('order_pre')->where('pre_id', $pre_id)->find(); //查出预存订单
|
|
$order_pre['colorid'] = explode(',', $order_pre['colorid']); // 批量拆分id
|
|
$order_pre['colorid'] = explode(',', $order_pre['colorid']); // 批量拆分id
|
|
@@ -115,32 +118,86 @@ class Order extends Api
|
|
$count = count($order_pre['buy_number']);
|
|
$count = count($order_pre['buy_number']);
|
|
$commoditycolor = new Commoditycolor();
|
|
$commoditycolor = new Commoditycolor();
|
|
for ($i = 0; $i < $count; $i++) {
|
|
for ($i = 0; $i < $count; $i++) {
|
|
- $data[] = $commoditycolor->alias('co')
|
|
|
|
|
|
+ $data1[] = $commoditycolor->alias('co')
|
|
->join('parameter p', 'co.p_id = p.p_id', 'left')
|
|
->join('parameter p', 'co.p_id = p.p_id', 'left')
|
|
->join('commodity c', 'p.c_id = c.c_id', 'left')
|
|
->join('commodity c', 'p.c_id = c.c_id', 'left')
|
|
->where('co.colorid', $order_pre['colorid'][$i])
|
|
->where('co.colorid', $order_pre['colorid'][$i])
|
|
->find(); // 循环查出购买的商品
|
|
->find(); // 循环查出购买的商品
|
|
|
|
+ foreach ($data1 as &$v) {
|
|
|
|
+ $v['zongmoney'] = $v['money'];
|
|
|
|
+ }
|
|
}
|
|
}
|
|
- $data['money'] = 0; // 总价
|
|
|
|
- $data['freight'] = 0; // 运费
|
|
|
|
- $data['number'] = "yxj" . rand(1000, 9999) . time(); // 订单编号
|
|
|
|
- $data['create_time'] = $order_pre['create_time']; // 创建时间
|
|
|
|
- $data['whitebean'] = 0; // 白豆个数
|
|
|
|
|
|
+ $data = $data1;
|
|
|
|
+ $data['params']['money'] = 0; // 总价
|
|
|
|
+ $data['params']['freight'] = 0; // 运费
|
|
|
|
+ $data['params']['number'] = "yxj" . rand(1000, 9999) . time(); // 订单编号
|
|
|
|
+ $data['params']['create_time'] = $order_pre['create_time']; // 创建时间
|
|
|
|
+ $data['params']['whitebean'] = 0; // 白豆个数
|
|
for ($i = 0; $i < $count; $i++) {
|
|
for ($i = 0; $i < $count; $i++) {
|
|
- $data[$i]['buy_number'] = $order_pre['buy_number'][$i]; // 循环写入购买数量
|
|
|
|
- $data['money'] = $data['money'] + $data[$i]['c_freight'] + $data[$i]['money']; // 总费用
|
|
|
|
- $data['freight'] = $data['freight'] + $data[$i]['c_freight']; // 总运费
|
|
|
|
- $data['whitebean'] = $data['whitebean'] + $data[$i]['c_whitebean']; // 总白豆数
|
|
|
|
- }
|
|
|
|
- $preAddMoney = Db::name('order_pre')->where('pre_id', $pre_id)->setInc('money', $data['money']);
|
|
|
|
|
|
+ $data[$i]['buy_number'] = $order_pre['buy_number'][$i]; // 循环写入购买数量
|
|
|
|
+ $data[$i]['zongmoney'] = $order_pre['buy_number'][$i] * $data[$i]['zongmoney']+ $data[$i]['c_freight']; // 循环写入单个商品总价
|
|
|
|
+ $data['params']['freight'] = $data['params']['freight'] + $data[$i]['c_freight']; // 总运费
|
|
|
|
+ $data['params']['money'] = $data['params']['money'] + $data[$i]['zongmoney']; // 总费用
|
|
|
|
+ $data['params']['whitebean'] = $data['params']['whitebean'] + $data[$i]['c_whitebean'] * $order_pre['buy_number'][$i]; // 总白豆数
|
|
|
|
+ }
|
|
|
|
+ // 把统计出来的总价,写入数据库
|
|
|
|
+ $preAddMoney = Db::name('order_pre')->where('pre_id', $pre_id)->setInc('money', $data['params']['money']);
|
|
|
|
+ $order['params'] = $data['params'];
|
|
|
|
+ unset($data['params']);
|
|
|
|
+ $order['order'] = $data;
|
|
|
|
+ // 查出用户地址
|
|
|
|
+ $order['address'] = Address::where('user_id', $order_pre['user_id'])->order('is_default desc')->select();
|
|
if ($data && $preAddMoney) {
|
|
if ($data && $preAddMoney) {
|
|
- return $this->result('', $data, 200);
|
|
|
|
|
|
+ return $this->result('', $order, 200);
|
|
} else {
|
|
} else {
|
|
return $this->result('网络错误', [], 100);
|
|
return $this->result('网络错误', [], 100);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
|
|
+ * 支付订单数量修改
|
|
|
|
+ * @ApiMethod (POST)
|
|
|
|
+ * @param string $pre_id 订单提交返回的值
|
|
|
|
+ * @param string $buy_number 修改后数量
|
|
|
|
+ * @param string $position 修改的第几个
|
|
|
|
+ */
|
|
|
|
+ public function updBuyNumber()
|
|
|
|
+ {
|
|
|
|
+ $params = $this->request->post();
|
|
|
|
+ $rules = [
|
|
|
|
+ 'pre_id' => 'require',
|
|
|
|
+ 'buy_number' => 'require',
|
|
|
|
+ 'position' => 'require',
|
|
|
|
+ ];
|
|
|
|
+ $msg = [
|
|
|
|
+ 'pre_id.require' => '网络错误',
|
|
|
|
+ 'buy_number.require' => '网络错误',
|
|
|
|
+ 'position.require' => '网络错误',
|
|
|
|
+ ];
|
|
|
|
+ $validate = $this->validate($params, $rules, $msg);
|
|
|
|
+ if (is_string($validate)) {
|
|
|
|
+ return $this->result($validate, [], 100);
|
|
|
|
+ }
|
|
|
|
+ $order_pre = Db::name('order_pre')->where('pre_id', $params['pre_id'])->find();
|
|
|
|
+ if (!$order_pre) {
|
|
|
|
+ return $this->result('未找到该订单', [], 100);
|
|
|
|
+ }
|
|
|
|
+ $buynumber = explode(',', $order_pre['buy_number']);
|
|
|
|
+ foreach ($buynumber as $k => $v) {
|
|
|
|
+ if ($k == $params['position']) {
|
|
|
|
+ $buynumber[$k] = $params['buy_number'];
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ $str = implode(',', $buynumber);
|
|
|
|
+ $upd = Db::name('order_pre')->where('pre_id', $params['pre_id'])->update(['buy_number' => $str]);
|
|
|
|
+ if ($upd) {
|
|
|
|
+ return $this->result('成功', $params['pre_id'], 200);
|
|
|
|
+ } else {
|
|
|
|
+ return $this->result('点击频率过高', [], 100);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
* 支付订单
|
|
* 支付订单
|
|
* @ApiMethod (POST)
|
|
* @ApiMethod (POST)
|
|
* @param string $pre_id 预存id
|
|
* @param string $pre_id 预存id
|
|
@@ -196,6 +253,29 @@ class Order extends Api
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
|
|
+ * 是否设置了余额支付密码
|
|
|
|
+ * @ApiMethod (POST)
|
|
|
|
+ * @param string $user_id 用户id
|
|
|
|
+ */
|
|
|
|
+ public function issetpaypwd()
|
|
|
|
+ {
|
|
|
|
+ $user_id = $this->request->post('user_id');
|
|
|
|
+ if (!$user_id) {
|
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
|
+ }
|
|
|
|
+ $userinfo = UsersModel::where('user_id', $user_id)->find();
|
|
|
|
+ if ($userinfo) {
|
|
|
|
+ if ($userinfo['is_setpaypwd'] == 0) {
|
|
|
|
+ return $this->result('还未设置支付密码', [], 90);
|
|
|
|
+ } else {
|
|
|
|
+ return $this->result('正确', [], 200);
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
* 全部订单
|
|
* 全部订单
|
|
* @ApiMethod (POST)
|
|
* @ApiMethod (POST)
|
|
* @param string $user_id 用户id
|
|
* @param string $user_id 用户id
|
|
@@ -281,11 +361,32 @@ class Order extends Api
|
|
if (!$o_id) {
|
|
if (!$o_id) {
|
|
return $this->result('网络错误', [], 100);
|
|
return $this->result('网络错误', [], 100);
|
|
}
|
|
}
|
|
- $orderInfo = OrderModel::with(['OrderCommodityModel', 'OrderAddress'])->where('o_id', $o_id)->find();
|
|
|
|
|
|
+ $orderInfo = OrderModel::with(['OrderCommodityModel', 'OrderAddress'])
|
|
|
|
+ ->where('o_id', $o_id)
|
|
|
|
+ ->find()
|
|
|
|
+ ->toArray();
|
|
|
|
+ $orderInfo['wecharpay'] = Db::name('order_wechatpay')->where('o_id',$orderInfo['o_id'])->find();
|
|
|
|
+ unset($orderInfo['wecharpay']['o_id']);
|
|
|
|
+ unset($orderInfo['wecharpay']['w_id']);
|
|
|
|
+ if (!$orderInfo) {
|
|
|
|
+ $orderInfo = [];
|
|
|
|
+ } else {
|
|
|
|
+ foreach ($orderInfo['order_commodity_model'] as &$n) {
|
|
|
|
+ $commodity = CommodityModel::where('c_id', $n['c_id'])->field('c_name')->find();
|
|
|
|
+ if (!$commodity) {
|
|
|
|
+ $n['c_name'] = '已下架商品';
|
|
|
|
+ } else {
|
|
|
|
+ $n['c_name'] = $commodity['c_name'];
|
|
|
|
+ }
|
|
|
|
+ $n['c_money'] = $n['c_vipprice'] * $n['buy_number']; // c_vipprice存的是颜色商品的价格,而不是商品的初始价格
|
|
|
|
+ $n['money'] = $n['c_money'] + $n['c_freight'];
|
|
|
|
+ //$n['freight'] = $n['c_freight'] * $n['buy_number'];
|
|
|
|
+ }
|
|
|
|
+ }
|
|
if ($orderInfo) {
|
|
if ($orderInfo) {
|
|
return $this->result('', $orderInfo, 200);
|
|
return $this->result('', $orderInfo, 200);
|
|
} else {
|
|
} else {
|
|
- return $this->result('网络错误', [], 100);
|
|
|
|
|
|
+ return $this->result('暂无数据', [], 100);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -300,7 +401,17 @@ class Order extends Api
|
|
if (!$o_id) {
|
|
if (!$o_id) {
|
|
return $this->result('网络错误', [], 100);
|
|
return $this->result('网络错误', [], 100);
|
|
}
|
|
}
|
|
- $order = OrderModel::with(['OrderCommodityModel', 'OrderAddress'])->where('o_id', $o_id)->find();
|
|
|
|
|
|
+ $order = OrderModel::with(['OrderCommodityModel', 'OrderAddress'])->where('o_id', $o_id)->find()->toArray();
|
|
|
|
+ foreach ($order['order_commodity_model'] as &$n) {
|
|
|
|
+ $commodity = CommodityModel::where('c_id', $n['c_id'])->field('c_name,c_images')->find();
|
|
|
|
+ if (!$commodity) {
|
|
|
|
+ $n['c_name'] = '已下架商品';
|
|
|
|
+ } else {
|
|
|
|
+ $n['c_name'] = $commodity['c_name'];
|
|
|
|
+ $order['c_images'][] = $commodity['c_images'];
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ }
|
|
$model = new Logistics();
|
|
$model = new Logistics();
|
|
$res = $model->logistics($order);
|
|
$res = $model->logistics($order);
|
|
return $res;
|
|
return $res;
|
|
@@ -318,6 +429,14 @@ class Order extends Api
|
|
return $this->result('网络错误', '', 100);
|
|
return $this->result('网络错误', '', 100);
|
|
}
|
|
}
|
|
$orderInfo = OrderModel::with(['OrderCommodityModel', 'OrderAddress'])->where('o_id', $o_id)->find();
|
|
$orderInfo = OrderModel::with(['OrderCommodityModel', 'OrderAddress'])->where('o_id', $o_id)->find();
|
|
|
|
+ foreach ($orderInfo['order_commodity_model'] as $n) {
|
|
|
|
+ $commodity = CommodityModel::where('c_id', $n['c_id'])->field('c_name')->find();
|
|
|
|
+ if (!$commodity) {
|
|
|
|
+ $n['c_name'] = '已下架商品';
|
|
|
|
+ } else {
|
|
|
|
+ $n['c_name'] = $commodity['c_name'];
|
|
|
|
+ }
|
|
|
|
+ }
|
|
if ($orderInfo) {
|
|
if ($orderInfo) {
|
|
return $this->result('', $orderInfo, 200);
|
|
return $this->result('', $orderInfo, 200);
|
|
} else {
|
|
} else {
|
|
@@ -343,27 +462,6 @@ class Order extends Api
|
|
if (!isset($params['money'])) {
|
|
if (!isset($params['money'])) {
|
|
return $this->result('网络错误', [], 100);
|
|
return $this->result('网络错误', [], 100);
|
|
}
|
|
}
|
|
- $files = $_FILES;
|
|
|
|
- if ($files) {
|
|
|
|
- $imageArr = Array();
|
|
|
|
- foreach ($files as $file) {
|
|
|
|
- $imageName = $file['name'];
|
|
|
|
- //后缀名
|
|
|
|
- $ext = strtolower(substr(strrchr($imageName, '.'), 1));
|
|
|
|
- //保存文件名
|
|
|
|
- $fileName = uniqid();
|
|
|
|
- $tmp = $file['tmp_name'];
|
|
|
|
- //保存 = 路径 + 文件名 + 后缀名
|
|
|
|
- $imageSavePath = ROOT_PATH . 'public' . DS . 'uploads/images/' . $fileName . '.' . $ext;
|
|
|
|
- $info = move_uploaded_file($tmp, $imageSavePath);
|
|
|
|
- if ($info) {
|
|
|
|
- $path = "/uploads/images/" . $fileName . '.' . $ext;
|
|
|
|
- array_push($imageArr, $path);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- //最终生成的字符串路径
|
|
|
|
- $params['images'] = implode(',', $imageArr);
|
|
|
|
- }
|
|
|
|
//修改订单状态
|
|
//修改订单状态
|
|
$order = OrderModel::where('o_id', $params['o_id'])->find();
|
|
$order = OrderModel::where('o_id', $params['o_id'])->find();
|
|
$data = array(
|
|
$data = array(
|
|
@@ -371,6 +469,9 @@ class Order extends Api
|
|
'tuikuan_state' => 3,
|
|
'tuikuan_state' => 3,
|
|
'state_save' => $order['state']
|
|
'state_save' => $order['state']
|
|
);
|
|
);
|
|
|
|
+ if(isset($params['files'])) {
|
|
|
|
+ $params['images'] = implode(',',$params['files']);
|
|
|
|
+ }
|
|
$params['money'] = $order['money'];
|
|
$params['money'] = $order['money'];
|
|
$params['create_time'] = date('Y-m-d H:i:s', time());
|
|
$params['create_time'] = date('Y-m-d H:i:s', time());
|
|
$updOrder = OrderModel::where('o_id', $params['o_id'])->Update($data);
|
|
$updOrder = OrderModel::where('o_id', $params['o_id'])->Update($data);
|
|
@@ -382,7 +483,34 @@ class Order extends Api
|
|
return $this->result('申请失败', [], 100);
|
|
return $this->result('申请失败', [], 100);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 退款图片上传
|
|
|
|
+ * @ApiMethod (POST)
|
|
|
|
+ * @param File $files 图片
|
|
|
|
+ */
|
|
|
|
+ public function upload()
|
|
|
|
+ {
|
|
|
|
+ $files = $_FILES;
|
|
|
|
+ $imageArr = Array();
|
|
|
|
+ foreach ($files as $file) {
|
|
|
|
+ $imageName = $file['name'];
|
|
|
|
+ //后缀名
|
|
|
|
+ $ext = strtolower(substr(strrchr($imageName, '.'), 1));
|
|
|
|
+ //保存文件名
|
|
|
|
+ $fileName = uniqid();
|
|
|
|
+ $tmp = $file['tmp_name'];
|
|
|
|
+ //保存 = 路径 + 文件名 + 后缀名
|
|
|
|
+ $imageSavePath = ROOT_PATH . 'public' . DS . 'uploads/images/' . $fileName . '.' . $ext;
|
|
|
|
+ $info = move_uploaded_file($tmp, $imageSavePath);
|
|
|
|
+ if ($info) {
|
|
|
|
+ $path = config('site.httpurl')."/uploads/images/" . $fileName . '.' . $ext;
|
|
|
|
+ array_push($imageArr, $path);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ //最终生成的字符串路径
|
|
|
|
+ $imagePathStr = implode(',', $imageArr);
|
|
|
|
+ return $imagePathStr;
|
|
|
|
+ }
|
|
/**
|
|
/**
|
|
* 取消退款
|
|
* 取消退款
|
|
* @ApiMethod (POST)
|
|
* @ApiMethod (POST)
|
|
@@ -419,6 +547,14 @@ class Order extends Api
|
|
return $this->result('网络错误', [], 100);
|
|
return $this->result('网络错误', [], 100);
|
|
}
|
|
}
|
|
$orderInfo = OrderModel::with(['OrderCommodityModel', 'OrderAddress', 'Torder'])->where('o_id', $o_id)->find();
|
|
$orderInfo = OrderModel::with(['OrderCommodityModel', 'OrderAddress', 'Torder'])->where('o_id', $o_id)->find();
|
|
|
|
+ foreach ($orderInfo['order_commodity_model'] as $n) {
|
|
|
|
+ $commodity = CommodityModel::where('c_id', $n['c_id'])->field('c_name')->find();
|
|
|
|
+ if (!$commodity) {
|
|
|
|
+ $n['c_name'] = '已下架商品';
|
|
|
|
+ } else {
|
|
|
|
+ $n['c_name'] = $commodity['c_name'];
|
|
|
|
+ }
|
|
|
|
+ }
|
|
if ($orderInfo) {
|
|
if ($orderInfo) {
|
|
return $this->result('', $orderInfo, 200);
|
|
return $this->result('', $orderInfo, 200);
|
|
} else {
|
|
} else {
|
|
@@ -439,21 +575,21 @@ class Order extends Api
|
|
$jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
|
|
$jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
|
|
//将json格式转成数组格式 $result['out_trade_no']
|
|
//将json格式转成数组格式 $result['out_trade_no']
|
|
$result = json_decode($jsonXml, true);
|
|
$result = json_decode($jsonXml, true);
|
|
|
|
+ Cache::set('result',$result);
|
|
if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
|
|
if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
|
|
$order = OrderModel::where('number', $result['out_trade_no'])->find();
|
|
$order = OrderModel::where('number', $result['out_trade_no'])->find();
|
|
//修改订单状态
|
|
//修改订单状态
|
|
$updOederstate = Db::name('order')->where('o_id', $order['o_id'])->update(['state' => 2]);
|
|
$updOederstate = Db::name('order')->where('o_id', $order['o_id'])->update(['state' => 2]);
|
|
- if ($updOederstate) {
|
|
|
|
|
|
+ $updwhitebean = Db::name('users')->where('user_id', $order['user_id'])->setInc('user_whitebean', $order['whitebeon']);
|
|
|
|
+ if ($updOederstate && $updwhitebean) {
|
|
$arr = array(
|
|
$arr = array(
|
|
'return_code' => 'SUCCESS',
|
|
'return_code' => 'SUCCESS',
|
|
'return_msg' => 'OK',
|
|
'return_msg' => 'OK',
|
|
);
|
|
);
|
|
return $this->arrayToXml($arr);
|
|
return $this->arrayToXml($arr);
|
|
}
|
|
}
|
|
-
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* 微信退款订单回调
|
|
* 微信退款订单回调
|
|
* 可以通过@ApiInternal忽略请求的方法
|
|
* 可以通过@ApiInternal忽略请求的方法
|