Order.php 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\library\AliPay;
  4. use app\common\library\AliPay3;
  5. use app\common\library\HuijuH5Pay;
  6. use app\common\library\HuijuKjPay;
  7. use app\common\library\Jiyan;
  8. use think\cache\driver\Redis;
  9. use think\Db;
  10. use think\Exception;
  11. use EasyWeChat\Factory;
  12. use think\Session;
  13. use function Sodium\add;
  14. /**
  15. * @title 订单
  16. * @controller GoodsOrder
  17. * @group base
  18. */
  19. class Order extends Base
  20. {
  21. public function initialize()
  22. {
  23. parent::initialize();
  24. parent::check_login();
  25. }
  26. /**
  27. * @title 生成订单(立即购买 )
  28. * @desc 生成订单(立即购买 )
  29. * @author Gavin
  30. * @url /api/Order/createOrder
  31. * @method POST
  32. * @header name:Authorization require:1 desc:Token
  33. * @param name:id type:int require:1 default:-- desc:藏品id
  34. * @param name:num type:int require:1 default:1 desc:数量
  35. * @param name:pay_type type:string require:1 default:wx desc:wx:微信zfb:支付宝
  36. * @param name:from type:string require:1 default:wx desc:wx:微信公众号h5:网页
  37. *
  38. * @return name:order_no type:int require:0 default:0 desc:订单号
  39. * @return name:pay type:string require:0 default:0 desc:支付信息
  40. */
  41. public function createOrder()
  42. {
  43. $this->error('没有支付');
  44. $redis = new Redis([ 'select'=> 2]);
  45. $redis_value = $redis->get('order_buy'.$this->uid);
  46. if ($redis_value){
  47. $this->error('请求过快,请稍后重试');
  48. }else{
  49. $redis->set('order_buy'.$this->uid,1,1);
  50. }
  51. $id = input('id');
  52. $num = input('num',1);
  53. $pay_type = input('pay_type','wx');
  54. $from = input('from','wx');
  55. if (!$id || !$num) $this->error('参数错误');
  56. //极验数据
  57. // $lot_number = input('lot_number');
  58. // $captcha_output = input('captcha_output');
  59. // $pass_token = input('pass_token');
  60. // $gen_time = input('gen_time');
  61. // if (!$lot_number || !$captcha_output || !$pass_token || !$gen_time) $this->error('参数错误');
  62. //
  63. // $jy = new Jiyan();
  64. // $result = $jy->jy($lot_number,$captcha_output,$pass_token,$gen_time,2);
  65. // if ($result['result']=='fail') $this->error('校验失败,请稍后重试');
  66. $user = getMemberInfoHash($this->uid); //获取用户信息
  67. if ($user['is_auth']==0) $this->error('请实名认证后购买!');
  68. $coll_info = getCollectionInfoHash($id);
  69. if ($coll_info['is_deleted']==1 || $coll_info['status']==0) $this->error('藏品已下架');
  70. $inventory = getCollectionInventory($id);
  71. if ($inventory<$num) $this->error('库存不足');
  72. if ($inventory<1) $this->error('还有未支付的订单,您有可能捡漏哦!');
  73. if (!$coll_info['sold_out']) $this->error('已售罄');
  74. $cards = checkUseSnapcard($this->uid,$id,$coll_info['sell_time']);
  75. if (!$cards){
  76. if ($coll_info['state']!=1) $this->error('状态错误');
  77. $sell_time = strtotime($coll_info['sell_time']);
  78. if ($sell_time>time()) $this->error('商品还未开始售卖!请耐心等待');
  79. }
  80. if ($pay_type=='yhkj'){
  81. if (!$user['hj_pay_status']) $this->error('请签约银行卡后购买');
  82. }
  83. //获取用户已经购买数量
  84. $userByCount = getByCount($this->uid,$id);
  85. if ($coll_info['buy_count']<($userByCount+$num)) $this->error('每人限购'.$coll_info['buy_count'].'个');
  86. //获取是否已经铸造hash
  87. //$hashCount = getLenCollection($id);
  88. $hash = Db::name('hash2')->where('goods_id',$id)->where('success',1)->count();
  89. if (!$hash) $this->error('nft未上架,无法购买');
  90. // if (!$hashCount || $hashCount<$num) $this->error('hash未铸造,无法购买');
  91. if ($from=='wx'){
  92. if (!$user['openid']) $this->error('微信未授权,无法购买');
  93. }
  94. //先减掉库存
  95. loseCollectionInventory($id,$num);
  96. //先增加购买数量
  97. IncrByCount($this->uid,$id,$num);
  98. $order_no = get_order_sn();
  99. $total_fee = bcmul($coll_info['price'],$num,2);
  100. $redis_data = [
  101. 'mid'=>$this->uid,
  102. 'c_id'=>$id,
  103. 'order_no'=>$order_no,
  104. 'inventory'=>$coll_info['inventory'],
  105. 'num'=>$num,
  106. 'pro_info'=>json_encode($coll_info),
  107. 'status'=>0,
  108. 'create_at'=>date('Y-m-d H:i:s'),
  109. 'pay_price'=>$total_fee,
  110. 'pay_type'=>$pay_type
  111. ];
  112. $com = true;
  113. $retrun_data['order_no'] = $order_no;
  114. $retrun_data['pay'] = '';
  115. if ($com){
  116. //更新抢购卡使用记录
  117. if ($cards){
  118. Db::name('store_snap_card_log')->where('id',$cards[0])->update(['is_use'=>2,'update_at'=>date('Y-m-d H:i:s')]);
  119. }
  120. $redis = new Redis();
  121. //收集下单用户id
  122. setCollectionBuyUser($this->uid);
  123. $redis->hMSet('order_not_pay_'.$this->uid,[$order_no=>json_encode($redis_data,true)]); //存入redis
  124. $this->success('成功',$retrun_data);
  125. }else{
  126. //加上库存
  127. addCollectionInventory($id,$num);
  128. //减少用户购买数量
  129. DecrByCount($this->uid,$id,$num);
  130. $this->error('服务器繁忙,请稍后重试');
  131. }
  132. }
  133. /**
  134. * @title 我的订单-待支付、已购买
  135. * @desc 我的订单-待支付、已购买
  136. * @author Gavin
  137. * @url /api/Order/getMyOrderList
  138. * @method POST
  139. * @header name:Authorization require:1 desc:Token
  140. * @param name:status type:int : default:0 desc:0:待支付1:已购买
  141. * @param name:page type:int : default:1 desc:页数
  142. * @param name:page_num type:int : default:20 desc:每页数
  143. *
  144. * @return name:order_no type:string default:-- desc:订单号
  145. * @return name:num type:int default:-- desc:数量
  146. * @return name:pay_price type:string default:-- desc:订单金额
  147. * @return name:status type:int default:-- desc:类型0:待支付1:已支付
  148. * @return name:cancel_time type:string default:-- desc:待支付自动取消时间
  149. * @return name:pay_type type:string default:-- desc:支付方式wx:微信zfb:支付宝
  150. * @return name:create_at type:string default:-- desc:创建时间
  151. * @return name:pro_info@name type:string default:-- desc:藏品名称
  152. * @return name:pro_info@cover type:string default:-- desc:藏品图片
  153. * @return name:pro_info@price type:string default:-- desc:藏品单价
  154. * @return name:pro_info@auth_img type:string default:-- desc:藏品作者头像
  155. * @return name:pro_info@auth_name type:string default:-- desc:藏品作者名称
  156. */
  157. public function getMyOrderList(){
  158. $status = input('status',0);
  159. if ($status==0){
  160. $redis = new Redis();
  161. $key = 'order_not_pay_'.$this->uid;
  162. $count = $redis->hGetLen($key);
  163. $list = $redis->hGetvals($key);
  164. if ($list){
  165. //自动取消分钟数
  166. $cancel_time = getCancelTime();
  167. foreach ($list as $k=>&$v){
  168. $info = json_decode($v,true);
  169. $info['pro_info'] = json_decode($info['pro_info'],true);
  170. $info['cancel_time'] = date('Y-m-d H:i:s',strtotime($info['create_at'])+($cancel_time*60));
  171. $list[$k] = $info;
  172. }
  173. }
  174. }else{
  175. $where = [
  176. 'is_deleted'=>0,
  177. 'status'=>$status,
  178. 'mid'=>$this->uid
  179. ];
  180. $count = Db::name('store_order')->where($where)->count();
  181. $list = Db::name('store_order')
  182. ->where($where)
  183. ->field('id,c_id,order_no,num,pro_info,status,create_at,pay_price,pay_type')
  184. ->order('id desc')
  185. ->limit($this->off_set,$this->page_num)
  186. ->select();
  187. foreach ($list as &$v){
  188. $v['pro_info'] = json_decode($v['pro_info'],true);
  189. }
  190. }
  191. $this->success('成功',compact('count','list'));
  192. }
  193. /**
  194. * @title 待支付、已购买订单详情
  195. * @desc 待支付、已购买订单详情
  196. * @author Gavin
  197. * @url /api/Order/MyOrderListDetail
  198. * @method POST
  199. * @header name:Authorization require:1 desc:Token
  200. * @param name:order_no type:string default:0 desc:订单号
  201. * @param name:type type:int default:1 desc:1:待支付2:已支付
  202. *
  203. * @return name:order_no type:string default:-- desc:订单号
  204. * @return name:num type:int default:-- desc:数量
  205. * @return name:pay_price type:string default:-- desc:订单金额
  206. * @return name:status type:int default:-- desc:类型0:待支付1:已支付
  207. * @return name:cancel_time type:string default:-- desc:待支付自动取消时间
  208. * @return name:create_at type:string default:-- desc:创建时间
  209. * @return name:pay_at type:string default:-- desc:支付时间
  210. * @return name:pay_type type:string default:-- desc:支付方式wx:微信zfb:支付宝
  211. * @return name:pro_info@name type:string default:-- desc:藏品名称
  212. * @return name:pro_info@cover type:string default:-- desc:藏品图片
  213. * @return name:pro_info@price type:string default:-- desc:藏品单价
  214. * @return name:pro_info@auth_img type:string default:-- desc:藏品作者头像
  215. * @return name:pro_info@auth_name type:string default:-- desc:藏品作者名称
  216. */
  217. public function MyOrderListDetail(){
  218. $order_no = input('order_no');
  219. $type = input('type',1);
  220. if (!$order_no) $this->error('参数错误');
  221. if ($type==1){
  222. $redis = new Redis();
  223. $key = 'order_not_pay_'.$this->uid;
  224. $order = $redis->hGet($key,$order_no);
  225. $order = json_decode($order,true);
  226. }else{
  227. $order = Db::name('store_order')
  228. ->where('order_no',$order_no)
  229. ->where('mid',$this->uid)
  230. ->where('is_deleted',0)
  231. ->find();
  232. }
  233. if (!$order) $this->error('订单不存在');
  234. $order['pro_info'] = json_decode($order['pro_info'],true);
  235. //自动取消分钟数
  236. $cancel_time = getCancelTime();
  237. if ($order['status']==0){
  238. $order['cancel_time'] = date('Y-m-d H:i:s',strtotime($order['create_at'])+($cancel_time*60));
  239. }
  240. $this->success('成功',$order);
  241. }
  242. /**
  243. * 银行卡快捷支付发送短信
  244. * @url /api/Order/yhkjSms
  245. */
  246. public function yhkjSms(){
  247. //redis原子锁
  248. if (redisSetNx('yhkjSms'.$this->uid,3)){
  249. $user = getMemberInfoHash($this->uid); //获取用户信息
  250. $order_no = input('order_no'); //订单号
  251. if (!$order_no) $this->error('参数错误');
  252. $redis = new Redis();
  253. $key = 'order_not_pay_'.$this->uid;
  254. $order = $redis->hGet($key,$order_no);
  255. if (!$order) $this->error('订单不存在');
  256. $order = json_decode($order,true);
  257. if ($order['status']!=0) $this->error('订单已支付或已取消');
  258. $huiju = new HuijuKjPay();
  259. $order_nos = get_order_sn();
  260. $order['order_no'] = $order_nos;
  261. $redis->hMSet($key,[$order_nos=>json_encode($order,true)]); //存入redis
  262. //删除redis
  263. $redis->hdel($key,$order_no);
  264. $callback_url = 'http://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/kuaijiePayNotify';//回调地址
  265. $result = $huiju->paySms($order_nos,$order['pay_price'],'一级市场购买藏品',$this->uid,$callback_url,$user['hj_pay_bank_card']);
  266. if ($result['resp_codo']=='SUCCESS'){
  267. if ($result['biz_code']=='JS000000'){
  268. $data = json_decode($result['data'],true);
  269. if ($data['order_status']=='P3000'){
  270. DelRedisSetNx('yhkjSms'.$this->uid);
  271. $this->success('发送成功',$result);
  272. }else{
  273. DelRedisSetNx('yhkjSms'.$this->uid);
  274. $this->error($data['err_msg']);
  275. }
  276. }else{
  277. DelRedisSetNx('yhkjSms'.$this->uid);
  278. $this->error($result['biz_msg']);
  279. }
  280. }else{
  281. DelRedisSetNx('yhkjSms'.$this->uid);
  282. $this->error('发送失败');
  283. }
  284. }else{
  285. $this->error('请求过快');
  286. }
  287. }
  288. /**
  289. * @title 待支付订单支付
  290. * @desc 待支付订单支付
  291. * @author Gavin
  292. * @url /api/Order/payOrder
  293. * @method POST
  294. * @header name:Authorization require:1 desc:Token
  295. * @param name:order_no type:string require:1 default:-- desc:订单号
  296. * @param name:from type:string require:1 default:wx desc:wx:微信公众号h5:网页
  297. *
  298. * @return name:order_no type:int require:0 default:0 desc:订单号
  299. * @return name:pay type:string require:0 default:0 desc:支付信息
  300. */
  301. public function payOrder(){
  302. $user = getMemberInfoHash($this->uid); //获取用户信息
  303. $order_no = input('order_no'); //订单号
  304. $from = input('from','wx');
  305. if (!$order_no) $this->error('参数错误');
  306. $redis = new Redis();
  307. $key = 'order_not_pay_'.$this->uid;
  308. $order = $redis->hGet($key,$order_no);
  309. if (!$order) $this->error('订单不存在');
  310. $order = json_decode($order,true);
  311. if ($order['status']!=0) $this->error('订单已支付或已取消');
  312. $order_no = $order['order_no'];
  313. $total_fee = $order['pay_price'];
  314. $pay_type = $order['pay_type'];
  315. if ($pay_type=='yhkj'){
  316. $sms_code = input('sms_code');
  317. if (!$sms_code) $this->error('验证码为空');
  318. }
  319. $body = 'top艺术购买藏品';
  320. $com = true;
  321. switch ($pay_type){
  322. case 'wx':
  323. $config = retrunWxConfig();
  324. $total_fee = $total_fee * 100;
  325. $config['notify_url'] = $this->request->root(true).'/api/Pay/WxOrderNotify';
  326. $app = Factory::payment($config);
  327. $post_data = [
  328. 'body' => $body,
  329. 'out_trade_no' => $order_no,
  330. 'total_fee' => $total_fee,
  331. 'attach'=>$this->uid, //自定义传值
  332. ];
  333. //trade_type SAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
  334. if ($from=='wx'){
  335. $post_data['openid'] = $user['openid'];
  336. $post_data['trade_type'] = 'JSAPI';
  337. }elseif ($from=='h5'){
  338. $post_data['trade_type'] = 'MWEB';
  339. }
  340. $result = $app->order->unify($post_data);
  341. if ($result['return_msg']=='OK'){
  342. if ($result['result_code']=='FAIL'){
  343. $com = false;
  344. }else{
  345. $order1 = $app->jssdk->bridgeConfig($result['prepay_id']);//执行二次签名返回参数
  346. $redis_data['wx_order'] = $order1;
  347. $retrun_data['order_no'] = $order_no;
  348. $retrun_data['pay'] = json_decode($order1,true);
  349. }
  350. }else{
  351. $com = false;
  352. }
  353. break;
  354. case 'zfb':
  355. $order_nos = get_order_sn();
  356. $order['order_no'] = $order_nos;
  357. $redis->hMSet($key,[$order_nos=>json_encode($order,true)]); //存入redis
  358. //存入redis
  359. $redis->hdel($key,$order_no);
  360. $zfb = new AliPay3();
  361. $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/alipayOrderNotify';//回调地址
  362. $callback_url = 'https://'.$_SERVER['SERVER_NAME'].'/pages/mine/order-list?num=1';
  363. $order = $zfb->aliPay($body,$total_fee,$order_nos,$notify_url,$this->uid,$callback_url);
  364. $retrun_data['order_no'] = $order_nos;
  365. $retrun_data['pay'] = $order['pay_url'];
  366. break;
  367. case 'ylh5':
  368. $order_nos = get_order_sn();
  369. $order['order_no'] = $order_nos;
  370. $redis->hMSet($key,[$order_nos=>json_encode($order,true)]); //存入redis
  371. //存入redis
  372. $redis->hdel($key,$order_no);
  373. $callback_url = 'http://'.$_SERVER['SERVER_NAME'].'/pages/mine/order-list?num=1';
  374. $huiju = new HuijuH5Pay();
  375. $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/ylOrderNotify';//回调地址
  376. $pro_info = json_decode($order['pro_info'],true);
  377. $result = $huiju->ylh5Pay($order_nos,$callback_url,$notify_url,$pro_info['name'],$total_fee,$this->uid,2);
  378. if ($result['ra_Code']=='100'){
  379. $retrun_data['order_no'] = $order_nos;
  380. $retrun_data['pay'] = $result['rc_Result'];
  381. }else{
  382. $com = false;
  383. }
  384. break;
  385. case 'zfbh5':
  386. $order_nos = get_order_sn();
  387. $order['order_no'] = $order_nos;
  388. $redis->hMSet($key,[$order_nos=>json_encode($order,true)]); //存入redis
  389. //存入redis
  390. $redis->hdel($key,$order_no);
  391. $callback_url = 'http://'.$_SERVER['SERVER_NAME'].'/pages/mine/order-list?num=1';
  392. $huiju = new HuijuH5Pay();
  393. $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/ylOrderNotify';//回调地址
  394. $pro_info = json_decode($order['pro_info'],true);
  395. $result = $huiju->ylh5Pay($order_nos,$callback_url,$notify_url,$pro_info['name'],$total_fee,$this->uid,1);
  396. if ($result['ra_Code']=='100'){
  397. $retrun_data['order_no'] = $order_nos;
  398. $retrun_data['pay'] = $result['rc_Result'];
  399. }else{
  400. $com = false;
  401. }
  402. break;
  403. case 'yhkj':
  404. $huiju = new HuijuKjPay();
  405. $result = $huiju->kuaijiePay($order_no,$sms_code);
  406. if ($result['resp_codo']=='SUCCESS'){
  407. if ($result['biz_code']=='JS000000'){
  408. $data = json_decode($result['data'],true);
  409. if ($data['order_status']=='P1000'){
  410. $this->success('支付成功');
  411. }else{
  412. $this->error($data['err_msg']);
  413. }
  414. }else{
  415. $this->error($result['biz_msg']);
  416. }
  417. }else{
  418. $this->error('支付失败');
  419. }
  420. break;
  421. }
  422. if ($com){
  423. $this->success('成功',$retrun_data);
  424. }else{
  425. $this->error('调起支付失败,请稍后重试');
  426. }
  427. }
  428. /**
  429. * @title 取消订单
  430. * @desc 取消订单
  431. * @author Gavin
  432. * @url /api/Order/cancelOrder
  433. * @method POST
  434. * @header name:Authorization require:1 desc:Token
  435. * @param name:order_no type:string require:1 default:-- desc:订单号
  436. */
  437. public function cancelOrder(){
  438. $order_no = input('order_no');
  439. if (!$order_no) $this->error('参数错误');
  440. $redis = new Redis();
  441. $key = 'order_not_pay_'.$this->uid;
  442. $order = $redis->hGet($key,$order_no);
  443. if (!$order) $this->error('订单不存在');
  444. $order = json_decode($order,true);
  445. if ($order['status']!=0) $this->error('订单已支付或已取消');
  446. $com = true;
  447. Db::startTrans();
  448. try {
  449. $order['status'] = 2;
  450. $order['cancel_at'] = date('Y-m-d H:i:s');
  451. $order['cancel_state'] = 2;
  452. Db::name('store_order')->insert($order);
  453. Db::commit();
  454. }catch (\Exception $e){
  455. $com=false;
  456. Db::rollback();
  457. }
  458. if ($com){
  459. //加上库存
  460. addCollectionInventory($order['c_id'],$order['num']);
  461. //减少用户购买数量
  462. DecrByCount($this->uid,$order['c_id'],$order['num']);
  463. //删除数据
  464. $redis->hdel($key,$order_no);
  465. $this->success('取消成功');
  466. }else{
  467. $this->error('取消失败,请稍后重试');
  468. }
  469. }
  470. /**
  471. * @title 我的订单-转赠
  472. * @desc 我的订单-转赠
  473. * @author Gavin
  474. * @url /api/Order/getMySendList
  475. * @method POST
  476. * @header name:Authorization require:1 desc:Token
  477. * @param name:page type:int : default:1 desc:页数
  478. * @param name:page_num type:int : default:20 desc:每页数
  479. *
  480. * @return name:order_no type:string default:-- desc:订单号
  481. * @return name:over_time type:string default:-- desc:转赠时间
  482. * @return name:status type:int default:-- desc:类型2:赠出3:获赠
  483. * @return name:send_name type:string default:-- desc:转赠者/受赠者
  484. * @return name:collectors_hash type:string default:-- desc:hash
  485. * @return name:pro_info@name type:string default:-- desc:藏品名称
  486. * @return name:pro_info@price type:string default:-- desc:藏品价格
  487. * @return name:pro_info@price type:string default:-- desc:藏品单价
  488. * @return name:pro_info@auth_img type:string default:-- desc:藏品作者头像
  489. * @return name:pro_info@auth_name type:string default:-- desc:藏品作者名称
  490. */
  491. public function getMySendList(){
  492. $where = [
  493. 'mid'=>$this->uid,
  494. ];
  495. $count = Db::name('store_order_info')->where($where)->whereIn('status','2,3')->count();
  496. $list = Db::name('store_order_info')
  497. ->where($where)
  498. ->whereIn('status','2,3')
  499. ->field('id,order_no,pro_info,over_time,create_at,status,to_mid,collectors_hash')
  500. ->order('id desc')
  501. ->limit($this->off_set,$this->page_num)
  502. ->select();
  503. foreach ($list as &$v){
  504. $v['pro_info'] = json_decode($v['pro_info'],true);
  505. $v['send_name'] = Db::name('store_member')->where('id',$v['to_mid'])->value('name');
  506. }
  507. $this->success('成功',compact('count','list'));
  508. }
  509. /**
  510. * @title 转赠订单详情
  511. * @desc 转赠订单详情
  512. * @author Gavin
  513. * @url /api/Order/getMySendListDetail
  514. * @method POST
  515. * @header name:Authorization require:1 desc:Token
  516. * @param name:order_id type:int : default:1 desc:订单ID
  517. *
  518. * @return name:order_no type:string default:-- desc:订单号
  519. * @return name:over_time type:string default:-- desc:转赠时间
  520. * @return name:status type:int default:-- desc:类型2:赠出3:获赠
  521. * @return name:send_name type:string default:-- desc:转赠者/受赠者
  522. * @return name:collectors_hash type:string default:-- desc:hash
  523. * @return name:pro_info@name type:string default:-- desc:藏品名称
  524. * @return name:pro_info@price type:string default:-- desc:藏品价格
  525. * @return name:pro_info@price type:string default:-- desc:藏品单价
  526. * @return name:pro_info@auth_img type:string default:-- desc:藏品作者头像
  527. * @return name:pro_info@auth_name type:string default:-- desc:藏品作者名称
  528. */
  529. public function getMySendListDetail(){
  530. $order_id = input('order_id'); //订单id
  531. if (!$order_id) $this->error('参数错误');
  532. $order = Db::name('store_order_info')
  533. ->where('id',$order_id)
  534. ->where('mid',$this->uid)
  535. ->find();
  536. if (!$order) $this->error('订单不存在');
  537. $order['pro_info'] = json_decode($order['pro_info'],true);
  538. $order['send_name'] = Db::name('store_member')->where('id',$order['to_mid'])->value('name');
  539. $this->success('成功',$order);
  540. }
  541. function savetest($order_no){
  542. $result['out_trade_no'] = $order_no;
  543. $order = Db::name('store_order')->where('order_no',$result['out_trade_no'])->find();
  544. if ($order['status']==0){
  545. Db::startTrans();
  546. try {
  547. Db::name('store_order')
  548. ->where('order_no',$result['out_trade_no'])
  549. ->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s'),'return_success_info'=>json_encode($result,true)]);
  550. $array = [];
  551. for ($i=0;$i<$order['num'];$i++){
  552. //获取排名
  553. $rank = getRanking($order['c_id'])+1;
  554. $tag = getTag($order['c_id'],$rank,$order['inventory']);
  555. saveRanking($order['c_id']);
  556. $company = '象寻数字科技(上海)有限公司';
  557. $company_hash = '';
  558. $company_hash_time = '';
  559. $collectors_hash = '';
  560. $date = [
  561. 'order_id'=>$order['id'],
  562. 'order_no'=>get_order_sn(),
  563. 'tag'=>$tag,
  564. 'mid'=>$order['mid'],
  565. 'pro_info'=>$order['pro_info'],
  566. 'company'=>$company,
  567. 'company_hash'=>$company_hash,
  568. 'company_hash_time'=>$company_hash_time,
  569. 'collectors_hash'=>$collectors_hash,
  570. 'collectors_hash_time'=>date('Y-m-d H:i:s')
  571. ];
  572. $array[] = $date;
  573. }
  574. Db::name('store_order_info')->insertAll($array);
  575. Db::commit();
  576. // return true;
  577. } catch (\Exception $e){
  578. Db::rollback();
  579. //return false;
  580. }
  581. }
  582. }
  583. }