Order.php 15 KB

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