Order.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\library\AliPay;
  4. use think\cache\driver\Redis;
  5. use think\Db;
  6. use think\Exception;
  7. use EasyWeChat\Factory;
  8. use think\Session;
  9. use function Sodium\add;
  10. /**
  11. * @title 订单
  12. * @controller GoodsOrder
  13. * @group base
  14. */
  15. class Order extends Base
  16. {
  17. public function initialize()
  18. {
  19. parent::initialize();
  20. parent::check_login();
  21. }
  22. /**
  23. * @title 生成订单(立即购买 )
  24. * @desc 生成订单(立即购买 )
  25. * @author Gavin
  26. * @url /api/Order/createOrder
  27. * @method POST
  28. * @header name:Authorization require:1 desc:Token
  29. * @param name:id type:int require:1 default:-- desc:藏品id
  30. * @param name:num type:int require:1 default:1 desc:数量
  31. * @param name:pay_type type:string require:1 default:wx desc:wx:微信zfb:支付宝
  32. *
  33. * @return name:order_no type:int require:0 default:0 desc:订单号
  34. * @return name:pay type:string require:0 default:0 desc:支付信息
  35. */
  36. public function createOrder()
  37. {
  38. $id = input('id');
  39. $num = input('num',1);
  40. $pay_type = input('pay_type','wx');
  41. if (!$id || !$num) $this->error('参数错误');
  42. $user = getMemberInfoHash($this->uid); //获取用户信息
  43. if ($user['is_auth']==0) $this->error('请实名认证后购买!');
  44. $coll_info = getCollectionInfoHash($id);
  45. if ($coll_info['is_deleted']==1 || $coll_info['status']==0) $this->error('藏品已下架');
  46. $inventory = getCollectionInventory($id);
  47. if ($inventory<1) $this->error('已售罄');
  48. if ($user['vip']==2){
  49. $advance_minutes = getAdvanceMinutes(); //获取vip提前抢购分钟
  50. $sell_time = strtotime($coll_info['sell_time'])-($advance_minutes*60);
  51. }else{
  52. $sell_time = strtotime($coll_info['sell_time']);
  53. }
  54. if ($sell_time>time()) $this->error('商品还未开始售卖!请耐心等待');
  55. $snap_card = getMembercard($this->uid); //获取用户抢购卡数量
  56. if ($snap_card<1) $this->error('抢购卡不足,无法抢购');
  57. //获取用户已经购买数量
  58. $userByCount = getByCount($this->uid,$id);
  59. if ($coll_info['buy_count']<($userByCount+$num)) $this->error('每人限购'.$coll_info['buy_count'].'个');
  60. //获取是否已经铸造hash
  61. $hashCount = getLenCollection($id);
  62. if (!$hashCount || $hashCount<$num) $this->error('hash未铸造,无法购买');
  63. //先减掉库存
  64. loseCollectionInventory($id,$num);
  65. //先减掉抢购卡数量
  66. loseMembercard($this->uid);
  67. //先增加购买数量
  68. IncrByCount($this->uid,$id,$num);
  69. $com = true;
  70. Db::startTrans();
  71. try {
  72. $order_no = get_order_sn();
  73. $total_fee = bcmul($coll_info['price'],$num,2);
  74. $order_int =[
  75. 'mid' => $this->uid,
  76. 'c_id' => $id,
  77. 'inventory' => $coll_info['inventory'],
  78. 'order_no' => $order_no,
  79. 'num' => $num,
  80. 'pro_info' => json_encode($coll_info),
  81. 'pay_type' => $pay_type,
  82. 'pay_price' => $total_fee
  83. ];
  84. Db::name('store_order')->insert($order_int);
  85. $body = '象寻购买藏品';
  86. switch ($pay_type){
  87. case 'wx':
  88. $config = retrunWxConfig();
  89. $total_fee = $total_fee * 100;
  90. $config['notify_url'] = $this->request->root(true).'/api/Pay/WxOrderNotify';
  91. $app = Factory::payment($config);
  92. $result = $app->order->unify([
  93. 'body' => $body,
  94. 'out_trade_no' => $order_no,
  95. 'total_fee' => $total_fee,
  96. 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
  97. ]);
  98. if ($result['return_code']=='SUCCESS'){
  99. $jssdk = $app->jssdk;
  100. $order1 = $jssdk->appConfig($result['prepay_id']);
  101. Db::name('store_order')->where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
  102. $retrun_data['order_no'] = $order_no;
  103. $retrun_data['pay'] = $order1;
  104. //减少数据库库存
  105. Db::name('store_collection')->where('id',$id)->setDec('now_inventory',$num);
  106. //减少用户抢购卡数量
  107. Db::name('store_member')->where('id',$this->uid)->setDec('snap_card');
  108. Db::commit();
  109. }else{
  110. $com=false;
  111. Db::rollback();
  112. }
  113. break;
  114. case 'zfb':
  115. $zfb = new AliPay();
  116. $notify_url = $this->request->root(true).'/api/Pay/alipayOrderNotify';//回调地址
  117. $order = $zfb->aliPay($body, $total_fee, $order_no, $notify_url);//调用支付宝支付的方法
  118. $retrun_data['order_no'] = $order_no;
  119. $retrun_data['pay'] = $order;
  120. //减少数据库库存
  121. Db::name('store_collection')->where('id',$id)->setDec('now_inventory',$num);
  122. //减少用户抢购卡数量
  123. Db::name('store_member')->where('id',$this->uid)->setDec('snap_card');
  124. Db::commit();
  125. break;
  126. }
  127. }catch (\Exception $e){
  128. $com=false;
  129. Db::rollback();
  130. }
  131. if ($com){
  132. // $this->savetest($order_no);
  133. $this->success('成功',$retrun_data);
  134. }else{
  135. //加上库存
  136. addCollectionInventory($id,$num);
  137. //加上抢购卡数量
  138. addMembercard($this->uid);
  139. //减少用户购买数量
  140. DecrByCount($this->uid,$id,$num);
  141. $this->error('抢购失败,请稍后重试');
  142. }
  143. }
  144. /**
  145. * @title 我的订单-待支付、已购买
  146. * @desc 我的订单-待支付、已购买
  147. * @author Gavin
  148. * @url /api/Order/getMyOrderList
  149. * @method POST
  150. * @header name:Authorization require:1 desc:Token
  151. * @param name:status type:int : default:0 desc:0:待支付1:已购买
  152. * @param name:page type:int : default:1 desc:页数
  153. * @param name:page_num type:int : default:20 desc:每页数
  154. *
  155. * @return name:order_no type:string default:-- desc:订单号
  156. * @return name:num type:int default:-- desc:数量
  157. * @return name:pay_price type:string default:-- desc:订单金额
  158. * @return name:status type:int default:-- desc:类型0:待支付1:已支付
  159. * @return name:cancel_time type:string default:-- desc:待支付自动取消时间
  160. * @return name:pay_type type:string default:-- desc:支付方式wx:微信zfb:支付宝
  161. * @return name:create_at type:string default:-- desc:创建时间
  162. * @return name:pro_info@name type:string default:-- desc:藏品名称
  163. * @return name:pro_info@cover type:string default:-- desc:藏品图片
  164. * @return name:pro_info@price type:string default:-- desc:藏品单价
  165. * @return name:pro_info@auth_img type:string default:-- desc:藏品作者头像
  166. * @return name:pro_info@auth_name type:string default:-- desc:藏品作者名称
  167. */
  168. public function getMyOrderList(){
  169. $status = input('status',0);
  170. $where = [
  171. 'is_deleted'=>0,
  172. 'status'=>$status,
  173. 'mid'=>$this->uid
  174. ];
  175. $count = Db::name('store_order')->where($where)->count();
  176. $list = Db::name('store_order')
  177. ->where($where)
  178. ->field('id,c_id,order_no,num,pro_info,status,create_at,pay_price,pay_type')
  179. ->order('id desc')
  180. ->limit($this->off_set,$this->page_num)
  181. ->select();
  182. //自动取消分钟数
  183. $cancel_time = getCancelTime();
  184. foreach ($list as &$v){
  185. $v['pro_info'] = json_decode($v['pro_info'],true);
  186. if ($v['status']==0){
  187. $v['cancel_time'] = date('Y-m-d H:i:s',strtotime($v['create_at'])+($cancel_time*60));
  188. }
  189. }
  190. $this->success('成功',compact('count','list'));
  191. }
  192. /**
  193. * @title 待支付、已购买订单详情
  194. * @desc 待支付、已购买订单详情
  195. * @author Gavin
  196. * @url /api/Order/MyOrderListDetail
  197. * @method POST
  198. * @header name:Authorization require:1 desc:Token
  199. * @param name:order_id type:int : default:0 desc:订单ID
  200. *
  201. * @return name:order_no type:string default:-- desc:订单号
  202. * @return name:num type:int default:-- desc:数量
  203. * @return name:pay_price type:string default:-- desc:订单金额
  204. * @return name:status type:int default:-- desc:类型0:待支付1:已支付
  205. * @return name:cancel_time type:string default:-- desc:待支付自动取消时间
  206. * @return name:create_at type:string default:-- desc:创建时间
  207. * @return name:pay_at type:string default:-- desc:支付时间
  208. * @return name:pay_type type:string default:-- desc:支付方式wx:微信zfb:支付宝
  209. * @return name:pro_info@name type:string default:-- desc:藏品名称
  210. * @return name:pro_info@cover type:string default:-- desc:藏品图片
  211. * @return name:pro_info@price type:string default:-- desc:藏品单价
  212. * @return name:pro_info@auth_img type:string default:-- desc:藏品作者头像
  213. * @return name:pro_info@auth_name type:string default:-- desc:藏品作者名称
  214. */
  215. public function MyOrderListDetail(){
  216. $order_id = input('order_id');
  217. if (!$order_id) $this->error('参数错误');
  218. $order = Db::name('store_order')
  219. ->where('id',$order_id)
  220. ->where('mid',$this->uid)
  221. ->where('is_deleted',0)
  222. ->find();
  223. if (!$order) $this->error('订单不存在');
  224. //自动取消分钟数
  225. $cancel_time = getCancelTime();
  226. $order['pro_info'] = json_decode($order['pro_info'],true);
  227. if ($order['status']==0){
  228. $order['cancel_time'] = date('Y-m-d H:i:s',strtotime($order['create_at'])+($cancel_time*60));
  229. }
  230. $this->success('成功',$order);
  231. }
  232. /**
  233. * @title 待支付订单支付
  234. * @desc 待支付订单支付
  235. * @author Gavin
  236. * @url /api/Order/payOrder
  237. * @method POST
  238. * @header name:Authorization require:1 desc:Token
  239. * @param name:order_id type:int require:1 default:-- desc:订单id
  240. *
  241. * @return name:order_no type:int require:0 default:0 desc:订单号
  242. * @return name:pay type:string require:0 default:0 desc:支付信息
  243. */
  244. public function payOrder(){
  245. $order_id = input('order_id'); //订单id
  246. if (!$order_id) $this->error('参数错误');
  247. $order = Db::name('store_order')->where('id',$order_id)->where('is_deleted',0)->find();
  248. if (!$order) $this->error('订单不存在');
  249. if ($order['status']!=0) $this->error('订单已支付或已取消');
  250. $order_no = $order['order_no'];
  251. $total_fee = $order['pay_price'];
  252. $pay_type = $order['pay_type'];
  253. $body = '象寻购买藏品';
  254. switch ($pay_type){
  255. case 'wx':
  256. $config = retrunWxConfig();
  257. $total_fee = $total_fee * 100;
  258. $config['notify_url'] = $this->request->root(true).'/api/Pay/WxOrderNotify';
  259. $app = Factory::payment($config);
  260. $result = $app->order->unify([
  261. 'body' => $body,
  262. 'out_trade_no' => $order_no,
  263. 'total_fee' => $total_fee,
  264. 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
  265. ]);
  266. if ($result['return_code']=='SUCCESS') {
  267. $jssdk = $app->jssdk;
  268. $order1 = $jssdk->appConfig($result['prepay_id']);
  269. Db::name('store_order')->where('order_no', $order_no)->update(['wx_order' => json_encode($order1, true)]);
  270. $retrun_data['order_no'] = $order_no;
  271. $retrun_data['pay'] = $order1;
  272. $this->success('成功',$retrun_data);
  273. }else{
  274. $this->error('调起支付失败,请稍后重试');
  275. }
  276. break;
  277. case 'zfb':
  278. $zfb = new AliPay();
  279. $notify_url = $this->request->root(true).'/api/Pay/alipayOrderNotify';//回调地址
  280. $order1 = $zfb->aliPay($body, $total_fee, $order_no, $notify_url);//调用支付宝支付的方法
  281. $retrun_data['order_no'] = $order_no;
  282. $retrun_data['pay'] = $order1;
  283. $this->success('成功',$retrun_data);
  284. break;
  285. }
  286. }
  287. /**
  288. * @title 取消订单
  289. * @desc 取消订单
  290. * @author Gavin
  291. * @url /api/Order/cancelOrder
  292. * @method POST
  293. * @header name:Authorization require:1 desc:Token
  294. * @param name:order_id type:int require:1 default:-- desc:订单id
  295. */
  296. public function cancelOrder(){
  297. $order_id = input('order_id'); //订单id
  298. if (!$order_id) $this->error('参数错误');
  299. $order = Db::name('store_order')->where('id',$order_id)->where('is_deleted',0)->find();
  300. if (!$order) $this->error('订单不存在');
  301. if ($order['status']!=0) $this->error('订单已支付或已取消');
  302. $com = true;
  303. Db::startTrans();
  304. try {
  305. //修改订单状态
  306. Db::name('store_order')->where('id',$order_id)->update(['status'=>2,'cancel_at'=>date('Y-m-d H:i:s'),'cancel_state'=>2]);
  307. //增加数据库库存
  308. Db::name('store_collection')->where('id',$order['c_id'])->setInc('now_inventory',$order['num']);
  309. //增加用户抢购卡数量
  310. Db::name('store_member')->where('id',$order['mid'])->setInc('snap_card');
  311. Db::commit();
  312. }catch (\Exception $e){
  313. $com=false;
  314. Db::rollback();
  315. }
  316. if ($com){
  317. //加上库存
  318. addCollectionInventory($order['c_id'],$order['num']);
  319. //加上抢购卡数量
  320. addMembercard($this->uid);
  321. //减少用户购买数量
  322. DecrByCount($this->uid,$order['c_id'],$order['num']);
  323. $this->success('取消成功');
  324. }else{
  325. $this->error('取消失败,请稍后重试');
  326. }
  327. }
  328. /**
  329. * @title 我的订单-转赠
  330. * @desc 我的订单-转赠
  331. * @author Gavin
  332. * @url /api/Order/getMySendList
  333. * @method POST
  334. * @header name:Authorization require:1 desc:Token
  335. * @param name:page type:int : default:1 desc:页数
  336. * @param name:page_num type:int : default:20 desc:每页数
  337. *
  338. * @return name:order_no type:string default:-- desc:订单号
  339. * @return name:over_time type:string default:-- desc:转赠时间
  340. * @return name:status type:int default:-- desc:类型2:赠出3:获赠
  341. * @return name:send_name type:string default:-- desc:转赠者/受赠者
  342. * @return name:collectors_hash type:string default:-- desc:hash
  343. * @return name:pro_info@name type:string default:-- desc:藏品名称
  344. * @return name:pro_info@price type:string default:-- desc:藏品价格
  345. * @return name:pro_info@price type:string default:-- desc:藏品单价
  346. * @return name:pro_info@auth_img type:string default:-- desc:藏品作者头像
  347. * @return name:pro_info@auth_name type:string default:-- desc:藏品作者名称
  348. */
  349. public function getMySendList(){
  350. $where = [
  351. 'mid'=>$this->uid,
  352. ];
  353. $count = Db::name('store_order_info')->where($where)->whereIn('status','2,3')->count();
  354. $list = Db::name('store_order_info')
  355. ->where($where)
  356. ->whereIn('status','2,3')
  357. ->field('id,order_no,pro_info,over_time,create_at,status,to_mid,collectors_hash')
  358. ->order('id desc')
  359. ->limit($this->off_set,$this->page_num)
  360. ->select();
  361. foreach ($list as &$v){
  362. $v['pro_info'] = json_decode($v['pro_info'],true);
  363. $v['send_name'] = Db::name('store_member')->where('id',$v['to_mid'])->value('name');
  364. }
  365. $this->success('成功',compact('count','list'));
  366. }
  367. /**
  368. * @title 转赠订单详情
  369. * @desc 转赠订单详情
  370. * @author Gavin
  371. * @url /api/Order/getMySendListDetail
  372. * @method POST
  373. * @header name:Authorization require:1 desc:Token
  374. * @param name:order_id type:int : default:1 desc:订单ID
  375. *
  376. * @return name:order_no type:string default:-- desc:订单号
  377. * @return name:over_time type:string default:-- desc:转赠时间
  378. * @return name:status type:int default:-- desc:类型2:赠出3:获赠
  379. * @return name:send_name type:string default:-- desc:转赠者/受赠者
  380. * @return name:collectors_hash type:string default:-- desc:hash
  381. * @return name:pro_info@name type:string default:-- desc:藏品名称
  382. * @return name:pro_info@price type:string default:-- desc:藏品价格
  383. * @return name:pro_info@price type:string default:-- desc:藏品单价
  384. * @return name:pro_info@auth_img type:string default:-- desc:藏品作者头像
  385. * @return name:pro_info@auth_name type:string default:-- desc:藏品作者名称
  386. */
  387. public function getMySendListDetail(){
  388. $order_id = input('order_id'); //订单id
  389. if (!$order_id) $this->error('参数错误');
  390. $order = Db::name('store_order_info')
  391. ->where('id',$order_id)
  392. ->where('mid',$this->uid)
  393. ->find();
  394. if (!$order) $this->error('订单不存在');
  395. $order['pro_info'] = json_decode($order['pro_info'],true);
  396. $order['send_name'] = Db::name('store_member')->where('id',$order['to_mid'])->value('name');
  397. $this->success('成功',$order);
  398. }
  399. function savetest($order_no){
  400. $result['out_trade_no'] = $order_no;
  401. $order = Db::name('store_order')->where('order_no',$result['out_trade_no'])->find();
  402. if ($order['status']==0){
  403. Db::startTrans();
  404. try {
  405. Db::name('store_order')
  406. ->where('order_no',$result['out_trade_no'])
  407. ->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s'),'return_success_info'=>json_encode($result,true)]);
  408. $array = [];
  409. for ($i=0;$i<$order['num'];$i++){
  410. //获取排名
  411. $rank = getRanking($order['c_id'])+1;
  412. $tag = getTag($order['c_id'],$rank,$order['inventory']);
  413. saveRanking($order['c_id']);
  414. $company = '象寻数字科技(上海)有限公司';
  415. $company_hash = '';
  416. $company_hash_time = '';
  417. $collectors_hash = '';
  418. $date = [
  419. 'order_id'=>$order['id'],
  420. 'order_no'=>get_order_sn(),
  421. 'tag'=>$tag,
  422. 'mid'=>$order['mid'],
  423. 'pro_info'=>$order['pro_info'],
  424. 'company'=>$company,
  425. 'company_hash'=>$company_hash,
  426. 'company_hash_time'=>$company_hash_time,
  427. 'collectors_hash'=>$collectors_hash,
  428. 'collectors_hash_time'=>date('Y-m-d H:i:s')
  429. ];
  430. $array[] = $date;
  431. }
  432. Db::name('store_order_info')->insertAll($array);
  433. Db::commit();
  434. // return true;
  435. } catch (\Exception $e){
  436. Db::rollback();
  437. //return false;
  438. }
  439. }
  440. }
  441. }