Present.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\library\LianLianPay;
  4. use llianpay\accp\security\LLianPayAccpSignature;
  5. use think\cache\driver\Redis;
  6. use think\Db;
  7. class Present extends Base
  8. {
  9. public function send()
  10. {
  11. $send_phone = '18632645580';// 赠送人手机号
  12. $receipt_phone = '17666660370';// 被赠送人手机号
  13. $send_user = Db::name('store_member')->field('id')->where('phone',$send_phone)->where('is_deleted',0)->find();
  14. $receipt_user = Db::name('store_member')->field('id')->where('phone',$receipt_phone)->where('is_deleted',0)->find();
  15. $list = Db::name('store_order_info')
  16. ->where('mid',$send_user['id'])
  17. ->where('status','neq','2')
  18. ->where('is_destruction',1)
  19. ->where('c_id',11)
  20. ->where('collectors_hash','<>','')
  21. ->where('type','<>',3)
  22. ->where('resale_status',1)
  23. ->where('id','<', 33747)
  24. ->order('id asc')
  25. ->limit(0,780)
  26. ->select();
  27. /* $sql = "SELECT * FROM `xianglian`.`store_order_info` WHERE `mid` = '2192' AND `status` <> '2' AND `is_destruction` = '1' AND `resale_status` = '1' AND `c_id` = '21' LIMIT 0,10";
  28. $list = Db::query($sql);// 赠送数据*/
  29. $send_num = 0;
  30. $error_ids =[];
  31. var_dump(count($list));
  32. die();
  33. foreach ($list as $v) {
  34. $res = static::examples($send_user['id'],$v['id'],$receipt_phone);
  35. if ($res['status'] == 1) $send_num++;
  36. if ($res['status'] == 0) $error_ids[] = $v['id'];
  37. }
  38. var_dump($send_num,$error_ids);
  39. }
  40. // 转赠
  41. public static function examples($send_user_id,$id,$receipt_phone){
  42. if (!$id || !$receipt_phone ) return['status'=>0 ,'msg'=>'参数错误'];
  43. $info = Db::name('store_order_info')->where('id',$id)->where('mid',$send_user_id)->find();
  44. if (!$info) return['status'=>0 ,'msg'=>'藏品不存在'];
  45. if ($info['status']==2) return['status'=>0 ,'msg'=>'藏品已转赠'];
  46. $member = Db::name('store_member')->where('phone',$receipt_phone)->find();
  47. if (!$member) return['status'=>0 ,'msg'=>'转赠用户不存在'];
  48. if($member['id'] == $send_user_id) return['status'=>0 ,'msg'=>'自己无法转赠给自己'];
  49. if (!$info['collectors_hash'] && $info['type'] != 3) return['status'=>0 ,'msg'=>'发放中,无法转赠'];
  50. $pro_info = Db::name('store_collection')->where('id',$info['c_id'])->find();
  51. $log = Db::name('store_collect_examples_log')->where('order_info_id',$id)->find();
  52. if (!$log){
  53. if ($pro_info['one_given_day']!=0){
  54. $exam_time = strtotime($info['create_at'])+($pro_info['one_given_day']*60*60);
  55. if ($exam_time>time())return['status'=>0 ,'msg'=>'持有时间限制,无法转赠'];
  56. }
  57. }else{
  58. if ($pro_info['other_given_day']!=0){
  59. $exam_time = strtotime($log['create_at'])+($pro_info['other_given_day']*60*60);
  60. if ($exam_time>time()) return['status'=>0 ,'msg'=>'持有时间限制,无法转赠2'];
  61. }
  62. }
  63. Db::startTrans();
  64. try {
  65. Db::name('store_order_info')->where('id',$id)
  66. ->update(['status'=>2,'over_time'=>date('Y-m-d H:i:s'),'to_mid'=>$member['id'],'verify'=>Db::raw('verify - 1')]);
  67. $to_date = [
  68. 'order_id'=>$info['order_id'],
  69. 'order_no'=>get_order_sn(),
  70. 'tag'=>$info['tag'],
  71. 'mid'=>$member['id'],
  72. 'c_id'=>$info['c_id'],
  73. 'name'=>$pro_info['name'],
  74. 'cover'=>$pro_info['cover'],
  75. 'pro_info'=>$info['pro_info'],
  76. 'status'=>3,
  77. 'type' => $info['type'],
  78. 'to_mid'=>$send_user_id,
  79. 'over_time'=>date('Y-m-d H:i:s'),
  80. 'company'=>'象链数藏',
  81. 'company_hash'=>$info['company_hash'],
  82. 'company_hash_time'=>$info['company_hash_time'],
  83. 'ddcid'=>$info['ddcid'],
  84. 'collectors_hash'=>'',
  85. 'collectors_hash_time'=>date('Y-m-d H:i:s')
  86. ];
  87. $new_id = Db::name('store_order_info')->insertGetId($to_date);
  88. $log_date = [
  89. 'order_info_id'=>$new_id,
  90. 'mid'=>$send_user_id,
  91. 'to_mid'=>$member['id'],
  92. 'date'=>date('Y-m')
  93. ];
  94. Db::name('store_collect_examples_log')->insert($log_date);
  95. Db::commit();
  96. return['status'=>1 ,'msg'=>'转赠成功'];
  97. }catch (\Exception $e){
  98. Db::rollback();
  99. return['status'=>0 ,'msg'=>'转赠失败'];
  100. }
  101. }
  102. }