Order.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\model\Commoditycolor;
  4. use app\api\model\Logistics;
  5. use app\api\model\OrderModel;
  6. use app\api\model\Torder;
  7. use app\api\model\UsersModel;
  8. use app\common\controller\Api;
  9. use app\common\lib\WxPay;
  10. use think\Cache;
  11. use think\Db;
  12. /**
  13. * 订单接口
  14. */
  15. class Order extends Api
  16. {
  17. protected $noNeedLogin = '*';
  18. protected $noNeedRight = '*';
  19. /**
  20. * 购物车总价统计
  21. * @ApiMethod (POST)
  22. * @param string $list colorid,number
  23. */
  24. public function carMoney()
  25. {
  26. $params = $this->request->post();
  27. if (!isset($params['list'])) {
  28. return $this->result('网络错误', [], 100);
  29. }
  30. $list = $params['list'];
  31. foreach ($list as $v) {
  32. $commoditycolor[] = Commoditycolor::where('colorid', $v)->find();
  33. }
  34. if ($commoditycolor) {
  35. $money = 0;
  36. $number = $params['number'];
  37. $count = count($number);
  38. for ($i = 0; $i < $count; $i++) {
  39. $money = $money + $commoditycolor[$i]['money'] * $number[$i];
  40. }
  41. return $this->result('', $money, 200);
  42. } else {
  43. return $this->result('网络错误', [], 100);
  44. }
  45. }
  46. /**
  47. * 订单先提交
  48. * @ApiMethod (POST)
  49. * @param string $user_id 用户id
  50. * @param string $list 商品参数c_id,buy_number,p_id,colorid
  51. */
  52. public function orderGenerate()
  53. {
  54. $params = $this->request->post();
  55. if (!isset($params['user_id'])) {
  56. return $this->result('网络错误', [], 100);
  57. }
  58. if (!isset($params['list'])) {
  59. return $this->result('网络错误', [], 100);
  60. }
  61. $list = $params['list'];
  62. $rules = [
  63. 'buy_number' => "require|number",
  64. 'colorid' => "require|number",
  65. ];
  66. $msg = [
  67. 'buy_number.require' => '未选择购买数量',
  68. 'colorid.require' => '未选择颜色',
  69. 'colorid.number' => '网络错误',
  70. 'buy_number.number' => '网络错误',
  71. ];
  72. foreach ($list as $v) {
  73. $validata = $this->validate($v, $rules, $msg);
  74. if (is_string($validata)) {
  75. return $this->result($validata, [], 100);
  76. }
  77. $colorids[] = $v['colorid']; //颜色id放在同一个数组里
  78. $buy_numbers[] = $v['buy_number']; // 购买数量放在同一个数组里
  79. }
  80. $colorid = implode(',', $colorids); // 颜色数组拆分成为字符串
  81. $buy_number = implode(',', $buy_numbers); //数量数组拆分成为字符串
  82. $data = array(
  83. 'user_id' => $params['user_id'],
  84. 'colorid' => $colorid,
  85. 'buy_number' => $buy_number,
  86. 'create_time' => date('Y-m-d H:i:s', time()),
  87. );
  88. $addPre = Db::name('order_pre')->insertGetId($data);
  89. if ($addPre) {
  90. return $this->result('', $addPre, 200);
  91. } else {
  92. return $this->result('请求失败,请重新购买', [], 100);
  93. }
  94. }
  95. /**
  96. * 支付订单显示
  97. * @ApiMethod (POST)
  98. * @param string $pre_id 订单提交返回的值
  99. */
  100. public function preOrderIndex()
  101. {
  102. $pre_id = $this->request->post('pre_id');
  103. if (!$pre_id) {
  104. return $this->result('网络错误', [], 100);
  105. }
  106. $order_pre = Db::name('order_pre')->where('pre_id', $pre_id)->find(); //查出预存订单
  107. $order_pre['colorid'] = explode(',', $order_pre['colorid']); // 批量拆分id
  108. $order_pre['buy_number'] = explode(',', $order_pre['buy_number']); // 批量拆分购买数量
  109. $count = count($order_pre['buy_number']);
  110. $commoditycolor = new Commoditycolor();
  111. for ($i = 0; $i < $count; $i++) {
  112. $data[] = $commoditycolor->alias('co')
  113. ->join('parameter p', 'co.p_id = p.p_id', 'left')
  114. ->join('commodity c', 'p.c_id = c.c_id', 'left')
  115. ->where('co.colorid', $order_pre['colorid'][$i])
  116. ->find(); // 循环查出购买的商品
  117. }
  118. $data['money'] = 0; // 总价
  119. $data['freight'] = 0; // 运费
  120. $data['number'] = "yxj" . rand(1000, 9999) . time(); // 订单编号
  121. $data['create_time'] = $order_pre['create_time']; // 创建时间
  122. $data['whitebean'] = 0; // 白豆个数
  123. for ($i = 0; $i < $count; $i++) {
  124. $data[$i]['buy_number'] = $order_pre['buy_number'][$i]; // 循环写入购买数量
  125. $data['money'] = $data['money'] + $data[$i]['c_freight'] + $data[$i]['money']; // 总费用
  126. $data['freight'] = $data['freight'] + $data[$i]['c_freight']; // 总运费
  127. $data['whitebean'] = $data['whitebean'] + $data[$i]['c_whitebean']; // 总白豆数
  128. }
  129. $preAddMoney = Db::name('order_pre')->where('pre_id', $pre_id)->setInc('money', $data['money']);
  130. if ($data && $preAddMoney) {
  131. return $this->result('', $data, 200);
  132. } else {
  133. return $this->result('网络错误', [], 100);
  134. }
  135. }
  136. /**
  137. * 支付订单
  138. * @ApiMethod (POST)
  139. * @param string $pre_id 预存id
  140. * @param string $list 商品参数,c_id,buy_number,p_id
  141. * @param string $user_id 用户id
  142. * @param string $money 总价
  143. * @param string $a_id 地址id
  144. * @param string $freight 运费
  145. * @param string $whitebean 总白豆数
  146. * @param string $create_time 创建时间
  147. * @param string $number 编号
  148. * @param string $user_paypwd 余额支付密码
  149. * @param string $type 0余额支付1第四方支付
  150. */
  151. public function orderPay()
  152. {
  153. $parames = $this->request->post();
  154. $rules = [
  155. 'pre_id' => 'require|number',
  156. 'user_id' => 'require',
  157. 'money' => 'require',
  158. 'a_id' => 'require',
  159. 'freight' => 'require',
  160. 'whitebean' => 'require',
  161. 'user_paypwd' => 'require',
  162. 'type' => 'require|max:1',
  163. ];
  164. $msg = [
  165. 'pre_id.require' => '网络错误1',
  166. 'user_id.require' => '网络错误2',
  167. 'money.require' => '网络错误3',
  168. 'a_id.require' => '网络错误4',
  169. 'freight.require' => '网络错误9',
  170. 'whitebean.require' => '网络错误10',
  171. 'user_paypwd.require' => '网络错误10',
  172. 'type.require' => '网络错误11',
  173. 'type.max' => '网络错误12',
  174. 'pre_id.number' => '网络错误13',
  175. ];
  176. $validata = $this->validate($parames, $rules, $msg);
  177. if (is_string($validata)) {
  178. return $this->result($validata, [], 100);
  179. }
  180. $order = new OrderModel();
  181. if ($parames['type'] == 0) {
  182. $res = $order->userMoneyPay($parames);
  183. return $res;
  184. }
  185. if ($parames['type'] == 1) {
  186. $res = $order->wechatOrder($parames);
  187. return $res;
  188. }
  189. }
  190. /**
  191. * 全部订单
  192. * @ApiMethod (POST)
  193. * @param string $user_id 用户id
  194. */
  195. public function allOrder()
  196. {
  197. $user_id = $this->request->post('user_id');
  198. if (!isset($user_id)) {
  199. return $this->result('网络错误', '', 100);
  200. }
  201. $order = new OrderModel();
  202. $data = $order->allOrder($user_id);
  203. return $data;
  204. }
  205. /**
  206. * 确认收货
  207. * @ApiMethod (POST)
  208. * @param string $o_id 订单id;
  209. */
  210. public function trueOrder()
  211. {
  212. $o_id = $this->request->post('o_id');
  213. if (!isset($o_id)) {
  214. return $this->result('网络错误', '', 100);
  215. }
  216. $order = Db::name('order')->where('o_id', $o_id)->find();
  217. $updOrder = OrderModel::where('o_id', $o_id)->update(['state' => 6]);
  218. $updUserWhitebean = Db::name('users')->where('user_id', $order['user_id'])->setInc('user_whitebean', $order['whitebeon']);
  219. if ($updOrder && $updUserWhitebean) {
  220. return $this->result('收货成功', '', 200);
  221. } else {
  222. return $this->result('网络错误', '', 100);
  223. }
  224. }
  225. /**
  226. * 取消订单
  227. * @ApiMethod (POST)
  228. * @param string $o_id 订单id;
  229. */
  230. public function orderCancel()
  231. {
  232. $o_id = $this->request->post('o_id');
  233. if (!isset($o_id)) {
  234. return $this->result('网络错误', '', 100);
  235. }
  236. $updOrder = OrderModel::where('o_id', $o_id)->update(['state' => 5]);
  237. if ($updOrder) {
  238. return $this->result('取消成功', '', 200);
  239. } else {
  240. return $this->result('网络错误', '', 100);
  241. }
  242. }
  243. /**
  244. * 删除订单
  245. * @ApiMethod (POST)
  246. * @param string $o_id 订单id;
  247. */
  248. public function delOeder()
  249. {
  250. $o_id = $this->request->post('o_id');
  251. if (!isset($o_id)) {
  252. return $this->result('网络错误', '', 100);
  253. }
  254. $updOrder = OrderModel::where('o_id', $o_id)->delete();
  255. if ($updOrder) {
  256. return $this->result('删除成功', '', 200);
  257. } else {
  258. return $this->result('网络错误', '', 100);
  259. }
  260. }
  261. /**
  262. * 各种订单详情
  263. * @ApiMethod (POST)
  264. * @param string $o_id 订单id
  265. */
  266. public function orderInfo()
  267. {
  268. $o_id = $this->request->post('o_id');
  269. if (!$o_id) {
  270. return $this->result('网络错误', [], 100);
  271. }
  272. $orderInfo = OrderModel::with(['OrderCommodityModel', 'OrderAddress'])->where('o_id', $o_id)->find();
  273. if ($orderInfo) {
  274. return $this->result('', $orderInfo, 200);
  275. } else {
  276. return $this->result('网络错误', [], 100);
  277. }
  278. }
  279. /**
  280. * 查看物流
  281. * @ApiMethod (POST)
  282. * @param string $o_id 订单id
  283. */
  284. public function logistics()
  285. {
  286. $o_id = $this->request->post('o_id');
  287. if (!$o_id) {
  288. return $this->result('网络错误', [], 100);
  289. }
  290. $order = OrderModel::with(['OrderCommodityModel', 'OrderAddress'])->where('o_id', $o_id)->find();
  291. $model = new Logistics();
  292. $res = $model->logistics($order);
  293. return $res;
  294. }
  295. /**
  296. * 退款订单显示
  297. * @ApiMethod (POST)
  298. * @param string $o_id 订单id
  299. */
  300. public function torderIndex()
  301. {
  302. $o_id = $this->request->post('o_id');
  303. if (!isset($o_id)) {
  304. return $this->result('网络错误', '', 100);
  305. }
  306. $orderInfo = OrderModel::with(['OrderCommodityModel', 'OrderAddress'])->where('o_id', $o_id)->find();
  307. if ($orderInfo) {
  308. return $this->result('', $orderInfo, 200);
  309. } else {
  310. return $this->result('网络错误', [], 100);
  311. }
  312. }
  313. /**
  314. * 退款提交
  315. * @ApiMethod (POST)
  316. * @param string $o_id 订单id
  317. * @param string $reason 原因
  318. * @param string $money 金额
  319. * @param string $content 说明
  320. * @param string $files 图片
  321. */
  322. public function subTorder()
  323. {
  324. $params = $this->request->post();
  325. if (!isset($params['o_id'])) {
  326. return $this->result('网络错误', [], 100);
  327. }
  328. if (!isset($params['money'])) {
  329. return $this->result('网络错误', [], 100);
  330. }
  331. $files = $_FILES;
  332. if ($files) {
  333. $imageArr = Array();
  334. foreach ($files as $file) {
  335. $imageName = $file['name'];
  336. //后缀名
  337. $ext = strtolower(substr(strrchr($imageName, '.'), 1));
  338. //保存文件名
  339. $fileName = uniqid();
  340. $tmp = $file['tmp_name'];
  341. //保存 = 路径 + 文件名 + 后缀名
  342. $imageSavePath = ROOT_PATH . 'public' . DS . 'uploads/images/' . $fileName . '.' . $ext;
  343. $info = move_uploaded_file($tmp, $imageSavePath);
  344. if ($info) {
  345. $path = "/uploads/images/" . $fileName . '.' . $ext;
  346. array_push($imageArr, $path);
  347. }
  348. }
  349. //最终生成的字符串路径
  350. $params['images'] = implode(',', $imageArr);
  351. }
  352. //修改订单状态
  353. $order = OrderModel::where('o_id', $params['o_id'])->find();
  354. $data = array(
  355. 'state' => 4,
  356. 'tuikuan_state' => 3,
  357. 'state_save' => $order['state']
  358. );
  359. $params['money'] = $order['money'];
  360. $params['create_time'] = date('Y-m-d H:i:s', time());
  361. $updOrder = OrderModel::where('o_id', $params['o_id'])->Update($data);
  362. $model = new Torder();
  363. $subTorder = $model->allowField(true)->save($params);
  364. if ($subTorder) {
  365. return $this->result('申请退款成功', [], 200);
  366. } else {
  367. return $this->result('申请失败', [], 100);
  368. }
  369. }
  370. /**
  371. * 取消退款
  372. * @ApiMethod (POST)
  373. * @param string $o_id 订单id
  374. */
  375. public function cancleTorder()
  376. {
  377. $o_id = $this->request->post('o_id');
  378. if (!isset($o_id)) {
  379. return $this->result('网络错误', [], 100);
  380. }
  381. $order = OrderModel::where('o_id', $o_id)->find();
  382. if (!$order) {
  383. return $this->result('未找到该订单', [], 100);
  384. }
  385. // 修改成为退款之前的状态
  386. $updOrder = OrderModel::where('o_id', $o_id)->update(['state' => $order['state_save']]);
  387. if ($updOrder) {
  388. return $this->result('取消成功', [], 200);
  389. } else {
  390. return $this->result('失败', [], 100);
  391. }
  392. }
  393. /**
  394. * 退款订单详情
  395. * @ApiMethod (POST)
  396. * @param string $o_id 订单id
  397. */
  398. public function torderInfo()
  399. {
  400. $o_id = $this->request->post('o_id');
  401. if (!isset($o_id)) {
  402. return $this->result('网络错误', [], 100);
  403. }
  404. $orderInfo = OrderModel::with(['OrderCommodityModel', 'OrderAddress', 'Torder'])->where('o_id', $o_id)->find();
  405. if ($orderInfo) {
  406. return $this->result('', $orderInfo, 200);
  407. } else {
  408. return $this->result('未找到该订单', [], 100);
  409. }
  410. }
  411. /**
  412. * 微信订单支付回调
  413. * 可以通过@ApiInternal忽略请求的方法
  414. * @ApiInternal
  415. */
  416. public function order_notify()
  417. {
  418. //获取返回的xml格式数据
  419. $payXml = file_get_contents("php://input");
  420. //将xml格式转化为json格式
  421. $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
  422. //将json格式转成数组格式 $result['out_trade_no']
  423. $result = json_decode($jsonXml, true);
  424. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  425. $order = OrderModel::where('number', $result['out_trade_no'])->find();
  426. //修改订单状态
  427. $updOederstate = Db::name('order')->where('o_id', $order['o_id'])->update(['state' => 2]);
  428. if ($updOederstate) {
  429. $arr = array(
  430. 'return_code' => 'SUCCESS',
  431. 'return_msg' => 'OK',
  432. );
  433. return $this->arrayToXml($arr);
  434. }
  435. }
  436. }
  437. /**
  438. * 微信退款订单回调
  439. * 可以通过@ApiInternal忽略请求的方法
  440. * @ApiInternal
  441. */
  442. public function notify_refund()
  443. {
  444. $payXml = file_get_contents("php://input");
  445. //将xml格式转化为json格式
  446. $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
  447. //将json格式转成数组格式 $result['out_trade_no']
  448. $result = json_decode($jsonXml, true);
  449. if ($result['return_code'] == "SUCCESS") {
  450. $str = $result['req_info'];
  451. // 对加密信息进行解密,需要用到商户秘钥
  452. $data = $this->req_info_decrypt($str);
  453. // Cache::set('req_info', $data);
  454. if ($data['refund_status'] == "SUCCESS") {
  455. //修改退款状态
  456. $updstate = Db::name("order")->where('number', $data['out_trade_no'])->update(['tuikuan_state' => '1']);
  457. $arr = array(
  458. 'return_code' => 'SUCCESS',
  459. 'return_msg' => 'OK',
  460. );
  461. return $this->arrayToXml($arr);
  462. }
  463. }
  464. Cache::set('aaa', $result);
  465. $arr = array(
  466. 'return_code' => 'SUCCESS',
  467. 'return_msg' => 'OK',
  468. );
  469. return $this->arrayToXml($arr);
  470. }
  471. /**
  472. * 信息解密
  473. * 对加密信息进行解密,需要用到商户秘钥
  474. * 可以通过@ApiInternal忽略请求的方法
  475. * @ApiInternal
  476. */
  477. public function req_info_decrypt($str)
  478. {
  479. //微信商户key
  480. $key = "b3ae6bbf3cc4fa017eb169ae219e2c27";
  481. $str = base64_decode($str);
  482. $xml = openssl_decrypt($str, 'aes-256-ecb', md5($key), OPENSSL_RAW_DATA);
  483. return json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
  484. }
  485. /**
  486. * 数组转xml
  487. * @ApiInternal
  488. */
  489. public function arrayToXml($arr)
  490. {
  491. $xml = "<xml>";
  492. foreach ($arr as $key => $val) {
  493. if (is_numeric($val)) {
  494. $xml .= "<" . $key . ">" . $val . "</" . $key . ">";
  495. } else
  496. $xml .= "<" . $key . "><![CDATA[" . $val . "]]></" . $key . ">";
  497. }
  498. $xml .= "</xml>";
  499. return $xml;
  500. }
  501. }