Order.php 26 KB

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