Present.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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','not in','11,12,16')
  20. ->where('collectors_hash','<>','')
  21. ->where('type','<>',3)
  22. ->where('resale_status',1)
  23. //->where('id','<', 33746)
  24. ->order('id asc')
  25. ->select();
  26. /* $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";
  27. $list = Db::query($sql);// 赠送数据*/
  28. $send_num = 0;
  29. $error_ids =[];
  30. var_dump(count($list));
  31. die();
  32. foreach ($list as $v) {
  33. $res = static::examples($send_user['id'],$v['id'],$receipt_phone);
  34. if ($res['status'] == 1) $send_num++;
  35. if ($res['status'] == 0) $error_ids[] = $v['id'];
  36. }
  37. var_dump($send_num,$error_ids);
  38. }
  39. // 转赠
  40. public static function examples($send_user_id,$id,$receipt_phone){
  41. if (!$id || !$receipt_phone ) return['status'=>0 ,'msg'=>'参数错误'];
  42. $info = Db::name('store_order_info')->where('id',$id)->where('mid',$send_user_id)->find();
  43. if (!$info) return['status'=>0 ,'msg'=>'藏品不存在'];
  44. if ($info['status']==2) return['status'=>0 ,'msg'=>'藏品已转赠'];
  45. $member = Db::name('store_member')->where('phone',$receipt_phone)->find();
  46. if (!$member) return['status'=>0 ,'msg'=>'转赠用户不存在'];
  47. if($member['id'] == $send_user_id) return['status'=>0 ,'msg'=>'自己无法转赠给自己'];
  48. if (!$info['collectors_hash'] && $info['type'] != 3) return['status'=>0 ,'msg'=>'发放中,无法转赠'];
  49. $pro_info = Db::name('store_collection')->where('id',$info['c_id'])->find();
  50. $log = Db::name('store_collect_examples_log')->where('order_info_id',$id)->find();
  51. if (!$log){
  52. if ($pro_info['one_given_day']!=0){
  53. $exam_time = strtotime($info['create_at'])+($pro_info['one_given_day']*60*60);
  54. if ($exam_time>time())return['status'=>0 ,'msg'=>'持有时间限制,无法转赠'];
  55. }
  56. }else{
  57. if ($pro_info['other_given_day']!=0){
  58. $exam_time = strtotime($log['create_at'])+($pro_info['other_given_day']*60*60);
  59. if ($exam_time>time()) return['status'=>0 ,'msg'=>'持有时间限制,无法转赠2'];
  60. }
  61. }
  62. Db::startTrans();
  63. try {
  64. Db::name('store_order_info')->where('id',$id)
  65. ->update(['status'=>2,'over_time'=>date('Y-m-d H:i:s'),'to_mid'=>$member['id'],'verify'=>Db::raw('verify - 1')]);
  66. $to_date = [
  67. 'order_id'=>$info['order_id'],
  68. 'order_no'=>get_order_sn(),
  69. 'tag'=>$info['tag'],
  70. 'mid'=>$member['id'],
  71. 'c_id'=>$info['c_id'],
  72. 'name'=>$pro_info['name'],
  73. 'cover'=>$pro_info['cover'],
  74. 'pro_info'=>$info['pro_info'],
  75. 'status'=>3,
  76. 'type' => $info['type'],
  77. 'to_mid'=>$send_user_id,
  78. 'over_time'=>date('Y-m-d H:i:s'),
  79. 'company'=>'象链数藏',
  80. 'company_hash'=>$info['company_hash'],
  81. 'company_hash_time'=>$info['company_hash_time'],
  82. 'ddcid'=>$info['ddcid'],
  83. 'collectors_hash'=>'',
  84. 'collectors_hash_time'=>date('Y-m-d H:i:s')
  85. ];
  86. $new_id = Db::name('store_order_info')->insertGetId($to_date);
  87. $log_date = [
  88. 'order_info_id'=>$new_id,
  89. 'mid'=>$send_user_id,
  90. 'to_mid'=>$member['id'],
  91. 'date'=>date('Y-m')
  92. ];
  93. Db::name('store_collect_examples_log')->insert($log_date);
  94. Db::commit();
  95. return['status'=>1 ,'msg'=>'转赠成功'];
  96. }catch (\Exception $e){
  97. Db::rollback();
  98. return['status'=>0 ,'msg'=>'转赠失败'];
  99. }
  100. }
  101. }