Join.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. <?php
  2. namespace app\api\controller;
  3. use app\admin\model\Fishery;
  4. use app\admin\model\Third;
  5. use app\admin\model\User;
  6. use app\admin\model\UserMoneyRecharge;
  7. use app\common\controller\Api;
  8. use think\Db;
  9. use think\Exception;
  10. use think\exception\ErrorException;
  11. use \app\admin\model\Yutang as YutangModel;
  12. /**
  13. * 加盟-塘主-渔场主
  14. * @ApiWeigh (5)
  15. * @package app\api\controller
  16. */
  17. class Join extends Api
  18. {
  19. protected $noNeedLogin = [];
  20. protected $noNeedRight = ['*'];
  21. /**
  22. * 申请入驻塘主or渔场主
  23. * @ApiMethod (POST)
  24. * @ApiParams (name=type, type="int", required=true,description="类型:1=塘主,2=渔场主")
  25. * @ApiParams (name=certificates_type, type="string", required=true,description="证件类型:营业执照/租赁资格证")
  26. * @ApiParams (name=certificates_image,type="string", required=true,,description="证件图片")
  27. * @ApiParams (name=cover_image,type="string", required=true,description="封面图")
  28. * @ApiParams (name=video,type="string", required=true,description="视频")
  29. * @ApiParams (name=province_id,type="int", required=true,description="省")
  30. * @ApiParams (name=city_id,type="int", required=true,description="市")
  31. * @ApiParams (name=area_id,type="int", required=true,description="区")
  32. * @ApiParams (name=address,type="string", required=true,description="详细地址")
  33. * @ApiParams (name=lng,type="string", required=true,description="经度")
  34. * @ApiParams (name=lat,type="string", required=true,description="纬度")
  35. * @ApiParams (name=fish_name,type="string", required=true,description="鱼塘名称")
  36. * @ApiParams (name=name,type="string", required=true,description="姓名")
  37. * @ApiParams (name=phone,type="string", required=true,description="联系方式")
  38. * @ApiParams (name=z_name,type="string", required=true,description="支付宝姓名")
  39. * @ApiParams (name=z_phone,type="string", required=true,description="支付宝手机号")
  40. */
  41. public function apply()
  42. {
  43. $user_id = $this->auth->id;
  44. $input = input();
  45. if (empty($input['type']) || empty($input['certificates_type']) || empty($input['certificates_image']) || empty($input['province_id']) || empty($input['city_id']) || empty($input['area_id']) || empty($input['address']) || empty($input['lng']) || empty($input['lat']) || empty($input['name']) || empty($input['phone'])) {
  46. $this->error('请完善信息');
  47. }
  48. if ($input['type'] != 1 && $input['type'] != 2) {
  49. $this->error('参数错误');
  50. }
  51. // 申请塘主时
  52. if ($input['type'] == 1 && (empty($input['cover_image']) || empty($input['video']) || empty($input['fish_name']) || empty($input['z_name']) || empty($input['z_phone']))) {
  53. $this->error('请完善信息');
  54. }
  55. $suppliers_model = new Fishery();
  56. // 检查是否申请过
  57. $info = $suppliers_model::where(['user_id' => $user_id, 'type' => $input['type']])->whereIn('logout_status', [1, 3])->find();
  58. if ($info) {
  59. $this->error('已提交过申请,不能重复提交');
  60. }
  61. $data = [
  62. 'user_id' => $user_id,
  63. 'type' => $input['type'],
  64. 'certificates_type' => $input['certificates_type'],
  65. 'certificates_image' => $input['certificates_image'],
  66. 'cover_image' => array_key_exists('cover_image', $input) ? $input['cover_image'] : '',
  67. 'video' => array_key_exists('video', $input) ? $input['video'] : '',
  68. 'province_id' => $input['province_id'],
  69. 'city_id' => $input['city_id'],
  70. 'area_id' => $input['area_id'],
  71. 'city' => city_name($input['province_id']) . city_name($input['city_id']) . city_name($input['area_id']),
  72. 'address' => $input['address'],
  73. 'lng' => $input['lng'],
  74. 'lat' => $input['lat'],
  75. 'fish_name' => array_key_exists('fish_name', $input) ? $input['fish_name'] : '',
  76. 'name' => $input['name'],
  77. 'phone' => $input['phone'],
  78. 'pay_money' => config('site.release_price')
  79. ];
  80. Db::startTrans();
  81. try {
  82. $suppliers_id = $suppliers_model->insertGetId($data);
  83. //更新用户表
  84. if ($input['type'] == 1) {
  85. $user_data['is_pond'] = 1;
  86. $user_data['z_name'] = $input['z_name'];
  87. $user_data['z_phone'] = $input['z_phone'];
  88. } else {
  89. $user_data['is_fishery'] = 1;
  90. }
  91. $user_model = new User();
  92. $user_model->save($user_data, ['id' => $user_id]);
  93. //添加申请鱼塘信息
  94. if ($input['type'] == 1) {
  95. $yutang_model = new YutangModel();
  96. $yutang_data = [
  97. 'image' => array_key_exists('cover_image', $input) ? $input['cover_image'] : '',
  98. 'name' => array_key_exists('fish_name', $input) ? $input['fish_name'] : '',
  99. 'province' => $input['province_id'],
  100. 'city' => $input['city_id'],
  101. 'area' => $input['area_id'],
  102. 'address' => $input['address'],
  103. 'latitude' => $input['lat'],
  104. 'longitude' => $input['lng'],
  105. 'phone' => $input['phone'],
  106. 'video' => array_key_exists('video', $input) ? $input['video'] : '',
  107. 'license' => $input['certificates_image'],
  108. 'price' => config('site.release_price'),
  109. 'status' => 1,
  110. 'user_id' => $user_id,
  111. 'order_no' => time() . $user_id,
  112. 'fishery_id' => $suppliers_id
  113. ];
  114. $yutang_model->insert($yutang_data);
  115. }
  116. Db::commit();
  117. $this->success('申请成功,请耐心等待审核');
  118. } catch (ErrorException $e) {
  119. Db::rollback();
  120. $this->error('申请失败,请稍后重试');
  121. }
  122. }
  123. /**
  124. * 申请入驻-查看
  125. * @ApiMethod (POST)
  126. * @ApiParams (name=type, type="int", required=true,description="类型:1=塘主,2=渔场主")
  127. * @ApiReturnParams (name=has_apply, type="bool", required=true,description="true=有申请信息,false=没有申请信息")
  128. * @ApiReturnParams (name=detail, type="object", required=true,description="详细信息,参数见apply接口")
  129. * @ApiReturnParams (name=detail.status, type="int", required=true,description="状态:1=审核中,2=审核通过,3=审核失败,4缴费成功")
  130. * @ApiReturnParams (name=detail.refusal_reason, type="string", required=true,description="审核失败理由")
  131. * @ApiReturn ({"code":1,"msg":"ok","time":"1672390281","data":{"has_apply":true,"detail":{"id":3,"type":1,"user_id":3,"certificates_type":"营业执照","certificates_image":"11","cover_image":"1","video":"111","province_id":1,"city_id":2,"area_id":4,"city":"北京市北京市北京市","address":"address","lng":"123.1","lat":"40.5","fish_name":"余名","name":"佚名","phone":"13161001120","status":1,"refusal_reason":null,"createtime":1672387969,"updatetime":1672387969,"deletetime":null,"logout":0,"logout_reason":null,"pay_time":0,"pay_no":"","pay_money":"0.00","type_text":"Type 1","status_text":"Status 1","logout_text":""}}})
  132. */
  133. public function apply_detail()
  134. {
  135. $user_id = $this->auth->id;
  136. $input = input();
  137. if (empty($input['type'])) {
  138. $this->error('请完善信息');
  139. }
  140. if ($input['type'] != 1 && $input['type'] != 2) {
  141. $this->error('参数错误');
  142. }
  143. $fishery_model = new Fishery();
  144. // 申请的信息
  145. $info = $fishery_model::where(['user_id' => $user_id, 'type' => $input['type']])->order('id', 'desc')->find();
  146. $has_apply = false;
  147. if($info){
  148. $has_apply = true;
  149. }
  150. if ($info['logout_status'] == 2) {
  151. unset($info['id']);
  152. }
  153. $info['z_name'] = $this->auth->z_name;
  154. $info['z_phone'] = $this->auth->z_phone;
  155. $this->success('ok', ['has_apply' => $has_apply, 'detail' => $info]);
  156. }
  157. /**
  158. * 重新申请入驻塘主or渔场主
  159. * @ApiMethod (POST)
  160. * @ApiParams (name=id, type="int", required=true,description="申请id")
  161. * @ApiParams (name=type, type="int", required=true,description="类型:1=塘主,2=渔场主")
  162. * @ApiParams (name=certificates_type, type="string", required=true,description="证件类型:营业执照/租赁资格证")
  163. * @ApiParams (name=certificates_image,type="string", required=true,,description="证件图片")
  164. * @ApiParams (name=cover_image,type="string", required=true,description="封面图")
  165. * @ApiParams (name=video,type="string", required=true,description="视频")
  166. * @ApiParams (name=province_id,type="int", required=true,description="省")
  167. * @ApiParams (name=city_id,type="int", required=true,description="市")
  168. * @ApiParams (name=area_id,type="int", required=true,description="区")
  169. * @ApiParams (name=address,type="string", required=true,description="详细地址")
  170. * @ApiParams (name=lng,type="string", required=true,description="经度")
  171. * @ApiParams (name=lat,type="string", required=true,description="纬度")
  172. * @ApiParams (name=fish_name,type="string", required=true,description="鱼塘名称")
  173. * @ApiParams (name=name,type="string", required=true,description="姓名")
  174. * @ApiParams (name=phone,type="string", required=true,description="联系方式")
  175. * @ApiParams (name=z_name,type="string", required=true,description="支付宝姓名")
  176. * @ApiParams (name=z_phone,type="string", required=true,description="支付宝手机号")
  177. */
  178. public function re_apply()
  179. {
  180. $user_id = $this->auth->id;
  181. $input = input();
  182. if (empty($input['type']) || empty($input['certificates_type']) || empty($input['certificates_image']) || empty($input['province_id']) || empty($input['city_id']) || empty($input['area_id']) || empty($input['address']) || empty($input['lng']) || empty($input['lat']) || empty($input['name']) || empty($input['phone'])) {
  183. $this->error('请完善信息');
  184. }
  185. if ($input['type'] != 1 && $input['type'] != 2) {
  186. $this->error('参数错误');
  187. }
  188. // 申请塘主时
  189. if ($input['type'] == 1 && (empty($input['cover_image']) || empty($input['video']) || empty($input['fish_name']) || empty($input['z_name']) || empty($input['z_phone']))) {
  190. $this->error('请完善信息');
  191. }
  192. $suppliers_model = new Fishery();
  193. // 检查申请信息
  194. $info = $suppliers_model::get(['id' => $input['id'], 'user_id' => $user_id, 'type' => $input['type']]);
  195. if (!$info) {
  196. $this->error('信息不存在,不能重新申请');
  197. }
  198. $data = [
  199. 'certificates_type' => $input['certificates_type'],
  200. 'certificates_image' => $input['certificates_image'],
  201. 'cover_image' => array_key_exists('cover_image', $input) ? $input['cover_image'] : '',
  202. 'video' => array_key_exists('video', $input) ? $input['video'] : '',
  203. 'province_id' => $input['province_id'],
  204. 'city_id' => $input['city_id'],
  205. 'area_id' => $input['area_id'],
  206. 'city' => city_name($input['province_id']) . city_name($input['city_id']) . city_name($input['area_id']),
  207. 'address' => $input['address'],
  208. 'lng' => $input['lng'],
  209. 'lat' => $input['lat'],
  210. 'fish_name' => array_key_exists('fish_name', $input) ? $input['fish_name'] : '',
  211. 'name' => $input['name'],
  212. 'phone' => $input['phone'],
  213. 'status' => 1,
  214. 'logout_status' => 2,
  215. 'refusal_reason' => "",
  216. ];
  217. Db::startTrans();
  218. try {
  219. $suppliers_model->save($data, ['id' => $input['id']]);
  220. //更新用户表
  221. if ($input['type'] == 1) {
  222. $user_data['is_pond'] = 1;
  223. $user_data['z_name'] = $input['z_name'];
  224. $user_data['z_phone'] = $input['z_phone'];
  225. } else {
  226. $user_data['is_fishery'] = 1;
  227. }
  228. $user_model = new User();
  229. $user_model->save($user_data, ['id' => $user_id]);
  230. Db::commit();
  231. $this->success('申请成功,请耐心等待审核');
  232. } catch (ErrorException $e) {
  233. Db::rollback();
  234. $this->error('申请失败,请稍后重试');
  235. }
  236. }
  237. /**
  238. * 缴费
  239. * @ApiMethod (POST)
  240. * @ApiParams (name="type",type="string", required=true,description="充值类型:wechat=微信,alipay=支付宝")
  241. * @ApiParams (name="mod",type="string", required=true,description="支付方法:web、wap、app、scan、pos、mp、miniapp")
  242. */
  243. public function payment()
  244. {
  245. $money = config('site.release_price');
  246. if ($money <= 0) {
  247. $this->error('请联系平台设置缴费金额');
  248. }
  249. $type = $this->request->post('type');
  250. if ($type != 'wechat' && $type != 'alipay') {
  251. $this->error('请选择支付类型');
  252. }
  253. $method = $this->request->post('mod');
  254. $fishery_model = new Fishery();
  255. $fishery_info = $fishery_model->where('user_id', $this->auth->id)
  256. ->where('type', 1)
  257. ->whereIn('status', [2, 5])
  258. ->find();
  259. if (!$fishery_info) {
  260. $this->error('提交的申请不存在');
  261. }
  262. // 订单号
  263. $orderid = 'RZ' . order_no_s($this->auth->id);
  264. Db::startTrans();
  265. try {
  266. $data = [
  267. 'pay_money' => $money,//更新缴费金额
  268. 'pay_no' => $orderid,
  269. 'status' => 5
  270. ];
  271. $fishery_info->save($data);
  272. Db::commit();
  273. } catch (Exception $e) {
  274. Db::rollback();
  275. $this->error($e);
  276. }
  277. // 兼容小程序登录选手机号,传openid
  278. $openID = input('wx_openid');
  279. if ($openID == '') {
  280. if ($type == 'wechat' && $method != 'app') {
  281. $third_model = new Third();
  282. $openID = $third_model->where('user_id', $this->auth->id)->where('platform', 'xcc')->value('openid');
  283. if ($openID == '') {
  284. $this->error("openid");
  285. }
  286. }
  287. }
  288. $params = [
  289. 'amount' => $money,
  290. 'orderid' => $orderid,
  291. 'type' => $type,
  292. 'title' => "塘主(" . $fishery_info->id . ")支付入驻资金",
  293. 'notifyurl' => common_url() . '/index.php/api/Notify/fishery_notify/type/' . $type,
  294. 'returnurl' => common_url() . '/index.php/api/Notify/fishery_notify/type/' . $type . '/out_trade_no/' . $orderid,
  295. 'method' => $method,
  296. 'openid' => $openID,
  297. ];
  298. $pay = \addons\epay\library\Service::submitOrder($params);
  299. $this->success('ok', $pay);
  300. }
  301. /**
  302. * 账户注销-提交
  303. * @ApiMethod (POST)
  304. * @ApiParams (name=logout_reason,type="string", required=true,description="账户注销理由")
  305. * @ApiParams (name=logout_type,type="string", required=true,description="类型:1=塘主,2=渔场主")
  306. */
  307. public function user_logout()
  308. {
  309. $logout_reason = $this->request->post('logout_reason');
  310. $logout_type = $this->request->post('logout_type');
  311. if ($logout_reason == "" || $logout_type == '') {
  312. $this->error(__('Invalid parameters'));
  313. }
  314. $suppliers_model = new Fishery();
  315. // 检查申请信息
  316. if ($logout_type == 1) {
  317. $status = 4;
  318. } else {
  319. $status = 2;
  320. }
  321. $info = $suppliers_model::get(['user_id' => $this->auth->id, 'type' => $logout_type, 'status' => $status]);
  322. if (!$info) {
  323. $this->error('申请信息不存在');
  324. }
  325. $info->logout = 1;
  326. $info->logout_reason = $logout_reason;
  327. $info->logout_status = 1;
  328. $info->save();
  329. $this->success('成功');
  330. }
  331. }