User.php 63 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786
  1. <?php
  2. namespace app\common\model;
  3. use app\common\model\Order;
  4. use app\common\model\Sms;
  5. use Firebase\JWT\JWT;
  6. use app\common\model\UserIntegralLog;
  7. use think\Model;
  8. use app\common\library\Common;
  9. use think\facade\Validate;
  10. use think\Request;
  11. use think\Db;
  12. use function foo\func;
  13. use app\common\library\WxService;
  14. use app\common\library\WxPay;
  15. use app\common\library\AliPay;
  16. use EasyWeChat\Factory;
  17. header('Access-Control-Allow-Origin: *');
  18. /**
  19. * 会员模型
  20. */
  21. class User Extends Model
  22. {
  23. // 开启自动写入时间戳字段
  24. protected $autoWriteTimestamp = 'TIMESTAMP';
  25. // 定义时间戳字段名
  26. protected $createTime = 'create_at';
  27. protected $updateTime = 'update_at';
  28. // 追加属性
  29. protected $append = [
  30. ];
  31. protected $table = 'q_user';
  32. /**
  33. * 注册
  34. */
  35. public static function register($phone,$password,$ver_code,$invite_code){
  36. $phone_use = self::where('phone',$phone)->find();
  37. if ($phone_use){
  38. return Common::return_error('手机号已注册!');
  39. }
  40. //获取最后的验证码
  41. // $time = time()-90;
  42. // $sms = Sms::where(['mobile' => $phone, 'event' => 'register'])
  43. // ->where('createtime','>',$time)
  44. // ->order('id', 'DESC')
  45. // ->find();
  46. // if (!$sms || $sms->code != $ver_code){
  47. // return Common::return_error('短信验证码不正确!');
  48. // }
  49. $data['phone'] = $phone;
  50. $data['fid'] = $invite_code ? $invite_code : 0;
  51. $data['password'] = md5($password);
  52. $data['ip'] = request()->ip();
  53. Db::startTrans();
  54. try {
  55. self::create($data);
  56. if ($invite_code){
  57. CouponUser::create([
  58. 'user_id'=>$invite_code,
  59. 'coupon_title'=>'满100可用',
  60. 'coupon_price'=>50,
  61. 'use_min_price'=>100,
  62. 'add_time'=>time(),
  63. 'end_time'=>time()+(30*24*60*60),
  64. ]);
  65. }
  66. Db::commit();
  67. return Common::return_success('注册成功');
  68. }catch (Exception $e) {
  69. Db::rollback();
  70. return Common::return_error('注册失败');
  71. }
  72. }
  73. /**
  74. * 登录
  75. */
  76. public static function login($phone,$password,$type,$ver_code,$come){
  77. $phone_use = self::where('phone',$phone)->find();
  78. if (!$phone_use){
  79. return Common::return_error('手机号未注册!');
  80. }
  81. if ($phone_use['status']!=1){
  82. return Common::return_error('账号已禁用!');
  83. }
  84. if ($type==1){
  85. if ($phone_use['password'] != md5($password)){
  86. return Common::return_error('密码错误!');
  87. }
  88. }elseif ($type==2){
  89. //获取最后的验证码
  90. $time = time()-90;
  91. $sms = Sms::where(['mobile' => $phone, 'event' => 'login'])
  92. ->where('createtime','>',$time)
  93. ->order('id', 'DESC')
  94. ->find();
  95. if (!$sms || $sms->code != $ver_code){
  96. //return Common::return_error('短信验证码不正确!');
  97. }
  98. }
  99. if ($come==2){
  100. $info = $phone_use;
  101. if (!$info['skills_label']){
  102. $info['skills_label'] = [];
  103. }else{
  104. $info['skills_label'] = explode(',', $info['skills_label']);
  105. }
  106. if (!$info['good_type']){
  107. $info['good_type'] = [];
  108. }else{
  109. $info['good_type'] = explode(',', $info['good_type']);
  110. }
  111. if (!$info['good_style']){
  112. $info['good_style'] = [];
  113. }else{
  114. $info['good_style'] = explode(',', $info['good_style']);
  115. }
  116. if (!$info['related_certificate']){
  117. $info['related_certificate'] = [];
  118. }else{
  119. $info['related_certificate'] = explode(',', $info['related_certificate']);
  120. }
  121. if (!$info['works']){
  122. $info['works'] = [];
  123. }else{
  124. $info['works'] = explode(',', $info['works']);
  125. }
  126. $data['info'] = $phone_use;
  127. if ($phone_use['type']==1 && $phone_use['audit']==0){
  128. $data['type'] = 1;
  129. }elseif ($phone_use['type']==1 && $phone_use['audit']==1){
  130. $data['type'] = 2;
  131. }elseif ($phone_use['type']==1 && $phone_use['audit']==3){
  132. $data['type'] = 3;
  133. }else{
  134. $data['type'] = 4;
  135. }
  136. $data['token'] = "";
  137. if ($data['type']==4){
  138. self::where('id',$phone_use['id'])->update(['ip'=>request()->ip()]);
  139. LoginLog::create(['user_id'=>$phone_use['id'],'ip'=>request()->ip()]);
  140. $token = JWT::encode($phone_use,config('jwt.key'));
  141. $data['token'] = $token;
  142. }
  143. return Common::return_success('成功',$data);
  144. }
  145. self::where('id',$phone_use['id'])->update(['ip'=>request()->ip()]);
  146. LoginLog::create(['user_id'=>$phone_use['id'],'ip'=>request()->ip()]);
  147. $token = JWT::encode($phone_use,config('jwt.key'));
  148. $data['token'] = $token;
  149. return Common::return_success('登录成功',$data);
  150. }
  151. /**
  152. * 微信授权登录
  153. * @param $code
  154. */
  155. public static function wechatLogin($code){
  156. $appid = Config::get_values('wechat_appid');
  157. $secret = Config::get_values('wechat_appsecret');
  158. $url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=$appid&secret=$secret&code=$code&grant_type=authorization_code";
  159. $result = Common::httpcurl($url);
  160. if (isset($result['access_token'])){
  161. $access_token=$result['access_token'];
  162. $openid=$result['openid'];
  163. $urltoc = "https://api.weixin.qq.com/sns/userinfo?access_token=$access_token&openid=$openid&lang=zh_CN";
  164. $resinfos =Common::httpcurl($urltoc);
  165. //数据库是否已注册
  166. $user = self::where('status',1)->where('openid',$resinfos['openid'])->find();
  167. if ($user){
  168. self::where('id',$user['id'])->update(['ip'=>request()->ip()]);
  169. LoginLog::create(['user_id'=>$user['id'],'ip'=>request()->ip()]);
  170. $token = JWT::encode($user,config('jwt.key'));
  171. return Common::return_success('登录成功',['token'=>$token]);
  172. }else{
  173. return Common::return_error('未注册!');
  174. }
  175. }else{
  176. return Common::return_error('获取access_token失败');
  177. }
  178. }
  179. /**
  180. * 获取微信session_key
  181. */
  182. public static function getSessionKey($code){
  183. $appid = Config::get_values('small_wechat_id');
  184. $secret = Config::get_values('small_wechat_appsecret');
  185. echo $appid."<br />";
  186. echo $secret;
  187. $url = "https://api.weixin.qq.com/sns/jscode2session?appid=" . $appid . "&secret=" . $secret . "&js_code=" . $code . "&grant_type=authorization_code";
  188. $session_key = Common::curlRequest($url);
  189. print_r($session_key);die;
  190. return $session_key;
  191. }
  192. /**
  193. * 微信登录绑定手机号
  194. */
  195. public static function wechatLoginBindPhone($code,$rawData,$phone,$ver_code,$password){
  196. $phone_use = self::where('phone',$phone)->find();
  197. if ($phone_use && $phone_use['openid']!=''){
  198. return Common::return_error('手机号已被绑定!');
  199. }
  200. // if (!$phone_use['status']){
  201. // return Common::return_error('账号已禁用!');
  202. // }
  203. //获取最后的验证码
  204. $time = time()-90;
  205. $sms = Sms::where(['mobile' => $phone, 'event' => 'bindwechat'])
  206. ->where('createtime','>',$time)
  207. ->order('id', 'DESC')
  208. ->find();
  209. if (!$sms || $sms->code != $ver_code){
  210. return Common::return_error('短信验证码不正确!');
  211. }
  212. $appid = Config::get_values('wechat_appid');
  213. $secret = Config::get_values('wechat_appsecret');
  214. $url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=$appid&secret=$secret&code=$code&grant_type=authorization_code";
  215. $result = Common::httpcurl($url);
  216. if (isset($result['access_token'])){
  217. $access_token=$result['access_token'];
  218. $openid=$result['openid'];
  219. $urltoc = "https://api.weixin.qq.com/sns/userinfo?access_token=$access_token&openid=$openid&lang=zh_CN";
  220. $resinfos = Common::httpcurl($urltoc);
  221. $openid = $resinfos['openid'];
  222. if (!$phone_use){
  223. $data['phone'] = $phone;
  224. $data['nickname'] = $resinfos['nickname'];
  225. $data['headimg'] = $resinfos['headimgurl'];
  226. $data['openid'] = $openid;
  227. $data['password'] = md5($password);
  228. $data['ip'] = request()->ip();
  229. Db::startTrans();
  230. try {
  231. $user = self::create($data);
  232. Db::commit();
  233. $userId =$user->id;
  234. LoginLog::create(['user_id'=>$userId,'ip'=>request()->ip()]);
  235. $user = self::where('id',$userId)->find();
  236. $token = JWT::encode($user,config('jwt.key'));
  237. return Common::return_success('授权成功',['token'=>$token]);
  238. }catch (Exception $e) {
  239. Db::rollback();
  240. return Common::return_error('失败');
  241. }
  242. }else{
  243. $da['openid'] = $openid;
  244. if (!$phone_use['headimg']){
  245. $da['headimg'] = $resinfos['headimgurl'];
  246. }
  247. if (!$phone_use['nickname']){
  248. $da['nickname'] = $resinfos['nickname'];
  249. }
  250. if (self::where('id',$phone_use['id'])->update($da)){
  251. LoginLog::create(['user_id'=>$phone_use['id'],'ip'=>request()->ip()]);
  252. $token = JWT::encode($phone_use,config('jwt.key'));
  253. return Common::return_success('绑定成功',['token'=>$token]);
  254. }else{
  255. return Common::return_error('失败');
  256. }
  257. }
  258. }else{
  259. return Common::return_error('获取access_token失败');
  260. }
  261. }
  262. /**
  263. * 商家注册第一步
  264. */
  265. public static function designer_register_one($phone,$ver_code){
  266. $phone_use = self::where('phone',$phone)->find();
  267. if ($phone_use){
  268. return Common::return_error('手机号已注册!');
  269. }
  270. //获取最后的验证码
  271. $time = time()-90;
  272. $sms = Sms::where(['mobile' => $phone, 'event' => 'register'])
  273. ->where('createtime','>',$time)
  274. ->order('id', 'DESC')
  275. ->find();
  276. if (!$sms || $sms->code != $ver_code){
  277. return Common::return_error('短信验证码不正确!');
  278. }
  279. return Common::return_success('验证成功');
  280. }
  281. /**
  282. * 商家注册第二步
  283. */
  284. public static function designer_register_two($data){
  285. $phone_use = self::where('phone',$data['phone'])->find();
  286. if ($phone_use && $phone_use['type']==2){
  287. return Common::return_error('手机号已注册!');
  288. }
  289. $data['audit'] = 1;
  290. Db::startTrans();
  291. try {
  292. self::where('phone',$data['phone'])->update($data);
  293. Db::commit();
  294. return Common::return_success('申请成功,等待审核');
  295. }catch (Exception $e) {
  296. Db::rollback();
  297. return Common::return_error('申请失败');
  298. }
  299. }
  300. /**
  301. * 忘记密码
  302. */
  303. public static function forgotPassword($phone,$password,$ver_code){
  304. $phone_use = self::where('phone',$phone)->find();
  305. if (!$phone_use){
  306. return Common::return_error('手机号未注册!');
  307. }
  308. //获取最后的验证码
  309. $time = time()-90;
  310. $sms = Sms::where(['mobile' => $phone, 'event' => 'forgetpwd'])
  311. ->where('createtime','>',$time)
  312. ->order('id', 'DESC')
  313. ->find();
  314. if (!$sms || $sms->code != $ver_code){
  315. return Common::return_error('短信验证码不正确!');
  316. }
  317. $phone_use->password = md5($password);
  318. Db::startTrans();
  319. try {
  320. $phone_use->save();
  321. Db::commit();
  322. return Common::return_success('修改成功');
  323. }catch (Exception $e) {
  324. Db::rollback();
  325. return Common::return_error('修改失败');
  326. }
  327. }
  328. /**
  329. * 修改密码
  330. */
  331. public static function changePassword($user_id,$password,$ver_code){
  332. $phone_use = self::where('id',$user_id)->find();
  333. //获取最后的验证码
  334. $time = time()-90;
  335. $sms = Sms::where(['mobile' => $phone_use['phone'], 'event' => 'changepwd'])
  336. ->where('createtime','>',$time)
  337. ->order('id', 'DESC')
  338. ->find();
  339. if (!$sms || $sms->code != $ver_code){
  340. return Common::return_error('短信验证码不正确!');
  341. }
  342. $phone_use->password = md5($password);
  343. Db::startTrans();
  344. try {
  345. $phone_use->save();
  346. Db::commit();
  347. return Common::return_success('修改成功');
  348. }catch (Exception $e) {
  349. Db::rollback();
  350. return Common::return_error('修改失败');
  351. }
  352. }
  353. /**
  354. * 我的收货地址列表
  355. */
  356. public static function MyAddress($user_id,$Nowpage,$limits){
  357. $list = Address::where('is_del',0)
  358. ->where('user_id',$user_id)
  359. ->page($Nowpage,$limits)
  360. ->order('is_default desc,id desc')
  361. ->select();
  362. $data['count'] = count($list);
  363. $data['list'] = $list;
  364. return Common::return_success('成功',$data);
  365. }
  366. /**
  367. * 添加,修改收货地址
  368. */
  369. public static function AddEditAddress($user_id,$data,$address_id){
  370. if ($address_id){
  371. $address = Address::where('id',$address_id)->where('user_id',$user_id)->find();
  372. if (!$address) return Common::return_error('地址不存在');
  373. //编辑
  374. if ($address->save($data)){
  375. if ($data['is_default']==1){
  376. Address::where('user_id',$user_id)
  377. ->where('is_del',0)
  378. ->where('id','neq',$address_id)
  379. ->update(['is_default'=>0]);
  380. }
  381. return Common::return_success('编辑成功');
  382. }else{
  383. return Common::return_error('编辑失败');
  384. }
  385. }else{
  386. $data['user_id'] = $user_id;
  387. $addre = Address::create($data);
  388. if ($addre){
  389. $address_id = $addre->id;
  390. if ($data['is_default']==1){
  391. Address::where('user_id',$user_id)
  392. ->where('is_del',0)
  393. ->where('id','neq',$address_id)
  394. ->update(['is_default'=>0]);
  395. }
  396. return Common::return_success('添加成功');
  397. }else{
  398. return Common::return_error('添加失败');
  399. }
  400. }
  401. }
  402. /**
  403. * 设为默认地址
  404. */
  405. public static function SetAddressDefault($user_id,$address_id){
  406. $address = Address::where('id',$address_id)
  407. ->where('user_id',$user_id)
  408. ->find();
  409. if (!$address) return Common::return_error('地址不存在');
  410. if ($address->save(['is_default'=>1])){
  411. Address::where('user_id',$user_id)
  412. ->where('is_del',0)
  413. ->where('id','neq',$address_id)
  414. ->update(['is_default'=>0]);
  415. return Common::return_success('设置成功');
  416. }else{
  417. return Common::return_error('设置失败');
  418. }
  419. }
  420. /**
  421. * 删除收货地址
  422. */
  423. public static function DelAddress($user_id,$address_id){
  424. $address = Address::where('id',$address_id)->where('user_id',$user_id)->find();
  425. if (!$address) return Common::return_error('地址不存在');
  426. if ($address->save(['is_del'=>time()])){
  427. return Common::return_success('删除成功');
  428. }else{
  429. return Common::return_error('删除失败');
  430. }
  431. }
  432. /**
  433. * 编辑用户资料
  434. */
  435. public static function EditUserInfo($user_id,$data){
  436. if (self::where('id',$user_id)->update($data)){
  437. return Common::return_success('编辑成功');
  438. }else{
  439. return Common::return_error('编辑失败');
  440. }
  441. }
  442. /**
  443. * 申请成为设计师
  444. */
  445. public static function applyDesigner($user_id,$data){
  446. $data['type'] = 1;
  447. $data['audit'] = 1;
  448. Db::startTrans();
  449. try {
  450. self::where('id',$user_id)->update($data);
  451. Db::commit();
  452. return Common::return_success('提交成功');
  453. }catch (Exception $e) {
  454. Db::rollback();
  455. return Common::return_error('提交失败');
  456. }
  457. }
  458. /**
  459. * 投诉
  460. */
  461. public static function Message($user_id,$content){
  462. $data['content'] = $content;
  463. $data['user_id'] = $user_id;
  464. if (Message::create($data)) return Common::return_success('提交成功');
  465. return Common::return_error('提交失败');
  466. }
  467. /**
  468. * 时间管理
  469. */
  470. public static function timeList($user_id){
  471. $time = time();
  472. //组合数据
  473. $date = [];
  474. for ($i=1; $i<=15; $i++){
  475. $date[$i] = date('Y-m-d' ,strtotime( $i .' days', $time));
  476. }
  477. $array = [];
  478. foreach ($date as &$v){
  479. $da = UserTime::where('user_id',$user_id)->where('time',$v)->find();
  480. if ($da){
  481. $array2['switch'] = $da['switch'];
  482. $array2['price'] = $da['price'];
  483. }else{
  484. $array2['switch'] = 2;
  485. $array2['price'] = 0;
  486. }
  487. $array2['date'] = $v;
  488. array_push($array,$array2);
  489. }
  490. return Common::return_success('成功',$array);
  491. }
  492. /**
  493. * 时间设置开关
  494. */
  495. // public static function timeSwitch($user_id,$date,$switch,$price){
  496. // $info = UserTime::where('user_id',$user_id)->where('time',$date)->find();
  497. // if ($info){
  498. // if (UserTime::where('id',$info['id'])->update(['switch'=>$switch,'price'=>$price])){
  499. // return Common::return_success('成功');
  500. // }else{
  501. // return Common::return_error('失败');
  502. // }
  503. // }else{
  504. // if (UserTime::create(
  505. // [
  506. // 'user_id'=>$user_id,
  507. // 'time'=>$date,
  508. // 'switch'=>$switch,
  509. // 'price'=>$price
  510. // ]
  511. // )){
  512. // return Common::return_success('成功');
  513. // }else{
  514. // return Common::return_error('失败');
  515. // }
  516. // }
  517. // }
  518. /**
  519. * 时间设置开关
  520. */
  521. public static function timeSwitch($user_id,$json){
  522. foreach ($json as &$v){
  523. $info = UserTime::where('user_id',$user_id)->where('time',$v['date'])->find();
  524. if ($info){
  525. UserTime::where('id',$info['id'])->update(['switch'=>$v['switch'],'price'=>$v['price']]);
  526. }else{
  527. UserTime::create(
  528. [
  529. 'user_id'=>$user_id,
  530. 'time'=>$v['date'],
  531. 'switch'=>$v['switch'],
  532. 'price'=>$v['price']
  533. ]);
  534. }
  535. }
  536. return Common::return_success('成功');
  537. }
  538. /**
  539. * 余额提现
  540. */
  541. public static function userWithdraw($user_id,$money,$withdraw_type){
  542. $userinfo = self::where('id',$user_id)->find();
  543. if ($userinfo['money']<$money)
  544. return Common::return_error('余额不足');
  545. $data['user_id'] = $user_id;
  546. $order_no = Common::getNewOrderId($user_id);
  547. $data['order_no'] = $order_no;
  548. $data['withdraw_type'] = $withdraw_type;
  549. $data['price'] = $money;
  550. Db::startTrans();
  551. try {
  552. UserWithdraw::create($data);
  553. User::money($money,$user_id,$withdraw_type=='weixin' ? '微信提现' : '支付宝提现' .$money.'元');
  554. Db::commit();
  555. return Common::return_success('提交成功');
  556. }catch (Exception $e) {
  557. Db::rollback();
  558. return Common::return_error('提交失败');
  559. }
  560. }
  561. /**
  562. * 消费明细
  563. */
  564. public static function moneyRecord($user_id,$Nowpage,$limits){
  565. //提现记录
  566. $withdraw = UserWithdraw::where('user_id',$user_id)->field('withdraw_type,paid,why,create_at,price')->select();
  567. if (count($withdraw)>0){
  568. $withdraw = $withdraw->toArray();
  569. foreach ($withdraw as &$v){
  570. $v['price'] = '-'.$v['price'];
  571. $v['project_name'] = '';
  572. }
  573. }else{
  574. $withdraw = [];
  575. }
  576. //收益记录
  577. //$record = MoneyLog::where('user_id',$user_id)->where('title','订单收益')->select();
  578. $record = MoneyLog::where('user_id',$user_id)->whereIn('title','订单收益,加班费收益')->select();
  579. if (count($record)>0){
  580. $record = $record->toArray();
  581. $array = [];
  582. foreach ($record as &$v){
  583. $array2['withdraw_type'] = 'sy';
  584. $array2['paid'] = 1;
  585. $array2['why'] = '';
  586. $array2['create_at'] = $v['create_at'];
  587. $array2['price'] = '+'.$v['change_money'];
  588. if ($v['link_id']!=0){
  589. $project_name = Order::where('id',$v['link_id'])->value('project_name');
  590. }else{
  591. $project_name = '';
  592. }
  593. $array2['project_name'] = $project_name;
  594. array_push($array,$array2);
  595. }
  596. }else{
  597. $array = [];
  598. }
  599. $list = array_merge($withdraw,$array);
  600. $data['count'] = count($list);
  601. array_multisort(array_column($list,'create_at'),SORT_DESC,$list);
  602. $list = array_slice($list,($Nowpage-1)*$limits,$limits);
  603. $data['list'] = $list;
  604. return Common::return_success('成功',$data);
  605. }
  606. /**
  607. * 获取首页搜索日期列表
  608. */
  609. public static function searchDateList(){
  610. $time = time();
  611. //组合数据
  612. $date = [];
  613. for ($i=1; $i<=15; $i++){
  614. $date[$i-1]['date'] = date('Y-m-d' ,strtotime( $i .' days', $time));
  615. $date[$i-1]['time'] = date('m-d' ,strtotime( $i .' days', $time));
  616. }
  617. return Common::return_success('成功',$date);
  618. }
  619. /**
  620. * 首页设计师列表
  621. */
  622. public static function Designer($user_id,$Nowpage,$limits,$design_classifi,$keywords,$lat,$log,$city,$distance,$price,$evaluation,$date,$price_section_start,$price_section_end){
  623. // self::RecentlyPrice(); //更新价格
  624. $count = self::designerByWhere($user_id,$design_classifi,$keywords,$city,$date,$price_section_start,$price_section_end)->count();
  625. if ($count){
  626. $field = ['id','phone','name','nickname','headimg','price','design_classifi','skills_label','good_type','good_style','evaluation','works','province','city','area','work_experience','work_year','signature'];
  627. if ($lat && $log){
  628. $field['ROUND(6378.138 * 2 * ASIN(SQRT(POW( SIN( ( ' . $lat . ' * PI( ) / 180 - wd * PI( ) / 180 ) / 2 ), 2 ) + COS( ' . $lat . ' * PI( ) / 180 ) * COS( wd * PI( ) / 180 ) * POW( SIN( ( ' . $log . ' * PI( ) / 180 - jd * PI( ) / 180 ) / 2 ), 2 ))) * 1000)'] = 'distance';
  629. }
  630. $list = self::designerByWhere($user_id,$design_classifi,$keywords,$city,$date,$price_section_start,$price_section_end)
  631. ->field($field)
  632. ->when($distance,function ($query) use ($distance,$lat,$log){
  633. if ($lat && $log){
  634. $query->order('distance '.$distance);
  635. }
  636. })
  637. ->when($price,function ($query) use ($price){
  638. $query->order('price '.$price);
  639. })
  640. ->when($evaluation,function ($query) use ($evaluation){
  641. $query->order('evaluation '.$evaluation);
  642. })
  643. ->page($Nowpage,$limits)
  644. ->select();
  645. $time = time();
  646. //组合数据
  647. $date = [];
  648. for ($i=1; $i<=15; $i++){
  649. $date[$i] = date('Y-m-d' ,strtotime( $i .' days', $time));
  650. }
  651. foreach ($list as &$v){
  652. if ($v['works']){
  653. $v['works'] = explode(',',$v['works']);
  654. }else{
  655. $v['works'] = [];
  656. }
  657. if ($v['skills_label']){
  658. $v['skills_label'] = explode(',',$v['skills_label']);
  659. }else{
  660. $v['skills_label'] = [];
  661. }
  662. if ($v['good_type']){
  663. $v['good_type'] = explode(',',$v['good_type']);
  664. }else{
  665. $v['good_type'] = [];
  666. }
  667. if ($v['good_style']){
  668. $v['good_style'] = explode(',',$v['good_style']);
  669. }else{
  670. $v['good_style'] = [];
  671. }
  672. $v['name'] = $v['nickname'];
  673. $datee = Works::where('user_id',$v['id'])
  674. ->where('is_del',1)
  675. ->group('date')
  676. ->order('id desc')
  677. ->column('date');
  678. if ($datee){
  679. $arr = [];
  680. foreach ($datee as &$a){
  681. $array22['date'] = $a;
  682. $array22['imgs'] = Works::where('user_id',$v['id'])
  683. ->where('date',$a)
  684. ->where('is_del',1)
  685. ->field('id,img')
  686. ->select();
  687. array_push($arr,$array22);
  688. }
  689. }else{
  690. $arr = [];
  691. }
  692. $v['works_list'] = $arr;
  693. $array = [];
  694. foreach ($date as &$a){
  695. $da = UserTime::where('user_id',$v['id'])->where('time',$a)->find();
  696. if ($da){
  697. $order = Order::where('designer_id',$v['id'])
  698. ->where('yy_date',$a)
  699. ->where('is_del',1)
  700. ->whereIn('status','1,2')
  701. ->count();
  702. if ($order){
  703. $array2['switch'] = 2;
  704. }else{
  705. $array2['switch'] = $da['switch'];
  706. }
  707. $array2['price'] = $da['price'];
  708. }else{
  709. $array2['switch'] = 2;
  710. $array2['price'] = 0;
  711. }
  712. $array2['date'] = $a;
  713. array_push($array,$array2);
  714. }
  715. $v['date_list'] = $array;
  716. }
  717. }else{
  718. $list = [];
  719. }
  720. return Common::return_success('成功',compact('count','list'));
  721. }
  722. /**
  723. * 首页设计师列表where条件
  724. */
  725. public static function designerByWhere($user_id,$design_classifi,$keywords,$city,$date,$price_section_start,$price_section_end){
  726. $query = self::where('status',1)
  727. ->when($design_classifi,function ($query) use ($design_classifi){
  728. $query->where('design_classifi',$design_classifi);
  729. })
  730. ->when($keywords,function ($query) use ($keywords){
  731. $query->whereLike('name|nickname|skills_label|design_classifi|good_type|good_style','%'.$keywords.'%');
  732. })
  733. ->when($city,function ($query) use ($city){
  734. //$query->where('city',$city);
  735. $query->whereRaw('city like "%'.$city.'%" or province like "%'.$city.'%"');
  736. })
  737. ->when($date,function ($query) use ($date){
  738. $ids1 = UserTime::where('time',$date)
  739. ->where('switch',1)
  740. ->column('user_id');
  741. $ids2 = Order::where('yy_date',$date)
  742. ->where('is_del',1)
  743. ->whereIn('status','1,2')
  744. ->column('designer_id');
  745. $ids = array_diff($ids1,$ids2); //对比两数组差异
  746. $query->whereIn('id',$ids);
  747. })
  748. ->when($price_section_start,function ($query) use ($price_section_start,$price_section_end){
  749. if ($price_section_start && $price_section_end){
  750. $query->where('price','>=',$price_section_start)->where('price','<=',$price_section_end);
  751. }
  752. })
  753. ->where('price','>',0)
  754. //->where('id','neq',$user_id)
  755. ->where('type',2);
  756. return $query;
  757. }
  758. /**
  759. * 获取设计师最近的价格显示
  760. */
  761. public static function RecentlyPrice(){
  762. self::where('status',1)->where('type',2)->chunk(50,function ($list){
  763. $time = time();
  764. //组合数据
  765. $date = [];
  766. for ($i=1; $i<=7; $i++){
  767. $date[$i] = date('Y-m-d' ,strtotime( $i .' days', $time));
  768. }
  769. foreach ($list as &$v){
  770. $price = UserTime::where('user_id',$v['id'])
  771. ->where('switch',1)
  772. ->order('time asc')
  773. ->whereBetween('time',[$date[1],$date[7]])
  774. ->limit(1)
  775. ->value('price');
  776. if (!$price){
  777. $price = 0;
  778. }
  779. self::where('id',$v['id'])->update(['price'=>$price]);
  780. }
  781. });
  782. }
  783. /**
  784. * 获取可使用优惠券列表
  785. */
  786. public static function getCouponList($user_id,$money){
  787. CouponUser::couponsTimeOut($user_id);
  788. $list = CouponUser::where('user_id',$user_id)
  789. ->where('use_min_price','<=',$money)
  790. ->where('end_time','>',time())
  791. ->where('status',0)
  792. ->select();
  793. if ($list){
  794. foreach ($list as &$v){
  795. $v['add_time'] = date('Y-m-d',$v['add_time']);
  796. $v['end_time'] = date('Y-m-d',$v['end_time']);
  797. }
  798. }
  799. return Common::return_success('成功',$list);
  800. }
  801. /**
  802. * 下单时间段列表
  803. */
  804. public static function periodTimeList(){
  805. $list = PeriodTime::where('is_del',1)->select();
  806. return Common::return_success('成功',$list);
  807. }
  808. /**
  809. * 下单
  810. */
  811. public static function PlaceOrder($user_id,$address_id,$designer_id,$yy_date,$project_name,$coupon_id,$pay_type,$period_id){
  812. // if ($pay_type=='weixin'){
  813. // return Common::return_error('暂时无法使用微信支付');
  814. // }
  815. $orde = Order::where('user_id',$user_id)->where('is_del',1)->where('overtime_pay_status',1)->find();
  816. if ($orde) return Common::return_error('有未支付的加班费订单,无法下单');
  817. $designer = self::where('id',$designer_id)
  818. ->where('type',2)
  819. ->where('status',1)
  820. ->find();
  821. if (!$designer) return Common::return_error('设计师不存在');
  822. $address = Address::where('id',$address_id)
  823. ->where('user_id',$user_id)
  824. ->where('is_del',0)
  825. ->find();
  826. if (!$address) return Common::return_error('地址不存在');
  827. $time = UserTime::where('user_id',$designer_id)
  828. ->where('time',$yy_date)
  829. //->where('switch',1)
  830. ->find();
  831. $order = Order::where('designer_id',$designer_id)
  832. ->where('is_del',1)
  833. ->whereIn('status','1,2')
  834. ->where('yy_date',$yy_date)
  835. ->find();
  836. $period = PeriodTime::where('id',$period_id)->find();
  837. if ($order) return Common::return_error('预约日期设计师已接单');
  838. if ($time && $time['switch']==2) return Common::return_error('预约日期设计师未开启接单');
  839. //价格
  840. $price = $designer['price'];
  841. $coupon_price = 0;
  842. $pay_price = $price;
  843. if ($coupon_id){
  844. $coupon = CouponUser::where('id',$coupon_id)
  845. ->where('user_id',$user_id)
  846. ->where('status',0)
  847. ->find();
  848. if (!$coupon) return Common::return_error('优惠券不存在');
  849. $coupon_price = $coupon['coupon_price'];
  850. $pay_price = bcsub($pay_price,$coupon_price,2);
  851. }else{
  852. $coupon_id = 0;
  853. }
  854. //订单号
  855. $order_no = Common::getNewOrderId($user_id);
  856. $data = [
  857. 'order_no'=>$order_no,
  858. 'user_id'=>$user_id,
  859. 'designer_id'=>$designer_id,
  860. 'address_id'=>$address_id,
  861. 'address_jd'=>$address['jd'],
  862. 'address_wd'=>$address['wd'],
  863. 'name'=>$address['name'],
  864. 'phone'=>$address['phone'],
  865. 'province'=>$address['province'],
  866. 'city'=>$address['city'],
  867. 'area'=>$address['area'],
  868. 'address'=>$address['address'],
  869. 'yy_date'=>$yy_date,
  870. 'servicing_time'=>$period['start'].'-'.$period['end'],
  871. 'project_name'=>$project_name,
  872. 'coupon_id'=>$coupon_id,
  873. 'pay_type'=>$pay_type,
  874. 'price'=>$price,
  875. 'coupon_price'=>$coupon_price,
  876. 'pay_price'=>$pay_price,
  877. ];
  878. Db::startTrans();
  879. try {
  880. $order = Order::create($data);
  881. $order_id = $order->id;
  882. Common::order_status($order_id,'订单生成');
  883. //优惠券确定
  884. if ($coupon_id){
  885. CouponUser::where('id',$coupon_id)->update(['status'=>1,'use_time'=>time()]);
  886. }
  887. //先模拟下单成功
  888. // $da['pay_time'] = time();
  889. // $da['status'] = 1;
  890. // Order::where('id',$order['id'])->update($da);
  891. // Db::commit();
  892. // return Common::return_success('成功');
  893. switch ($pay_type){
  894. case 'weixin':
  895. $wx = new WxPay();//实例化微信torganizationid支付控制器
  896. $body = '订单号' . $order_no;//支付说明
  897. $total_fee = $pay_price * 100;//支付金额(乘以100)
  898. $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_order';//回调地址
  899. $out_trade_no = $order_no;//订单号
  900. $config = $wx->retrunconfig();
  901. try{
  902. $app = Factory::payment($config);
  903. $result = $app->order->unify([
  904. 'body' => $body,
  905. 'out_trade_no' => $out_trade_no,
  906. 'total_fee' => $total_fee,
  907. 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
  908. 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
  909. ]);
  910. $jssdk = $app->jssdk;
  911. $order1 = $jssdk->appConfig($result['prepay_id']);
  912. Order::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
  913. Db::commit();
  914. $retrun_data['order_no'] = $order_no;
  915. $retrun_data['pay'] = $order1;
  916. return Common::return_success('成功',$retrun_data);
  917. }catch (Exception $e){
  918. Db::rollback();
  919. return Common::return_error($order['return_msg']);
  920. }
  921. break;
  922. case 'zfb':
  923. $zfb = new AliPay();//实例化支付宝支付控制器
  924. $body = '设计下单支付';//支付说明
  925. $out_trade_no = $order_no;//订单号
  926. $total_fee = $pay_price;//支付金额
  927. $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_order';//回调地址
  928. $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
  929. $retrun_data['order_no'] = $order_no;
  930. $retrun_data['pay'] = $order;
  931. Db::commit();
  932. return Common::return_success('成功',$retrun_data);
  933. break;
  934. }
  935. }catch (Exception $e) {
  936. Db::rollback();
  937. return Common::return_error('失败');
  938. }
  939. }
  940. /**
  941. * 用户端订单列表
  942. */
  943. public static function userOrderList($user_id,$status,$keywords,$Nowpage,$limits){
  944. $count = self::orderByWhere($status,$user_id,$keywords)->count();
  945. if ($count){
  946. $list = self::orderByWhere($status,$user_id,$keywords)
  947. ->page($Nowpage,$limits)
  948. ->order('id desc')
  949. ->select();
  950. }else{
  951. $list = [];
  952. }
  953. return Common::return_success('成功',compact('count','list'));
  954. }
  955. /**
  956. * 订单条件
  957. */
  958. public static function orderByWhere($status,$user_id,$keywords){
  959. $query = Order::where('user_id',$user_id)
  960. ->where('is_del',1)
  961. ->when($status,function ($query) use ($status){
  962. if ($status!='all'){
  963. $query->where('status',$status);
  964. }
  965. })
  966. ->when($keywords,function ($query) use ($keywords){
  967. $query->whereLike('project_name|order_no','%'.$keywords.'%');
  968. });
  969. if ($status==='0'){
  970. $query = $query->where('status',$status);
  971. }
  972. return $query;
  973. }
  974. /**
  975. * 订单支付
  976. */
  977. public static function payOrder($user_id,$order_no){
  978. $order = Order::where('order_no', $order_no)->where('user_id', $user_id)->find();
  979. if (!$order)
  980. return Common::return_error('订单不存在');
  981. $order = $order->toArray();
  982. if ($order['status'])
  983. return Common::return_error('订单已支付');
  984. $designer = self::where('id',$order['designer_id'])
  985. ->where('type',2)
  986. ->where('status',1)
  987. ->find();
  988. if (!$designer) return Common::return_error('设计师不存在');
  989. $time = UserTime::where('user_id',$order['designer_id'])
  990. ->where('time',$order['yy_date'])
  991. ->where('switch',1)
  992. ->find();
  993. $order2 = Order::where('designer_id',$order['designer_id'])
  994. ->where('is_del',1)
  995. ->whereIn('status','1,2')
  996. ->where('yy_date',$order['yy_date'])
  997. ->find();
  998. if (!$time || $order2) return Common::return_error('预约日期设计师未开启接单或已接单');
  999. if ($order['coupon_id']){
  1000. $coupon = CouponUser::where('id',$order['coupon_id'])
  1001. ->where('user_id',$user_id)
  1002. ->where('status',0)
  1003. ->find();
  1004. if (!$coupon) return Common::return_error('优惠券不存在或已使用');
  1005. }
  1006. $pay_type = $order['pay_type'];
  1007. $pay_price = $order['pay_price'];
  1008. Db::startTrans();
  1009. switch ($pay_type){
  1010. case 'weixin':
  1011. $wx = new WxPay();//实例化微信torganizationid支付控制器
  1012. $body = '订单号' . $order_no;//支付说明
  1013. $total_fee = $pay_price * 100;//支付金额(乘以100)
  1014. $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_order';//回调地址
  1015. $out_trade_no = $order_no;//订单号
  1016. $config = $wx->retrunconfig();
  1017. try{
  1018. $app = Factory::payment($config);
  1019. $result = $app->order->unify([
  1020. 'body' => $body,
  1021. 'out_trade_no' => $out_trade_no,
  1022. 'total_fee' => $total_fee,
  1023. 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
  1024. 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
  1025. ]);
  1026. $jssdk = $app->jssdk;
  1027. $order1 = $jssdk->appConfig($result['prepay_id']);
  1028. Order::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
  1029. Db::commit();
  1030. $retrun_data['order_no'] = $order_no;
  1031. $retrun_data['pay'] = $order1;
  1032. // Common::order_status($order['id'],'订单支付成功');
  1033. return Common::return_success('成功',$retrun_data);
  1034. }catch (Exception $e){
  1035. Db::rollback();
  1036. return Common::return_error($order['return_msg']);
  1037. }
  1038. break;
  1039. case 'zfb':
  1040. $zfb = new AliPay();//实例化支付宝支付控制器
  1041. $body = '设计下单支付';//支付说明
  1042. $out_trade_no = $order_no;//订单号
  1043. $total_fee = $pay_price;//支付金额
  1044. $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_order';//回调地址
  1045. $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
  1046. $retrun_data['order_no'] = $order_no;
  1047. $retrun_data['pay'] = $order;
  1048. Db::commit();
  1049. return Common::return_success('成功',$retrun_data);
  1050. break;
  1051. }
  1052. }
  1053. /**
  1054. * 订单支付加班费
  1055. */
  1056. public static function overtimePayOrder($user_id,$order_no,$pay_type){
  1057. // if ($pay_type=='weixin'){
  1058. // return Common::return_error('暂时无法使用微信支付');
  1059. // }
  1060. $order = Order::where('order_no', $order_no)->where('user_id', $user_id)->find();
  1061. if (!$order)
  1062. return Common::return_error('订单不存在');
  1063. $order = $order->toArray();
  1064. if (in_array($order['overtime_pay_status'],['0','2']))
  1065. return Common::return_error('没有加班费或加班费已支付');
  1066. $pay_price = $order['overtime_pay'];
  1067. Db::startTrans();
  1068. switch ($pay_type){
  1069. case 'weixin':
  1070. $wx = new WxPay();//实例化微信torganizationid支付控制器
  1071. $body = '订单号' . $order['overtime_pay_order_no'];//支付说明
  1072. $total_fee = $pay_price * 100;//支付金额(乘以100)
  1073. $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/overtime_pay_order';//回调地址
  1074. $out_trade_no = $order['overtime_pay_order_no'];//订单号
  1075. $config = $wx->retrunconfig();
  1076. try{
  1077. $app = Factory::payment($config);
  1078. $result = $app->order->unify([
  1079. 'body' => $body,
  1080. 'out_trade_no' => $out_trade_no,
  1081. 'total_fee' => $total_fee,
  1082. 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
  1083. 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
  1084. ]);
  1085. $jssdk = $app->jssdk;
  1086. $order1 = $jssdk->appConfig($result['prepay_id']);
  1087. Order::where('order_no',$order_no)->update(['overtime_pay_type'=>$pay_type,'overtime_wx_order'=>json_encode($order1,true)]);
  1088. Db::commit();
  1089. $retrun_data['order_no'] = $out_trade_no;
  1090. $retrun_data['pay'] = $order1;
  1091. return Common::return_success('成功',$retrun_data);
  1092. }catch (Exception $e){
  1093. Db::rollback();
  1094. return Common::return_error($order['return_msg']);
  1095. }
  1096. break;
  1097. case 'zfb':
  1098. $zfb = new AliPay();//实例化支付宝支付控制器
  1099. $body = '设计下单支付';//支付说明
  1100. $out_trade_no = $order['overtime_pay_order_no'];//订单号
  1101. $total_fee = $pay_price;//支付金额
  1102. $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/overtime_alipay_order';//回调地址
  1103. $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
  1104. $retrun_data['order_no'] = $out_trade_no;
  1105. $retrun_data['pay'] = $order;
  1106. Order::where('order_no',$order_no)->update(['overtime_pay_type'=>$pay_type]);
  1107. Db::commit();
  1108. return Common::return_success('成功',$retrun_data);
  1109. break;
  1110. }
  1111. }
  1112. /**
  1113. * 订单详情
  1114. */
  1115. public static function orderDetail($order_no){
  1116. $order = Order::where('order_no',$order_no)->find();
  1117. if (!$order)
  1118. return Common::return_error('订单不存在');
  1119. $designer =self::where('id',$order['designer_id'])->field('id,name,headimg,evaluation,works,design_classifi')->find();
  1120. if ($designer['works']){
  1121. $designer['works'] = explode(',',$designer['works']);
  1122. }else{
  1123. $designer['works'] = [];
  1124. }
  1125. $order['designer'] =$designer;
  1126. $order['pay_time'] = date('Y-m-d H:i:s',$order['pay_time']);
  1127. return Common::return_success('成功',$order);
  1128. }
  1129. /**
  1130. * 取消订单
  1131. */
  1132. public static function cancelOrder($user_id,$order_no){
  1133. $order = Order::where('order_no',$order_no)->where('user_id',$user_id)->find();
  1134. if (!$order)
  1135. return Common::return_error('订单不存在');
  1136. if ($order['status'])
  1137. return Common::return_error('订单无法取消');
  1138. Db::startTrans();
  1139. try {
  1140. $order->status = 5;
  1141. $order->remark = '用户取消订单';
  1142. $order->save();
  1143. if ($order->coupon_id){
  1144. CouponUser::where('id',$order->coupon_id)->update(['status'=>0]);
  1145. }
  1146. Db::commit();
  1147. Common::order_status($order->id,'订单取消成功');
  1148. return Common::return_success('取消成功');
  1149. }catch (Exception $e) {
  1150. Db::rollback();
  1151. return Common::return_error('取消失败');
  1152. }
  1153. }
  1154. /**
  1155. * 删除订单
  1156. */
  1157. public static function delOrder($user_id,$order_no){
  1158. $order = Order::where('order_no',$order_no)->where('user_id',$user_id)->find();
  1159. if (!$order)
  1160. return Common::return_error('订单不存在');
  1161. Db::startTrans();
  1162. try {
  1163. $order->is_del = 0;
  1164. $order->del_time = time();
  1165. $order->save();
  1166. Db::commit();
  1167. return Common::return_success('删除成功');
  1168. }catch (Exception $e) {
  1169. Db::rollback();
  1170. return Common::return_error('删除失败');
  1171. }
  1172. }
  1173. /**
  1174. * 订单评价
  1175. */
  1176. public static function evaluationOrder($user_id,$order_no,$evaluation,$evaluation_content){
  1177. $order = Order::where('order_no',$order_no)->where('user_id',$user_id)->find();
  1178. if (!$order)
  1179. return Common::return_error('订单不存在');
  1180. if ($order['status']!=3)
  1181. return Common::return_error('订单状态错误');
  1182. Db::startTrans();
  1183. try {
  1184. $order->status = 4;
  1185. $order->evaluation = $evaluation;
  1186. $order->evaluation_time = time();
  1187. $order->evaluation_content = $evaluation_content;
  1188. $order->save();
  1189. Db::commit();
  1190. $sum = Order::where('designer_id',$order['designer_id'])->where('status',4)->sum('evaluation');
  1191. $count = Order::where('designer_id',$order['designer_id'])->where('status',4)->count();
  1192. $eva = ceil($sum/$count);
  1193. User::where('id',$order['designer_id'])->update(['evaluation'=>$eva]);
  1194. Common::order_status($order->id,'订单评价成功');
  1195. return Common::return_success('评价成功');
  1196. }catch (Exception $e) {
  1197. Db::rollback();
  1198. return Common::return_error('评价失败');
  1199. }
  1200. }
  1201. /**
  1202. * 用户端我的评价
  1203. */
  1204. public static function userEvaluationList($user_id,$Nowpage,$limits){
  1205. $where = [
  1206. 'a.user_id'=>$user_id,
  1207. 'a.status'=>4,
  1208. 'a.is_del'=>1
  1209. ];
  1210. $count = Order::where($where)
  1211. ->alias('a')
  1212. ->join('q_user b','a.user_id=b.id')
  1213. ->join('q_user c','a.designer_id=c.id')
  1214. ->count();
  1215. if ($count){
  1216. $list = Order::where($where)
  1217. ->alias('a')
  1218. ->join('q_user b','a.user_id=b.id')
  1219. ->join('q_user c','a.designer_id=c.id')
  1220. ->page($Nowpage,$limits)
  1221. ->field('a.id,a.order_no,a.evaluation,a.evaluation_time,a.evaluation_content,b.name,b.nickname,b.headimg,c.name as designer_name')
  1222. ->order('a.id desc')
  1223. ->select();
  1224. foreach ($list as &$v){
  1225. $v['evaluation_time'] = date('Y-m-d',$v['evaluation_time']);
  1226. }
  1227. }else{
  1228. $list = [];
  1229. }
  1230. return Common::return_success('成功',compact('count','list'));
  1231. }
  1232. /**
  1233. * 设计师端我的评价
  1234. */
  1235. public static function designerEvaluationList($user_id,$Nowpage,$limits){
  1236. $where = [
  1237. 'a.designer_id'=>$user_id,
  1238. 'a.status'=>4,
  1239. 'a.is_del'=>1
  1240. ];
  1241. $count = Order::where($where)
  1242. ->alias('a')
  1243. ->join('q_user b','a.user_id=b.id')
  1244. ->count();
  1245. if ($count){
  1246. $list = Order::where($where)
  1247. ->alias('a')
  1248. ->join('q_user b','a.user_id=b.id')
  1249. ->page($Nowpage,$limits)
  1250. ->field('a.id,a.order_no,a.evaluation,a.evaluation_time,a.evaluation_content,b.name,b.nickname,b.headimg')
  1251. ->order('a.id desc')
  1252. ->select();
  1253. foreach ($list as &$v){
  1254. $v['evaluation_time'] = date('Y-m-d',$v['evaluation_time']);
  1255. }
  1256. }else{
  1257. $list = [];
  1258. }
  1259. return Common::return_success('成功',compact('count','list'));
  1260. }
  1261. /**
  1262. * 设计师端添加作品
  1263. */
  1264. public static function addWorks($user_id,$imgs){
  1265. $data = [
  1266. 'user_id'=>$user_id,
  1267. 'date'=>date('Y-m-d')
  1268. ];
  1269. foreach ($imgs as &$v){
  1270. $data['img'] = $v;
  1271. Works::create($data);
  1272. }
  1273. return Common::return_success('成功');
  1274. }
  1275. /**
  1276. * 设计师端作品管理
  1277. */
  1278. public static function workList($user_id){
  1279. $date = Works::where('user_id',$user_id)
  1280. ->where('is_del',1)
  1281. ->group('date')
  1282. ->order('id desc')
  1283. ->column('date');
  1284. if ($date){
  1285. $array = [];
  1286. foreach ($date as &$v){
  1287. $array2['date'] = $v;
  1288. $array2['imgs'] = Works::where('user_id',$user_id)
  1289. ->where('date',$v)
  1290. ->where('is_del',1)
  1291. ->field('id,img')
  1292. ->select();
  1293. array_push($array,$array2);
  1294. }
  1295. }else{
  1296. $array = [];
  1297. }
  1298. return Common::return_success('成功',$array);
  1299. }
  1300. /**
  1301. * 设计师端删除作品
  1302. */
  1303. public static function delWorks($user_id,$ids){
  1304. if (Works::whereIn('id',$ids)->where('user_id',$user_id)->update(['is_del'=>0])){
  1305. return Common::return_success('删除成功');
  1306. }else{
  1307. return Common::return_error('删除失败');
  1308. }
  1309. }
  1310. /**
  1311. * 设计师端首页
  1312. */
  1313. public static function designerIndex($user_id){
  1314. $list = Order::where('designer_id',$user_id)
  1315. ->where('is_del',1)
  1316. ->whereIn('status','1,2')
  1317. ->order('id desc')
  1318. ->limit(2)
  1319. ->select();
  1320. return Common::return_success('成功',$list);
  1321. }
  1322. /**
  1323. * 用户端订单列表
  1324. */
  1325. public static function designerOrderList($user_id,$status,$keywords,$Nowpage,$limits){
  1326. $count = self::designerOrderByWhere($status,$user_id,$keywords)->count();
  1327. if ($count){
  1328. $list = self::designerOrderByWhere($status,$user_id,$keywords)
  1329. ->page($Nowpage,$limits)
  1330. ->order('id desc')
  1331. ->select();
  1332. }else{
  1333. $list = [];
  1334. }
  1335. return Common::return_success('成功',compact('count','list'));
  1336. }
  1337. /**
  1338. * 订单条件
  1339. */
  1340. public static function designerOrderByWhere($status,$user_id,$keywords){
  1341. $query = Order::where('designer_id',$user_id)
  1342. ->where('is_del',1)
  1343. ->when($status,function ($query) use ($status){
  1344. if (in_array($status,['1','2'])){
  1345. $query->where('status',$status);
  1346. }elseif ($status==3){
  1347. $query->whereIn('status','3,4');
  1348. }
  1349. })
  1350. ->when($keywords,function ($query) use ($keywords){
  1351. $query->whereLike('project_name|order_no','%'.$keywords.'%');
  1352. });
  1353. if ($status===0){
  1354. $query = $query->where('status',$status);
  1355. }
  1356. return $query;
  1357. }
  1358. /**
  1359. * 设计师开始打卡
  1360. */
  1361. public static function clockInStart($user_id,$order_no,$start_address){
  1362. $order = Order::where('order_no',$order_no)->where('designer_id',$user_id)->find();
  1363. if (!$order)
  1364. return Common::return_error('订单不存在');
  1365. if ($order['status']!=1)
  1366. return Common::return_error('订单状态错误');
  1367. Db::startTrans();
  1368. try {
  1369. $order->status = 2;
  1370. $order->start_time = date('Y-m-d H:i:s');
  1371. $order->start_address = $start_address;
  1372. $order->save();
  1373. Db::commit();
  1374. Common::order_status($order->id,'设计师开始打卡成功');
  1375. return Common::return_success('打卡成功');
  1376. }catch (Exception $e) {
  1377. Db::rollback();
  1378. return Common::return_error('打卡失败');
  1379. }
  1380. }
  1381. /**
  1382. * 设计师结束打卡
  1383. */
  1384. public static function clockInEnd($user_id,$order_no,$end_address){
  1385. $order = Order::where('order_no',$order_no)->where('designer_id',$user_id)->find();
  1386. if (!$order)
  1387. return Common::return_error('订单不存在');
  1388. if ($order['status']!=2)
  1389. return Common::return_error('订单状态错误');
  1390. Db::startTrans();
  1391. try {
  1392. $order->status = 3;
  1393. $order->end_time = date('Y-m-d H:i:s');
  1394. $order->end_address = $end_address;
  1395. //判断是否产生加班费
  1396. $servicing = explode('-',$order['servicing_time']);
  1397. $end_time = strtotime($order['yy_date'].' '.$servicing[1]);
  1398. if (time()>$end_time){
  1399. $poor_minutes = floor((time()-$end_time)%86400/60);
  1400. //获取加班费每分钟多钱
  1401. $user_overtime_pay = self::where('id',$user_id)->value('overtime_pay');
  1402. if ($user_overtime_pay>0){
  1403. $price = $user_overtime_pay;
  1404. }else{
  1405. $price = $order['price'] * 0.1; //订单金额10%的加班费
  1406. }
  1407. $overtime_pay = sprintf("%.2f", ($price/60) * $poor_minutes); //四舍五入保留两位小数
  1408. $order->overtime_pay = $overtime_pay;
  1409. $order->overtime_pay_order_no = Common::getNewOrderId($order['designer_id']);
  1410. $order->overtime_pay_status = 1;
  1411. }
  1412. $designer = self::where('id',$order['designer_id'])->field('earnings_ratio,margin')->find();
  1413. //获取设计师收益金额
  1414. $designer_money = sprintf("%.2f",$order['pay_price'] * ($designer['earnings_ratio']/100));
  1415. $order->designer_money = $designer_money;
  1416. if ($designer['margin']<2000){
  1417. $designer_margin_money = 20;
  1418. $designer_real_money = $designer_money-20;
  1419. }else{
  1420. $designer_margin_money = 0;
  1421. $designer_real_money = $designer_money;
  1422. }
  1423. $order->designer_margin_money = $designer_margin_money;
  1424. $order->designer_real_money = $designer_real_money;
  1425. $order->designer_earnings_ratio = $designer['earnings_ratio'];
  1426. $order->save();
  1427. User::money($designer_real_money,$order['designer_id'],'订单收益',1,$order['id']);
  1428. if ($designer_margin_money>0){
  1429. User::margin($designer_margin_money,$order['designer_id'],'订单抵押金',1);
  1430. }
  1431. Common::order_status($order->id,'设计师结束打卡成功');
  1432. Db::commit();
  1433. return Common::return_success('打卡成功');
  1434. }catch (Exception $e) {
  1435. Db::rollback();
  1436. return Common::return_error('打卡失败');
  1437. }
  1438. }
  1439. /**
  1440. * 设计师结束工作上传作品
  1441. */
  1442. public static function orderUploading($user_id,$order_no,$works){
  1443. $order = Order::where('order_no',$order_no)->where('designer_id',$user_id)->find();
  1444. if (!$order)
  1445. return Common::return_error('订单不存在');
  1446. // if ($order['status']!=3)
  1447. // return Common::return_error('订单状态错误');
  1448. Db::startTrans();
  1449. try {
  1450. $order->works = implode(',',$works);
  1451. $order->save();
  1452. Db::commit();
  1453. Common::order_status($order->id,'设计师上传作品成功');
  1454. return Common::return_success('上传成功');
  1455. }catch (Exception $e) {
  1456. Db::rollback();
  1457. return Common::return_error('上传失败');
  1458. }
  1459. }
  1460. /**
  1461. * 优惠券列表
  1462. */
  1463. public static function couponList($user_id,$Nowpage,$limits){
  1464. CouponUser::couponsTimeOut($user_id);
  1465. $count = CouponUser::where('user_id',$user_id)
  1466. ->where('status',0)
  1467. ->count();
  1468. if ($count){
  1469. $list = CouponUser::where('user_id',$user_id)
  1470. ->where('status',0)
  1471. ->order('id desc')
  1472. ->page($Nowpage,$limits)
  1473. ->select();
  1474. foreach ($list as &$v){
  1475. $v['add_time'] = date('Y-m-d',$v['add_time']);
  1476. $v['end_time'] = date('Y-m-d',$v['end_time']);
  1477. }
  1478. }else{
  1479. $list = [];
  1480. }
  1481. return Common::return_success('成功',compact('count','list'));
  1482. }
  1483. /**
  1484. * 公告列表
  1485. */
  1486. public static function notice(){
  1487. $list = Notice::where('status',1)
  1488. ->where('is_del',1)
  1489. ->where('is_show',1)
  1490. ->order('id desc')
  1491. ->select();
  1492. return Common::return_success('成功',$list);
  1493. }
  1494. /**
  1495. * 根据手机号获取用户信息
  1496. */
  1497. public static function getByMobile($phone){
  1498. $userinfo = self::where('phone',$phone)->find();
  1499. return $userinfo;
  1500. }
  1501. /**
  1502. * 获取用户信息
  1503. */
  1504. public static function getUserInfo($id){
  1505. $info = self::where('id',$id)->field('password',true)->find();
  1506. if (!$info['skills_label']){
  1507. $info['skills_label'] = [];
  1508. }else{
  1509. $info['skills_label'] = explode(',', $info['skills_label']);
  1510. }
  1511. if (!$info['good_type']){
  1512. $info['good_type'] = [];
  1513. }else{
  1514. $info['good_type'] = explode(',', $info['good_type']);
  1515. }
  1516. if (!$info['good_style']){
  1517. $info['good_style'] = [];
  1518. }else{
  1519. $info['good_style'] = explode(',', $info['good_style']);
  1520. }
  1521. if (!$info['related_certificate']){
  1522. $info['related_certificate'] = [];
  1523. }else{
  1524. $info['related_certificate'] = explode(',', $info['related_certificate']);
  1525. }
  1526. if (!$info['works']){
  1527. $info['works'] = [];
  1528. }else{
  1529. $info['works'] = explode(',', $info['works']);
  1530. }
  1531. return $info;
  1532. }
  1533. /**
  1534. * 变更会员余额
  1535. * @param int $money 余额
  1536. * @param int $user_id 会员ID
  1537. * @param string $memo 备注
  1538. */
  1539. public static function money($money, $user_id, $memo, $pm = 0, $link_id = 0)
  1540. {
  1541. $user = self::get($user_id);
  1542. if ($user)
  1543. {
  1544. $before = $user->money;
  1545. if ($pm==1){
  1546. $after = $user->money + $money;
  1547. }else{
  1548. $after = $user->money - $money;
  1549. }
  1550. //更新会员信息
  1551. $user->save(['money' => $after]);
  1552. //写入日志
  1553. MoneyLog::create(['user_id' => $user_id,'pm' => $pm, 'change_money' => $money, 'before' => $before, 'after' => $after, 'title' => $memo,'link_id'=>$link_id]);
  1554. }
  1555. }
  1556. /**
  1557. * 变更会员余额
  1558. * @param int $money 余额
  1559. * @param int $user_id 会员ID
  1560. * @param string $memo 备注
  1561. */
  1562. public static function margin($money, $user_id, $memo, $pm = 0)
  1563. {
  1564. $user = self::get($user_id);
  1565. if ($user)
  1566. {
  1567. $before = $user->margin;
  1568. if ($pm==1){
  1569. $after = $user->margin + $money;
  1570. }else{
  1571. $after = $user->margin - $money;
  1572. }
  1573. //更新会员信息
  1574. $user->save(['margin' => $after]);
  1575. //写入日志
  1576. MarginLog::create(['user_id' => $user_id,'pm' => $pm, 'change_money' => $money, 'before' => $before, 'after' => $after, 'title' => $memo]);
  1577. }
  1578. }
  1579. /**
  1580. * 十分钟未支付,取消订单
  1581. */
  1582. public static function systemCancelOrder(){
  1583. Order::where('status',0)->chunk(20,function ($list){
  1584. foreach ($list as &$v) {
  1585. $seven = strtotime($v['create_at'])+(10*60);
  1586. if ($seven<time()){
  1587. Order::where('id',$v['id'])->update(
  1588. [
  1589. 'status'=>5,
  1590. 'cancel_reason'=>'订单超时自动取消'
  1591. ]
  1592. );
  1593. }
  1594. }
  1595. },'id','asc');
  1596. }
  1597. }