Order2.php 26 KB

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