Order.php 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\library\AliPay;
  4. use app\common\library\LianLianPay;
  5. use app\common\library\Shande;
  6. use app\common\library\ShandeRapid;
  7. use think\cache\driver\Redis;
  8. use think\Db;
  9. use think\Exception;
  10. use EasyWeChat\Factory;
  11. use think\Session;
  12. use function Sodium\add;
  13. /**
  14. * @title 订单
  15. * @controller Order
  16. * @group base
  17. */
  18. class Order extends Base
  19. {
  20. public function initialize()
  21. {
  22. parent::initialize();
  23. parent::check_login();
  24. }
  25. /**
  26. * @title 生成订单(立即购买 )
  27. * @desc 生成订单(立即购买 )
  28. * @author Gavin
  29. * @url /api/Order/createOrder
  30. * @method POST
  31. * @header name:Authorization require:1 desc:Token
  32. * @param name:id type:int require:1 default:-- desc:藏品id
  33. * @param name:num type:int require:1 default:1 desc:数量
  34. * @param name:pay_type type:string require:1 default:wx desc:wx:微信zfb:支付宝wallet:钱包余额sd:杉德h5,sd_rapid:杉德快捷支付,ll:连连支付
  35. * @param name:from type:string require:1 default:wx desc:wx:微信公众号h5:网页【微信支付用的着,其他支付忽略】
  36. *
  37. * @return name:order_no type:int require:0 default:0 desc:订单号
  38. * @return name:pay type:string require:0 default:0 desc:支付信息
  39. */
  40. public function createOrder()
  41. {
  42. if(!checkAuth($this->uid)) $this->error('暂未开放');
  43. if (redisSetNx('createOrder'.$this->uid,3)) {
  44. $id = input('id');
  45. $num = input('num',1);
  46. $pay_type = input('pay_type','wx');
  47. $from = input('from','wx');
  48. if (!$id || $num <= 0) $this->error('参数错误');;
  49. $user = Db::name('store_member')->where('id',$this->uid)->find();
  50. if ($user['is_auth']==0) $this->error('请实名认证后购买!');
  51. if (!$user['wallet_address']) $this->error('钱包地址未生成,请等待...');
  52. $coll_info = getCollectionInfoHash($id);
  53. if ($coll_info['is_deleted']==1 || $coll_info['status']==0) $this->error('藏品已下架');
  54. if(!in_array($pay_type,['wallet','ll']) ) $this->error('请选择余额或连连方式支付');
  55. if(in_array($coll_info['type'],[2,4])){
  56. $this->error('该藏品不能购买');
  57. }
  58. // 抽签发行方式验证是否中签
  59. if($coll_info['issue_mode'] == 2){
  60. $check_redis = new Redis();
  61. $luck_draw = $check_redis->get('lucky_draw_'.$id);
  62. if(!$luck_draw) $this->error('抽签未出结果');
  63. $luck_draw = json_decode($luck_draw,true);
  64. if(!in_array($this->uid,$luck_draw)) $this->error('没有中签');
  65. }
  66. /* $check_rank = getRanking($id,0);
  67. if($check_rank + $num > $coll_info['inventory']) $this->error('库存不足');*/
  68. $inventory = getCollectionInventory($id);
  69. if ($inventory<1) $this->error('已售罄');
  70. if ($inventory<$num) $this->error('库存不足');
  71. // 验证产品赋能优先购
  72. $set_time = $coll_info['sell_time'];
  73. $priority = false;
  74. if($coll_info['issue_mode'] == 1) {
  75. $priority = checkMemberPriority($this->uid,$coll_info['id']);
  76. if($priority && isset($coll_info['before_time'])){
  77. $sell_time = strtotime($coll_info['sell_time'])-($coll_info['before_time'] * 60);
  78. if ($sell_time <= time()) $info['state'] = 1;
  79. $coll_info['sell_time'] = date('Y-m-d H:i:s',$sell_time);
  80. }
  81. }
  82. $sell_time = strtotime($coll_info['sell_time']);
  83. if ($sell_time>time()) $this->error('商品还未开始售卖!请耐心等待');
  84. //获取用户已经购买数量
  85. $userByCount = getByCount($this->uid,$id);
  86. // 设置了限购数量 && 购买的数量达到了限购数量 && 未到正式开售时间
  87. if($priority && $priority !== true && $userByCount + $num > $priority && strtotime($set_time) > time()) $this->error('最多提前购买'.intval($priority).'个');
  88. if($priority > $coll_info['buy_count'] && $priority < ($userByCount+$num)) $this->error('限购'.$priority.'个');
  89. if(intval($priority) <= $coll_info['buy_count'] && $coll_info['buy_count']<($userByCount+$num)) $this->error('每人限购'.$coll_info['buy_count'].'个');
  90. //获取是否已经铸造hash
  91. $hashCount = getLenCollection($id);
  92. if ((!$hashCount || $hashCount<$num) && $coll_info['type'] != 3) $this->error('hash未铸造,无法购买');
  93. if($pay_type == 'wx'){
  94. if ($from=='wx' && !$user['openid']) $this->error('微信未授权,无法购买');
  95. }
  96. if ($pay_type=='zfb') $this->error('支付宝暂未开通');
  97. $total_fee = bcmul($coll_info['price'],$num,2);
  98. if($pay_type == 'wallet' && $user['money'] < $total_fee) $this->error('余额不足');
  99. //先减掉库存
  100. loseCollectionInventory($id,$num);
  101. //先增加购买数量
  102. IncrByCount($this->uid,$id,$num);
  103. $order_no = get_order_sn();
  104. $total_price = $total_fee;//总金额
  105. $redis_data = [
  106. 'mid'=>$this->uid,
  107. 'c_id'=>$id,
  108. 'order_no'=>$order_no,
  109. 'inventory'=>$coll_info['inventory'],
  110. 'num'=>$num,
  111. 'pro_info'=>json_encode($coll_info),
  112. 'status'=>0,
  113. 'create_at'=>date('Y-m-d H:i:s'),
  114. 'total_price'=>$total_price,
  115. 'pay_price'=>$total_fee,
  116. 'pay_type'=>$pay_type,
  117. ];
  118. $com = true;
  119. $retrun_data['order_no'] = $order_no;
  120. $retrun_data['pay'] = '';
  121. $retrun_data['user_id'] = $this->uid;
  122. if ($com){
  123. $redis = new Redis();
  124. //收集下单用户id
  125. setCollectionBuyUser($this->uid);
  126. $redis->hMSet('order_not_pay_'.$this->uid,[$order_no=>json_encode($redis_data)]); //存入redis
  127. DelRedisSetNx('createOrder'.$this->uid);
  128. $this->success('成功',$retrun_data);
  129. }else{
  130. //加上库存
  131. addCollectionInventory($id,$num);
  132. //减少用户购买数量
  133. DecrByCount($this->uid,$id,$num);
  134. DelRedisSetNx('createOrder'.$this->uid);
  135. $this->error('服务器繁忙,请稍后重试');
  136. }
  137. }else{
  138. $this->error('服务器繁忙,请稍后重试');
  139. }
  140. }
  141. /**
  142. * @title 我的订单-待支付、已购买
  143. * @desc 我的订单-待支付、已购买
  144. * @author Gavin
  145. * @url /api/Orde/getMyOrderList
  146. * @method POST
  147. * @header name:Authorization require:1 desc:Token
  148. * @param name:status type:int : default:0 desc:0:待支付1:已购买
  149. * @param name:page type:int : default:1 desc:页数
  150. * @param name:page_num type:int : default:20 desc:每页数
  151. *
  152. * @return name:order_no type:string default:-- desc:订单号
  153. * @return name:num type:int default:-- desc:数量
  154. * @return name:pay_price type:string default:-- desc:订单金额
  155. * @return name:status type:int default:-- desc:类型0:待支付1:已支付
  156. * @return name:cancel_time type:string default:-- desc:待支付自动取消时间
  157. * @return name:pay_type type:string default:-- desc:支付方式wx:微信zfb:支付宝,ll:连连
  158. * @return name:create_at type:string default:-- desc:创建时间
  159. * @return name:pro_info@name type:string default:-- desc:藏品名称
  160. * @return name:pro_info@cover type:string default:-- desc:藏品图片
  161. * @return name:pro_info@price type:string default:-- desc:藏品单价
  162. * @return name:pro_info@auth_img type:string default:-- desc:藏品作者头像
  163. * @return name:pro_info@auth_name type:string default:-- desc:藏品作者名称
  164. */
  165. public function getMyOrderList(){
  166. $status = input('status',0);
  167. if ($status==0){
  168. $redis = new Redis();
  169. $key = 'order_not_pay_'.$this->uid;
  170. $count = $redis->hGetLen($key);
  171. $list = $redis->hGetvals($key);
  172. if ($list){
  173. //自动取消分钟数
  174. $cancel_time = getCancelTime();
  175. foreach ($list as $k=>&$v){
  176. $info = json_decode($v,true);
  177. $info['pro_info'] = json_decode($info['pro_info'],true);
  178. $info['cancel_time'] = date('Y-m-d H:i:s',strtotime($info['create_at'])+($cancel_time*60));
  179. $info['create_int'] = strtotime($info['create_at']);
  180. $list[$k] = $info;
  181. }
  182. array_multisort(array_column($list,'create_int'),SORT_DESC,$list);
  183. }
  184. }else{
  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. foreach ($list as &$v){
  198. $v['pro_info'] = json_decode($v['pro_info'],true);
  199. }
  200. }
  201. $this->success('成功',compact('count','list'));
  202. }
  203. /**
  204. * @title 待支付、已购买订单详情
  205. * @desc 待支付、已购买订单详情
  206. * @author Gavin
  207. * @url /api/Order/MyOrderListDetail
  208. * @method POST
  209. * @header name:Authorization require:1 desc:Token
  210. * @param name:order_no type:string default:0 desc:订单号
  211. * @param name:type type:int default:1 desc:1:待支付2:已支付
  212. *
  213. * @return name:order_no type:string default:-- desc:订单号
  214. * @return name:num type:int default:-- desc:数量
  215. * @return name:pay_price type:string default:-- desc:订单金额
  216. * @return name:status type:int default:-- desc:类型0:待支付1:已支付
  217. * @return name:cancel_time type:string default:-- desc:待支付自动取消时间
  218. * @return name:create_at type:string default:-- desc:创建时间
  219. * @return name:pay_at type:string default:-- desc:支付时间
  220. * @return name:pay_type type:string default:-- desc:支付方式wx:微信zfb:支付宝,sd杉德,sd_rapid:杉德快捷支付,ll:连连支付
  221. * @return name:pro_info@name type:string default:-- desc:藏品名称
  222. * @return name:pro_info@cover type:string default:-- desc:藏品图片
  223. * @return name:pro_info@price type:string default:-- desc:藏品单价
  224. * @return name:pro_info@auth_img type:string default:-- desc:藏品作者头像
  225. * @return name:pro_info@auth_name type:string default:-- desc:藏品作者名称
  226. */
  227. public function MyOrderListDetail(){
  228. $order_no = input('order_no');
  229. $type = input('type',1);
  230. if (!$order_no) $this->error('参数错误');
  231. if ($type==1){
  232. $redis = new Redis();
  233. $key = 'order_not_pay_'.$this->uid;
  234. $order = $redis->hGet($key,$order_no);
  235. $order = json_decode($order,true);
  236. }else{
  237. $order = Db::name('store_order')
  238. ->where('order_no',$order_no)
  239. ->where('mid',$this->uid)
  240. ->where('is_deleted',0)
  241. ->find();
  242. }
  243. if (!$order) $this->error('订单不存在');
  244. $order['pro_info'] = json_decode($order['pro_info'],true);
  245. //自动取消分钟数
  246. $cancel_time = getCancelTime();
  247. if ($order['status']==0){
  248. $order['cancel_time'] = date('Y-m-d H:i:s',strtotime($order['create_at'])+($cancel_time*60));
  249. }
  250. $this->success('成功',$order);
  251. }
  252. /**
  253. * @title 待支付订单支付
  254. * @desc 待支付订单支付
  255. * @author Gavin
  256. * @url /api/Order/payOrder
  257. * @method POST
  258. * @header name:Authorization require:1 desc:Token
  259. * @param name:order_no type:string require:1 default:-- desc:订单号
  260. * @param name:from type:string require:1 default:wx desc:wx:微信公众号,h5:网页:wallet余额,sd:杉德h5,sd_rapid:杉德快捷支付
  261. * @param name:source type:int require:1 default1 desc:1:h5,2:app[Android],3:app[ios]
  262. * @return name:order_no type:int require:0 default:0 desc:订单号
  263. * @return name:pay type:string require:0 default:0 desc:支付信息
  264. * @return name:order_no type:string default:0 desc:支付单号(sd)
  265. * @return name:extend type:int default:0 desc:用户id(sd)
  266. * @return name:pay type:array default:0 desc:支付信息(sd)
  267. * @return name:pay.body type:array default:0 desc:支付信息(sd)
  268. * @return name:pay.totalAmount type:string default:0 desc:支付金额【000000010000是100元】(sd)
  269. * @return name:pay.orderCode type:string default:0 desc:支付单号(sd)
  270. * @return name:pay.credential type:string default:0 desc:正书(sd)
  271. */
  272. public function payOrder(){
  273. $user = getMemberInfoHash($this->uid); //获取用户信息
  274. $order_no = input('order_no'); //订单号
  275. $from = input('from','wx');
  276. $source = input('source',1);
  277. if (!$order_no) $this->error('参数错误');
  278. $redis = new Redis();
  279. $key = 'order_not_pay_'.$this->uid;
  280. $order = $redis->hGet($key,$order_no);
  281. if (!$order) $this->error('订单不存在'.$this->uid);
  282. $order = json_decode($order,true);
  283. $inventory = getCollectionInventory($order['c_id']);
  284. if ($inventory < 0) $this->error('已售罄');
  285. //if ($inventory < $order['num']) $this->error('库存不足');
  286. /* $coll_info = getCollectionInfoHash($order['c_id']);
  287. $check_rank = getRanking($order['c_id'],0);
  288. if( $check_rank + $order['num'] > $coll_info['inventory']) $this->error('库存不足');*/
  289. if ($order['status']!=0) $this->error('订单已支付或已取消');
  290. $CancelTime = getCancelTime();
  291. if (strtotime($order['create_at']) + $CancelTime * 60 < time()) $this->error('订单超时');
  292. $order_no = $order['order_no'];
  293. $total_fee = $order['pay_price'];
  294. $pay_type = $order['pay_type'];
  295. $body = '象链数藏购买藏品';
  296. $com = true;
  297. $retrun_data = [];
  298. if(!in_array($pay_type,['wallet','ll']) ) $this->error('请选择余额或连连方式支付');
  299. switch ($pay_type){
  300. case 'wx':
  301. $config = retrunWxConfig();
  302. $total_fee = $total_fee * 100;
  303. $config['notify_url'] = 'https://'.$_SERVER['HTTP_HOST'].'/index.php/api/Pay/WxOrderNotify';
  304. $app = Factory::payment($config);
  305. $post_data = [
  306. 'body' => $body,
  307. 'out_trade_no' => $order_no,
  308. 'total_fee' => $total_fee,
  309. 'attach'=>$this->uid, //自定义传值
  310. ];
  311. //trade_type SAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
  312. if ($from=='wx'){
  313. $post_data['openid'] = $user['openid'];
  314. $post_data['trade_type'] = 'JSAPI';
  315. }elseif ($from=='h5'){
  316. $post_data['trade_type'] = 'MWEB';
  317. }
  318. $result = $app->order->unify($post_data);
  319. if ($result['return_msg']=='OK'){
  320. if ($result['result_code']=='FAIL'){
  321. $com = false;
  322. }else{
  323. $order1 = $app->jssdk->bridgeConfig($result['prepay_id']);//执行二次签名返回参数
  324. $redis_data['wx_order'] = $order1;
  325. $retrun_data['order_no'] = $order_no;
  326. if($from == 'h5'){
  327. $retrun_data['pay'] = $result['mweb_url'];
  328. }else{
  329. $retrun_data['pay'] = json_decode($order1,true);
  330. }
  331. }
  332. }else{
  333. $com = false;
  334. }
  335. break;
  336. case 'zfb':
  337. $zfb = new AliPay();
  338. $notify_url = $this->request->root(true).'/index.php/api/Pay/alipayOrderNotify?attach='.$this->uid;//回调地址
  339. $order = $zfb->ali_pay_pc($body, $total_fee, $order_no, $notify_url,'https://'.$_SERVER['HTTP_HOST'].'/h5/pages/mine/order-list?num=1');//调用支付宝支付的方法
  340. $retrun_data['order_no'] = $order_no;
  341. $retrun_data['pay'] = $order;
  342. break;
  343. case 'sd':
  344. $client = new Shande();
  345. $notify_url = 'https://'.$_SERVER['HTTP_HOST'].'/api/Pay/shandeOrderNotify';//回调地址
  346. $total_fee = $total_fee*100;
  347. $lenth = strlen($total_fee);
  348. $total_fee = get0number($lenth).$total_fee;
  349. $result = $client->orderPay($order_no.'S'.$this->uid,$total_fee,$body,$notify_url,'https://'.$_SERVER['HTTP_HOST'].'/h5/pages/mine/mine',$user['bank_num']);
  350. $retrun_data['order_no'] = $order_no;
  351. $retrun_data['extend'] = $this->uid;
  352. $retrun_data['pay'] = json_decode($result['data'],true);
  353. if( $retrun_data['pay']['head']['respCode'] != '00000')$this->error($retrun_data['pay']['head']['respMsg'].'请重新下单');
  354. break;
  355. case 'wallet':
  356. Db::startTrans();
  357. try{
  358. $balance = Db::name('store_member')->where('id',$this->uid)->value('money');
  359. if($balance < $total_fee) throw new Exception('余额不足');
  360. $pay_res = (new Pay())->dealData(['out_trade_no' => $order_no,'attach'=>$this->uid]);
  361. if(!$pay_res) throw new Exception('支付失败');
  362. $order_id = Db::name('store_order_info')->where(['order_no'=>$order_no])->value('id');
  363. $change_money = memberMoneyChange($total_fee,3,$this->uid,'余额支付',0,$order_id,4);
  364. if(!$change_money) throw new Exception('支付失败');
  365. setMemberInfoHash($this->uid);
  366. Db::commit();
  367. }catch (\Exception $e){
  368. $com = false;
  369. $msg= $e->getMessage();
  370. Db::rollback();
  371. }
  372. $retrun_data = null;
  373. break;
  374. case 'sd_rapid' :
  375. if(!$user['true_name'] || !$user['id_card']) $this->error('请实名认证,在进行订单支付');
  376. $rapid = new ShandeRapid();
  377. $notify_url = 'https://'.$_SERVER['HTTP_HOST'].'/api/Pay/shandeOrderNotify';//回调地址
  378. //$return_url = 'https://'.$_SERVER['HTTP_HOST'].'/h5/pages/mine/mine';//回调地址
  379. $return_url ='https://'.$_SERVER['HTTP_HOST']."/h5/pages/mine/mine?id={$order['c_id']}&orderNo={$order_no}";//回调地址
  380. $pay_extra = json_encode(['userId'=>"$this->uid",'userName'=>$user['true_name'],'idCard'=>$user['id_card']]);
  381. $pay_url = $rapid->payOrder($order_no.'S'.$this->uid,$total_fee,$notify_url,$return_url,$pay_extra,$body);
  382. parse_str(parse_url($pay_url)['query'],$pay_query);
  383. $retrun_data['parse_url'] = parse_url($pay_url)['query'];
  384. $retrun_data['order_no'] = $order_no;
  385. $retrun_data['extend'] = $this->uid;
  386. $retrun_data['pay_url'] = $pay_url;
  387. $retrun_data['pay_query'] = $pay_query;
  388. break;
  389. case 'll':
  390. $notify_url = 'https://'.$_SERVER['HTTP_HOST'] . '/api/Pay/primaryMarketNotify';
  391. $return_url ='https://'.$_SERVER['HTTP_HOST']."/h5/pages/mine/mine?id={$order['c_id']}&orderNo={$order_no}";//回调地址
  392. $risk_item= risk_item($user,'订单支付',$source == 1 ? 16 : 10);
  393. $res= LianLianPay::cashierPay($order_no,$total_fee,$this->uid,$notify_url,$return_url,'藏品支付',[[
  394. 'payee_id'=>OID_PARTNER,
  395. 'payee_type' => 'MERCHANT',
  396. 'payee_amount' => $total_fee,
  397. ]],$risk_item);
  398. $retrun_data = $res['pay_result'];
  399. // $retrun_data['request_params'] = $res['request_params'];
  400. break;
  401. }
  402. if ($com){
  403. if($pay_type == 'wallet')$this->success('支付成功');
  404. $this->success('成功',$retrun_data);
  405. }else{
  406. if($pay_type == 'wallet')$this->error($msg);
  407. $this->error('调起支付失败,请稍后重试');
  408. }
  409. }
  410. /**
  411. * @title 取消订单
  412. * @desc 取消订单
  413. * @author Gavin
  414. * @url /api/Order/cancelOrder
  415. * @method POST
  416. * @header name:Authorization require:1 desc:Token
  417. * @param name:order_no type:string require:1 default:-- desc:订单号
  418. */
  419. public function cancelOrder(){
  420. $order_no = input('order_no');
  421. if (!$order_no) $this->error('参数错误');
  422. $redis = new Redis();
  423. $key = 'order_not_pay_'.$this->uid;
  424. $order = $redis->hGet($key,$order_no);
  425. if (!$order) $this->error('订单不存在');
  426. $order = json_decode($order,true);
  427. if ($order['status']!=0) $this->error('订单已支付或已取消');
  428. $com = true;
  429. Db::startTrans();
  430. try {
  431. $order['status'] = 2;
  432. $order['cancel_at'] = date('Y-m-d H:i:s');
  433. $order['cancel_state'] = 2;
  434. Db::name('store_order')->insert($order);
  435. Db::commit();
  436. }catch (\Exception $e){
  437. $com=false;
  438. Db::rollback();
  439. }
  440. if ($com){
  441. //加上库存
  442. addCollectionInventory($order['c_id'],$order['num']);
  443. //减少用户购买数量
  444. DecrByCount($this->uid,$order['c_id'],$order['num']);
  445. //删除数据
  446. $redis->hdel($key,$order_no);
  447. $this->success('取消成功');
  448. }else{
  449. $this->error('取消失败,请稍后重试');
  450. }
  451. }
  452. /**
  453. * @title 我的订单-转赠
  454. * @desc 我的订单-转赠
  455. * @author Gavin
  456. * @url /api/Order/getMySendList
  457. * @method POST
  458. * @header name:Authorization require:1 desc:Token
  459. * @param name:page type:int : default:1 desc:页数
  460. * @param name:page_num type:int : default:20 desc:每页数
  461. *
  462. * @return name:order_no type:string default:-- desc:订单号
  463. * @return name:over_time type:string default:-- desc:转赠时间
  464. * @return name:status type:int default:-- desc:类型2:赠出3:获赠
  465. * @return name:send_name type:string default:-- desc:转赠者/受赠者
  466. * @return name:collectors_hash type:string default:-- desc:hash
  467. * @return name:pro_info@name type:string default:-- desc:藏品名称
  468. * @return name:pro_info@price type:string default:-- desc:藏品价格
  469. * @return name:pro_info@price type:string default:-- desc:藏品单价
  470. * @return name:pro_info@auth_img type:string default:-- desc:藏品作者头像
  471. * @return name:pro_info@auth_name type:string default:-- desc:藏品作者名称
  472. */
  473. public function getMySendList(){
  474. $where = [
  475. 'mid'=>$this->uid,
  476. ];
  477. $count = Db::name('store_order_info')->where($where)->whereIn('status','2,3')->count();
  478. $list = Db::name('store_order_info')
  479. ->where($where)
  480. ->whereIn('status','2,3')
  481. ->field('id,order_no,pro_info,over_time,create_at,status,to_mid,collectors_hash')
  482. ->order('over_time desc ,id desc')
  483. ->limit($this->off_set,$this->page_num)
  484. ->select();
  485. foreach ($list as &$v){
  486. $v['pro_info'] = json_decode($v['pro_info'],true);
  487. $v['send_name'] = Db::name('store_member')->where('id',$v['to_mid'])->value('name');
  488. }
  489. $this->success('成功',compact('count','list'));
  490. }
  491. /**
  492. * @title 转赠订单详情
  493. * @desc 转赠订单详情
  494. * @author Gavin
  495. * @url /api/Order/getMySendListDetail
  496. * @method POST
  497. * @header name:Authorization require:1 desc:Token
  498. * @param name:order_id type:int : default:1 desc:订单ID
  499. *
  500. * @return name:order_no type:string default:-- desc:订单号
  501. * @return name:over_time type:string default:-- desc:转赠时间
  502. * @return name:status type:int default:-- desc:类型2:赠出3:获赠
  503. * @return name:send_name type:string default:-- desc:转赠者/受赠者
  504. * @return name:collectors_hash type:string default:-- desc:hash
  505. * @return name:pro_info@name type:string default:-- desc:藏品名称
  506. * @return name:pro_info@price type:string default:-- desc:藏品价格
  507. * @return name:pro_info@price type:string default:-- desc:藏品单价
  508. * @return name:pro_info@auth_img type:string default:-- desc:藏品作者头像
  509. * @return name:pro_info@auth_name type:string default:-- desc:藏品作者名称
  510. */
  511. public function getMySendListDetail(){
  512. $order_id = input('order_id'); //订单id
  513. if (!$order_id) $this->error('参数错误');
  514. $order = Db::name('store_order_info')
  515. ->where('id',$order_id)
  516. ->where('mid',$this->uid)
  517. ->find();
  518. if (!$order) $this->error('订单不存在');
  519. $order['pro_info'] = json_decode($order['pro_info'],true);
  520. $order['num'] = 1;
  521. $order['pay_price'] = 0;
  522. $order['send_name'] = '--';
  523. if($order['to_mid']) $order['send_name'] = Db::name('store_member')->where('id',$order['to_mid'])->value('name');
  524. $this->success('成功',$order);
  525. }
  526. function savetest($order_no){
  527. $result['out_trade_no'] = $order_no;
  528. $order = Db::name('store_order')->where('order_no',$result['out_trade_no'])->find();
  529. if ($order['status']==0){
  530. Db::startTrans();
  531. try {
  532. Db::name('store_order')
  533. ->where('order_no',$result['out_trade_no'])
  534. ->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s'),'return_success_info'=>json_encode($result,true)]);
  535. $array = [];
  536. for ($i=0;$i<$order['num'];$i++){
  537. //获取排名
  538. $rank = getRanking($order['c_id']);
  539. $tag = getTag($order['c_id'],$rank,$order['inventory']);
  540. saveRanking($order['c_id']);
  541. $company = '象寻数字科技(上海)有限公司';
  542. $company_hash = '';
  543. $company_hash_time = '';
  544. $collectors_hash = '';
  545. $date = [
  546. 'order_id'=>$order['id'],
  547. 'order_no'=>get_order_sn(),
  548. 'tag'=>$tag,
  549. 'mid'=>$order['mid'],
  550. 'pro_info'=>$order['pro_info'],
  551. 'company'=>$company,
  552. 'company_hash'=>$company_hash,
  553. 'company_hash_time'=>$company_hash_time,
  554. 'collectors_hash'=>$collectors_hash,
  555. 'collectors_hash_time'=>date('Y-m-d H:i:s')
  556. ];
  557. $array[] = $date;
  558. }
  559. Db::name('store_order_info')->insertAll($array);
  560. Db::commit();
  561. // return true;
  562. } catch (\Exception $e){
  563. Db::rollback();
  564. //return false;
  565. }
  566. }
  567. }
  568. }