Order.php 27 KB

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