User.php 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785
  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. if (count($record)>0){
  579. $record = $record->toArray();
  580. $array = [];
  581. foreach ($record as &$v){
  582. $array2['withdraw_type'] = 'sy';
  583. $array2['paid'] = 1;
  584. $array2['why'] = '';
  585. $array2['create_at'] = $v['create_at'];
  586. $array2['price'] = '+'.$v['change_money'];
  587. if ($v['link_id']!=0){
  588. $project_name = Order::where('id',$v['link_id'])->value('project_name');
  589. }else{
  590. $project_name = '';
  591. }
  592. $array2['project_name'] = $project_name;
  593. array_push($array,$array2);
  594. }
  595. }else{
  596. $array = [];
  597. }
  598. $list = array_merge($withdraw,$array);
  599. $data['count'] = count($list);
  600. array_multisort(array_column($list,'create_at'),SORT_DESC,$list);
  601. $list = array_slice($list,($Nowpage-1)*$limits,$limits);
  602. $data['list'] = $list;
  603. return Common::return_success('成功',$data);
  604. }
  605. /**
  606. * 获取首页搜索日期列表
  607. */
  608. public static function searchDateList(){
  609. $time = time();
  610. //组合数据
  611. $date = [];
  612. for ($i=1; $i<=15; $i++){
  613. $date[$i-1]['date'] = date('Y-m-d' ,strtotime( $i .' days', $time));
  614. $date[$i-1]['time'] = date('m-d' ,strtotime( $i .' days', $time));
  615. }
  616. return Common::return_success('成功',$date);
  617. }
  618. /**
  619. * 首页设计师列表
  620. */
  621. public static function Designer($user_id,$Nowpage,$limits,$design_classifi,$keywords,$lat,$log,$city,$distance,$price,$evaluation,$date,$price_section_start,$price_section_end){
  622. // self::RecentlyPrice(); //更新价格
  623. $count = self::designerByWhere($user_id,$design_classifi,$keywords,$city,$date,$price_section_start,$price_section_end)->count();
  624. if ($count){
  625. $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'];
  626. if ($lat && $log){
  627. $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';
  628. }
  629. $list = self::designerByWhere($user_id,$design_classifi,$keywords,$city,$date,$price_section_start,$price_section_end)
  630. ->field($field)
  631. ->when($distance,function ($query) use ($distance,$lat,$log){
  632. if ($lat && $log){
  633. $query->order('distance '.$distance);
  634. }
  635. })
  636. ->when($price,function ($query) use ($price){
  637. $query->order('price '.$price);
  638. })
  639. ->when($evaluation,function ($query) use ($evaluation){
  640. $query->order('evaluation '.$evaluation);
  641. })
  642. ->page($Nowpage,$limits)
  643. ->select();
  644. $time = time();
  645. //组合数据
  646. $date = [];
  647. for ($i=1; $i<=15; $i++){
  648. $date[$i] = date('Y-m-d' ,strtotime( $i .' days', $time));
  649. }
  650. foreach ($list as &$v){
  651. if ($v['works']){
  652. $v['works'] = explode(',',$v['works']);
  653. }else{
  654. $v['works'] = [];
  655. }
  656. if ($v['skills_label']){
  657. $v['skills_label'] = explode(',',$v['skills_label']);
  658. }else{
  659. $v['skills_label'] = [];
  660. }
  661. if ($v['good_type']){
  662. $v['good_type'] = explode(',',$v['good_type']);
  663. }else{
  664. $v['good_type'] = [];
  665. }
  666. if ($v['good_style']){
  667. $v['good_style'] = explode(',',$v['good_style']);
  668. }else{
  669. $v['good_style'] = [];
  670. }
  671. $v['name'] = $v['nickname'];
  672. $datee = Works::where('user_id',$v['id'])
  673. ->where('is_del',1)
  674. ->group('date')
  675. ->order('id desc')
  676. ->column('date');
  677. if ($datee){
  678. $arr = [];
  679. foreach ($datee as &$a){
  680. $array22['date'] = $a;
  681. $array22['imgs'] = Works::where('user_id',$v['id'])
  682. ->where('date',$a)
  683. ->where('is_del',1)
  684. ->field('id,img')
  685. ->select();
  686. array_push($arr,$array22);
  687. }
  688. }else{
  689. $arr = [];
  690. }
  691. $v['works_list'] = $arr;
  692. $array = [];
  693. foreach ($date as &$a){
  694. $da = UserTime::where('user_id',$v['id'])->where('time',$a)->find();
  695. if ($da){
  696. $order = Order::where('designer_id',$v['id'])
  697. ->where('yy_date',$a)
  698. ->where('is_del',1)
  699. ->whereIn('status','1,2')
  700. ->count();
  701. if ($order){
  702. $array2['switch'] = 2;
  703. }else{
  704. $array2['switch'] = $da['switch'];
  705. }
  706. $array2['price'] = $da['price'];
  707. }else{
  708. $array2['switch'] = 2;
  709. $array2['price'] = 0;
  710. }
  711. $array2['date'] = $a;
  712. array_push($array,$array2);
  713. }
  714. $v['date_list'] = $array;
  715. }
  716. }else{
  717. $list = [];
  718. }
  719. return Common::return_success('成功',compact('count','list'));
  720. }
  721. /**
  722. * 首页设计师列表where条件
  723. */
  724. public static function designerByWhere($user_id,$design_classifi,$keywords,$city,$date,$price_section_start,$price_section_end){
  725. $query = self::where('status',1)
  726. ->when($design_classifi,function ($query) use ($design_classifi){
  727. $query->where('design_classifi',$design_classifi);
  728. })
  729. ->when($keywords,function ($query) use ($keywords){
  730. $query->whereLike('name|nickname|skills_label|design_classifi|good_type|good_style','%'.$keywords.'%');
  731. })
  732. ->when($city,function ($query) use ($city){
  733. //$query->where('city',$city);
  734. $query->whereRaw('city like "%'.$city.'%" or province like "%'.$city.'%"');
  735. })
  736. ->when($date,function ($query) use ($date){
  737. $ids1 = UserTime::where('time',$date)
  738. ->where('switch',1)
  739. ->column('user_id');
  740. $ids2 = Order::where('yy_date',$date)
  741. ->where('is_del',1)
  742. ->whereIn('status','1,2')
  743. ->column('designer_id');
  744. $ids = array_diff($ids1,$ids2); //对比两数组差异
  745. $query->whereIn('id',$ids);
  746. })
  747. ->when($price_section_start,function ($query) use ($price_section_start,$price_section_end){
  748. if ($price_section_start && $price_section_end){
  749. $query->where('price','>=',$price_section_start)->where('price','<=',$price_section_end);
  750. }
  751. })
  752. ->where('price','>',0)
  753. //->where('id','neq',$user_id)
  754. ->where('type',2);
  755. return $query;
  756. }
  757. /**
  758. * 获取设计师最近的价格显示
  759. */
  760. public static function RecentlyPrice(){
  761. self::where('status',1)->where('type',2)->chunk(50,function ($list){
  762. $time = time();
  763. //组合数据
  764. $date = [];
  765. for ($i=1; $i<=7; $i++){
  766. $date[$i] = date('Y-m-d' ,strtotime( $i .' days', $time));
  767. }
  768. foreach ($list as &$v){
  769. $price = UserTime::where('user_id',$v['id'])
  770. ->where('switch',1)
  771. ->order('time asc')
  772. ->whereBetween('time',[$date[1],$date[7]])
  773. ->limit(1)
  774. ->value('price');
  775. if (!$price){
  776. $price = 0;
  777. }
  778. self::where('id',$v['id'])->update(['price'=>$price]);
  779. }
  780. });
  781. }
  782. /**
  783. * 获取可使用优惠券列表
  784. */
  785. public static function getCouponList($user_id,$money){
  786. CouponUser::couponsTimeOut($user_id);
  787. $list = CouponUser::where('user_id',$user_id)
  788. ->where('use_min_price','<=',$money)
  789. ->where('end_time','>',time())
  790. ->where('status',0)
  791. ->select();
  792. if ($list){
  793. foreach ($list as &$v){
  794. $v['add_time'] = date('Y-m-d',$v['add_time']);
  795. $v['end_time'] = date('Y-m-d',$v['end_time']);
  796. }
  797. }
  798. return Common::return_success('成功',$list);
  799. }
  800. /**
  801. * 下单时间段列表
  802. */
  803. public static function periodTimeList(){
  804. $list = PeriodTime::where('is_del',1)->select();
  805. return Common::return_success('成功',$list);
  806. }
  807. /**
  808. * 下单
  809. */
  810. public static function PlaceOrder($user_id,$address_id,$designer_id,$yy_date,$project_name,$coupon_id,$pay_type,$period_id){
  811. // if ($pay_type=='weixin'){
  812. // return Common::return_error('暂时无法使用微信支付');
  813. // }
  814. $orde = Order::where('user_id',$user_id)->where('is_del',1)->where('overtime_pay_status',1)->find();
  815. if ($orde) return Common::return_error('有未支付的加班费订单,无法下单');
  816. $designer = self::where('id',$designer_id)
  817. ->where('type',2)
  818. ->where('status',1)
  819. ->find();
  820. if (!$designer) return Common::return_error('设计师不存在');
  821. $address = Address::where('id',$address_id)
  822. ->where('user_id',$user_id)
  823. ->where('is_del',0)
  824. ->find();
  825. if (!$address) return Common::return_error('地址不存在');
  826. $time = UserTime::where('user_id',$designer_id)
  827. ->where('time',$yy_date)
  828. //->where('switch',1)
  829. ->find();
  830. $order = Order::where('designer_id',$designer_id)
  831. ->where('is_del',1)
  832. ->whereIn('status','1,2')
  833. ->where('yy_date',$yy_date)
  834. ->find();
  835. $period = PeriodTime::where('id',$period_id)->find();
  836. if ($order) return Common::return_error('预约日期设计师已接单');
  837. if ($time && $time['switch']==2) return Common::return_error('预约日期设计师未开启接单');
  838. //价格
  839. $price = $designer['price'];
  840. $coupon_price = 0;
  841. $pay_price = $price;
  842. if ($coupon_id){
  843. $coupon = CouponUser::where('id',$coupon_id)
  844. ->where('user_id',$user_id)
  845. ->where('status',0)
  846. ->find();
  847. if (!$coupon) return Common::return_error('优惠券不存在');
  848. $coupon_price = $coupon['coupon_price'];
  849. $pay_price = bcsub($pay_price,$coupon_price,2);
  850. }else{
  851. $coupon_id = 0;
  852. }
  853. //订单号
  854. $order_no = Common::getNewOrderId($user_id);
  855. $data = [
  856. 'order_no'=>$order_no,
  857. 'user_id'=>$user_id,
  858. 'designer_id'=>$designer_id,
  859. 'address_id'=>$address_id,
  860. 'address_jd'=>$address['jd'],
  861. 'address_wd'=>$address['wd'],
  862. 'name'=>$address['name'],
  863. 'phone'=>$address['phone'],
  864. 'province'=>$address['province'],
  865. 'city'=>$address['city'],
  866. 'area'=>$address['area'],
  867. 'address'=>$address['address'],
  868. 'yy_date'=>$yy_date,
  869. 'servicing_time'=>$period['start'].'-'.$period['end'],
  870. 'project_name'=>$project_name,
  871. 'coupon_id'=>$coupon_id,
  872. 'pay_type'=>$pay_type,
  873. 'price'=>$price,
  874. 'coupon_price'=>$coupon_price,
  875. 'pay_price'=>$pay_price,
  876. ];
  877. Db::startTrans();
  878. try {
  879. $order = Order::create($data);
  880. $order_id = $order->id;
  881. Common::order_status($order_id,'订单生成');
  882. //优惠券确定
  883. if ($coupon_id){
  884. CouponUser::where('id',$coupon_id)->update(['status'=>1,'use_time'=>time()]);
  885. }
  886. //先模拟下单成功
  887. // $da['pay_time'] = time();
  888. // $da['status'] = 1;
  889. // Order::where('id',$order['id'])->update($da);
  890. // Db::commit();
  891. // return Common::return_success('成功');
  892. switch ($pay_type){
  893. case 'weixin':
  894. $wx = new WxPay();//实例化微信torganizationid支付控制器
  895. $body = '订单号' . $order_no;//支付说明
  896. $total_fee = $pay_price * 100;//支付金额(乘以100)
  897. $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_order';//回调地址
  898. $out_trade_no = $order_no;//订单号
  899. $config = $wx->retrunconfig();
  900. try{
  901. $app = Factory::payment($config);
  902. $result = $app->order->unify([
  903. 'body' => $body,
  904. 'out_trade_no' => $out_trade_no,
  905. 'total_fee' => $total_fee,
  906. 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
  907. 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
  908. ]);
  909. $jssdk = $app->jssdk;
  910. $order1 = $jssdk->appConfig($result['prepay_id']);
  911. Order::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
  912. Db::commit();
  913. $retrun_data['order_no'] = $order_no;
  914. $retrun_data['pay'] = $order1;
  915. return Common::return_success('成功',$retrun_data);
  916. }catch (Exception $e){
  917. Db::rollback();
  918. return Common::return_error($order['return_msg']);
  919. }
  920. break;
  921. case 'zfb':
  922. $zfb = new AliPay();//实例化支付宝支付控制器
  923. $body = '设计下单支付';//支付说明
  924. $out_trade_no = $order_no;//订单号
  925. $total_fee = $pay_price;//支付金额
  926. $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_order';//回调地址
  927. $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
  928. $retrun_data['order_no'] = $order_no;
  929. $retrun_data['pay'] = $order;
  930. Db::commit();
  931. return Common::return_success('成功',$retrun_data);
  932. break;
  933. }
  934. }catch (Exception $e) {
  935. Db::rollback();
  936. return Common::return_error('失败');
  937. }
  938. }
  939. /**
  940. * 用户端订单列表
  941. */
  942. public static function userOrderList($user_id,$status,$keywords,$Nowpage,$limits){
  943. $count = self::orderByWhere($status,$user_id,$keywords)->count();
  944. if ($count){
  945. $list = self::orderByWhere($status,$user_id,$keywords)
  946. ->page($Nowpage,$limits)
  947. ->order('id desc')
  948. ->select();
  949. }else{
  950. $list = [];
  951. }
  952. return Common::return_success('成功',compact('count','list'));
  953. }
  954. /**
  955. * 订单条件
  956. */
  957. public static function orderByWhere($status,$user_id,$keywords){
  958. $query = Order::where('user_id',$user_id)
  959. ->where('is_del',1)
  960. ->when($status,function ($query) use ($status){
  961. if ($status!='all'){
  962. $query->where('status',$status);
  963. }
  964. })
  965. ->when($keywords,function ($query) use ($keywords){
  966. $query->whereLike('project_name|order_no','%'.$keywords.'%');
  967. });
  968. if ($status==='0'){
  969. $query = $query->where('status',$status);
  970. }
  971. return $query;
  972. }
  973. /**
  974. * 订单支付
  975. */
  976. public static function payOrder($user_id,$order_no){
  977. $order = Order::where('order_no', $order_no)->where('user_id', $user_id)->find();
  978. if (!$order)
  979. return Common::return_error('订单不存在');
  980. $order = $order->toArray();
  981. if ($order['status'])
  982. return Common::return_error('订单已支付');
  983. $designer = self::where('id',$order['designer_id'])
  984. ->where('type',2)
  985. ->where('status',1)
  986. ->find();
  987. if (!$designer) return Common::return_error('设计师不存在');
  988. $time = UserTime::where('user_id',$order['designer_id'])
  989. ->where('time',$order['yy_date'])
  990. ->where('switch',1)
  991. ->find();
  992. $order2 = Order::where('designer_id',$order['designer_id'])
  993. ->where('is_del',1)
  994. ->whereIn('status','1,2')
  995. ->where('yy_date',$order['yy_date'])
  996. ->find();
  997. if (!$time || $order2) return Common::return_error('预约日期设计师未开启接单或已接单');
  998. if ($order['coupon_id']){
  999. $coupon = CouponUser::where('id',$order['coupon_id'])
  1000. ->where('user_id',$user_id)
  1001. ->where('status',0)
  1002. ->find();
  1003. if (!$coupon) return Common::return_error('优惠券不存在或已使用');
  1004. }
  1005. $pay_type = $order['pay_type'];
  1006. $pay_price = $order['pay_price'];
  1007. Db::startTrans();
  1008. switch ($pay_type){
  1009. case 'weixin':
  1010. $wx = new WxPay();//实例化微信torganizationid支付控制器
  1011. $body = '订单号' . $order_no;//支付说明
  1012. $total_fee = $pay_price * 100;//支付金额(乘以100)
  1013. $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_order';//回调地址
  1014. $out_trade_no = $order_no;//订单号
  1015. $config = $wx->retrunconfig();
  1016. try{
  1017. $app = Factory::payment($config);
  1018. $result = $app->order->unify([
  1019. 'body' => $body,
  1020. 'out_trade_no' => $out_trade_no,
  1021. 'total_fee' => $total_fee,
  1022. 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
  1023. 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
  1024. ]);
  1025. $jssdk = $app->jssdk;
  1026. $order1 = $jssdk->appConfig($result['prepay_id']);
  1027. Order::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
  1028. Db::commit();
  1029. $retrun_data['order_no'] = $order_no;
  1030. $retrun_data['pay'] = $order1;
  1031. // Common::order_status($order['id'],'订单支付成功');
  1032. return Common::return_success('成功',$retrun_data);
  1033. }catch (Exception $e){
  1034. Db::rollback();
  1035. return Common::return_error($order['return_msg']);
  1036. }
  1037. break;
  1038. case 'zfb':
  1039. $zfb = new AliPay();//实例化支付宝支付控制器
  1040. $body = '设计下单支付';//支付说明
  1041. $out_trade_no = $order_no;//订单号
  1042. $total_fee = $pay_price;//支付金额
  1043. $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_order';//回调地址
  1044. $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
  1045. $retrun_data['order_no'] = $order_no;
  1046. $retrun_data['pay'] = $order;
  1047. Db::commit();
  1048. return Common::return_success('成功',$retrun_data);
  1049. break;
  1050. }
  1051. }
  1052. /**
  1053. * 订单支付加班费
  1054. */
  1055. public static function overtimePayOrder($user_id,$order_no,$pay_type){
  1056. if ($pay_type=='weixin'){
  1057. return Common::return_error('暂时无法使用微信支付');
  1058. }
  1059. $order = Order::where('order_no', $order_no)->where('user_id', $user_id)->find();
  1060. if (!$order)
  1061. return Common::return_error('订单不存在');
  1062. $order = $order->toArray();
  1063. if (in_array($order['overtime_pay_status'],['0','2']))
  1064. return Common::return_error('没有加班费或加班费已支付');
  1065. $pay_price = $order['overtime_pay'];
  1066. Db::startTrans();
  1067. switch ($pay_type){
  1068. case 'weixin':
  1069. $wx = new WxPay();//实例化微信torganizationid支付控制器
  1070. $body = '订单号' . $order['overtime_pay_order_no'];//支付说明
  1071. $total_fee = $pay_price * 100;//支付金额(乘以100)
  1072. $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/overtime_pay_order';//回调地址
  1073. $out_trade_no = $order['overtime_pay_order_no'];//订单号
  1074. $config = $wx->retrunconfig();
  1075. try{
  1076. $app = Factory::payment($config);
  1077. $result = $app->order->unify([
  1078. 'body' => $body,
  1079. 'out_trade_no' => $out_trade_no,
  1080. 'total_fee' => $total_fee,
  1081. 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
  1082. 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
  1083. ]);
  1084. $jssdk = $app->jssdk;
  1085. $order1 = $jssdk->appConfig($result['prepay_id']);
  1086. Order::where('order_no',$order_no)->update(['overtime_pay_type'=>$pay_type,'overtime_wx_order'=>json_encode($order1,true)]);
  1087. Db::commit();
  1088. $retrun_data['order_no'] = $out_trade_no;
  1089. $retrun_data['pay'] = $order1;
  1090. return Common::return_success('成功',$retrun_data);
  1091. }catch (Exception $e){
  1092. Db::rollback();
  1093. return Common::return_error($order['return_msg']);
  1094. }
  1095. break;
  1096. case 'zfb':
  1097. $zfb = new AliPay();//实例化支付宝支付控制器
  1098. $body = '设计下单支付';//支付说明
  1099. $out_trade_no = $order['overtime_pay_order_no'];//订单号
  1100. $total_fee = $pay_price;//支付金额
  1101. $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/overtime_alipay_order';//回调地址
  1102. $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
  1103. $retrun_data['order_no'] = $out_trade_no;
  1104. $retrun_data['pay'] = $order;
  1105. Order::where('order_no',$order_no)->update(['overtime_pay_type'=>$pay_type]);
  1106. Db::commit();
  1107. return Common::return_success('成功',$retrun_data);
  1108. break;
  1109. }
  1110. }
  1111. /**
  1112. * 订单详情
  1113. */
  1114. public static function orderDetail($order_no){
  1115. $order = Order::where('order_no',$order_no)->find();
  1116. if (!$order)
  1117. return Common::return_error('订单不存在');
  1118. $designer =self::where('id',$order['designer_id'])->field('id,name,headimg,evaluation,works,design_classifi')->find();
  1119. if ($designer['works']){
  1120. $designer['works'] = explode(',',$designer['works']);
  1121. }else{
  1122. $designer['works'] = [];
  1123. }
  1124. $order['designer'] =$designer;
  1125. $order['pay_time'] = date('Y-m-d H:i:s',$order['pay_time']);
  1126. return Common::return_success('成功',$order);
  1127. }
  1128. /**
  1129. * 取消订单
  1130. */
  1131. public static function cancelOrder($user_id,$order_no){
  1132. $order = Order::where('order_no',$order_no)->where('user_id',$user_id)->find();
  1133. if (!$order)
  1134. return Common::return_error('订单不存在');
  1135. if ($order['status'])
  1136. return Common::return_error('订单无法取消');
  1137. Db::startTrans();
  1138. try {
  1139. $order->status = 5;
  1140. $order->remark = '用户取消订单';
  1141. $order->save();
  1142. if ($order->coupon_id){
  1143. CouponUser::where('id',$order->coupon_id)->update(['status'=>0]);
  1144. }
  1145. Db::commit();
  1146. Common::order_status($order->id,'订单取消成功');
  1147. return Common::return_success('取消成功');
  1148. }catch (Exception $e) {
  1149. Db::rollback();
  1150. return Common::return_error('取消失败');
  1151. }
  1152. }
  1153. /**
  1154. * 删除订单
  1155. */
  1156. public static function delOrder($user_id,$order_no){
  1157. $order = Order::where('order_no',$order_no)->where('user_id',$user_id)->find();
  1158. if (!$order)
  1159. return Common::return_error('订单不存在');
  1160. Db::startTrans();
  1161. try {
  1162. $order->is_del = 0;
  1163. $order->del_time = time();
  1164. $order->save();
  1165. Db::commit();
  1166. return Common::return_success('删除成功');
  1167. }catch (Exception $e) {
  1168. Db::rollback();
  1169. return Common::return_error('删除失败');
  1170. }
  1171. }
  1172. /**
  1173. * 订单评价
  1174. */
  1175. public static function evaluationOrder($user_id,$order_no,$evaluation,$evaluation_content){
  1176. $order = Order::where('order_no',$order_no)->where('user_id',$user_id)->find();
  1177. if (!$order)
  1178. return Common::return_error('订单不存在');
  1179. if ($order['status']!=3)
  1180. return Common::return_error('订单状态错误');
  1181. Db::startTrans();
  1182. try {
  1183. $order->status = 4;
  1184. $order->evaluation = $evaluation;
  1185. $order->evaluation_time = time();
  1186. $order->evaluation_content = $evaluation_content;
  1187. $order->save();
  1188. Db::commit();
  1189. $sum = Order::where('designer_id',$order['designer_id'])->where('status',4)->sum('evaluation');
  1190. $count = Order::where('designer_id',$order['designer_id'])->where('status',4)->count();
  1191. $eva = ceil($sum/$count);
  1192. User::where('id',$order['designer_id'])->update(['evaluation'=>$eva]);
  1193. Common::order_status($order->id,'订单评价成功');
  1194. return Common::return_success('评价成功');
  1195. }catch (Exception $e) {
  1196. Db::rollback();
  1197. return Common::return_error('评价失败');
  1198. }
  1199. }
  1200. /**
  1201. * 用户端我的评价
  1202. */
  1203. public static function userEvaluationList($user_id,$Nowpage,$limits){
  1204. $where = [
  1205. 'a.user_id'=>$user_id,
  1206. 'a.status'=>4,
  1207. 'a.is_del'=>1
  1208. ];
  1209. $count = Order::where($where)
  1210. ->alias('a')
  1211. ->join('q_user b','a.user_id=b.id')
  1212. ->join('q_user c','a.designer_id=c.id')
  1213. ->count();
  1214. if ($count){
  1215. $list = Order::where($where)
  1216. ->alias('a')
  1217. ->join('q_user b','a.user_id=b.id')
  1218. ->join('q_user c','a.designer_id=c.id')
  1219. ->page($Nowpage,$limits)
  1220. ->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')
  1221. ->order('a.id desc')
  1222. ->select();
  1223. foreach ($list as &$v){
  1224. $v['evaluation_time'] = date('Y-m-d',$v['evaluation_time']);
  1225. }
  1226. }else{
  1227. $list = [];
  1228. }
  1229. return Common::return_success('成功',compact('count','list'));
  1230. }
  1231. /**
  1232. * 设计师端我的评价
  1233. */
  1234. public static function designerEvaluationList($user_id,$Nowpage,$limits){
  1235. $where = [
  1236. 'a.designer_id'=>$user_id,
  1237. 'a.status'=>4,
  1238. 'a.is_del'=>1
  1239. ];
  1240. $count = Order::where($where)
  1241. ->alias('a')
  1242. ->join('q_user b','a.user_id=b.id')
  1243. ->count();
  1244. if ($count){
  1245. $list = Order::where($where)
  1246. ->alias('a')
  1247. ->join('q_user b','a.user_id=b.id')
  1248. ->page($Nowpage,$limits)
  1249. ->field('a.id,a.order_no,a.evaluation,a.evaluation_time,a.evaluation_content,b.name,b.nickname,b.headimg')
  1250. ->order('a.id desc')
  1251. ->select();
  1252. foreach ($list as &$v){
  1253. $v['evaluation_time'] = date('Y-m-d',$v['evaluation_time']);
  1254. }
  1255. }else{
  1256. $list = [];
  1257. }
  1258. return Common::return_success('成功',compact('count','list'));
  1259. }
  1260. /**
  1261. * 设计师端添加作品
  1262. */
  1263. public static function addWorks($user_id,$imgs){
  1264. $data = [
  1265. 'user_id'=>$user_id,
  1266. 'date'=>date('Y-m-d')
  1267. ];
  1268. foreach ($imgs as &$v){
  1269. $data['img'] = $v;
  1270. Works::create($data);
  1271. }
  1272. return Common::return_success('成功');
  1273. }
  1274. /**
  1275. * 设计师端作品管理
  1276. */
  1277. public static function workList($user_id){
  1278. $date = Works::where('user_id',$user_id)
  1279. ->where('is_del',1)
  1280. ->group('date')
  1281. ->order('id desc')
  1282. ->column('date');
  1283. if ($date){
  1284. $array = [];
  1285. foreach ($date as &$v){
  1286. $array2['date'] = $v;
  1287. $array2['imgs'] = Works::where('user_id',$user_id)
  1288. ->where('date',$v)
  1289. ->where('is_del',1)
  1290. ->field('id,img')
  1291. ->select();
  1292. array_push($array,$array2);
  1293. }
  1294. }else{
  1295. $array = [];
  1296. }
  1297. return Common::return_success('成功',$array);
  1298. }
  1299. /**
  1300. * 设计师端删除作品
  1301. */
  1302. public static function delWorks($user_id,$ids){
  1303. if (Works::whereIn('id',$ids)->where('user_id',$user_id)->update(['is_del'=>0])){
  1304. return Common::return_success('删除成功');
  1305. }else{
  1306. return Common::return_error('删除失败');
  1307. }
  1308. }
  1309. /**
  1310. * 设计师端首页
  1311. */
  1312. public static function designerIndex($user_id){
  1313. $list = Order::where('designer_id',$user_id)
  1314. ->where('is_del',1)
  1315. ->whereIn('status','1,2')
  1316. ->order('id desc')
  1317. ->limit(2)
  1318. ->select();
  1319. return Common::return_success('成功',$list);
  1320. }
  1321. /**
  1322. * 用户端订单列表
  1323. */
  1324. public static function designerOrderList($user_id,$status,$keywords,$Nowpage,$limits){
  1325. $count = self::designerOrderByWhere($status,$user_id,$keywords)->count();
  1326. if ($count){
  1327. $list = self::designerOrderByWhere($status,$user_id,$keywords)
  1328. ->page($Nowpage,$limits)
  1329. ->order('id desc')
  1330. ->select();
  1331. }else{
  1332. $list = [];
  1333. }
  1334. return Common::return_success('成功',compact('count','list'));
  1335. }
  1336. /**
  1337. * 订单条件
  1338. */
  1339. public static function designerOrderByWhere($status,$user_id,$keywords){
  1340. $query = Order::where('designer_id',$user_id)
  1341. ->where('is_del',1)
  1342. ->when($status,function ($query) use ($status){
  1343. if (in_array($status,['1','2'])){
  1344. $query->where('status',$status);
  1345. }elseif ($status==3){
  1346. $query->whereIn('status','3,4');
  1347. }
  1348. })
  1349. ->when($keywords,function ($query) use ($keywords){
  1350. $query->whereLike('project_name|order_no','%'.$keywords.'%');
  1351. });
  1352. if ($status===0){
  1353. $query = $query->where('status',$status);
  1354. }
  1355. return $query;
  1356. }
  1357. /**
  1358. * 设计师开始打卡
  1359. */
  1360. public static function clockInStart($user_id,$order_no,$start_address){
  1361. $order = Order::where('order_no',$order_no)->where('designer_id',$user_id)->find();
  1362. if (!$order)
  1363. return Common::return_error('订单不存在');
  1364. if ($order['status']!=1)
  1365. return Common::return_error('订单状态错误');
  1366. Db::startTrans();
  1367. try {
  1368. $order->status = 2;
  1369. $order->start_time = date('Y-m-d H:i:s');
  1370. $order->start_address = $start_address;
  1371. $order->save();
  1372. Db::commit();
  1373. Common::order_status($order->id,'设计师开始打卡成功');
  1374. return Common::return_success('打卡成功');
  1375. }catch (Exception $e) {
  1376. Db::rollback();
  1377. return Common::return_error('打卡失败');
  1378. }
  1379. }
  1380. /**
  1381. * 设计师结束打卡
  1382. */
  1383. public static function clockInEnd($user_id,$order_no,$end_address){
  1384. $order = Order::where('order_no',$order_no)->where('designer_id',$user_id)->find();
  1385. if (!$order)
  1386. return Common::return_error('订单不存在');
  1387. if ($order['status']!=2)
  1388. return Common::return_error('订单状态错误');
  1389. Db::startTrans();
  1390. try {
  1391. $order->status = 3;
  1392. $order->end_time = date('Y-m-d H:i:s');
  1393. $order->end_address = $end_address;
  1394. //判断是否产生加班费
  1395. $servicing = explode('-',$order['servicing_time']);
  1396. $end_time = strtotime($order['yy_date'].' '.$servicing[1]);
  1397. if (time()>$end_time){
  1398. $poor_minutes = floor((time()-$end_time)%86400/60);
  1399. //获取加班费每分钟多钱
  1400. $user_overtime_pay = self::where('id',$user_id)->value('overtime_pay');
  1401. if ($user_overtime_pay>0){
  1402. $price = $user_overtime_pay;
  1403. }else{
  1404. $price = $order['price'] * 0.1; //订单金额10%的加班费
  1405. }
  1406. $overtime_pay = sprintf("%.2f", ($price/60) * $poor_minutes); //四舍五入保留两位小数
  1407. $order->overtime_pay = $overtime_pay;
  1408. $order->overtime_pay_order_no = Common::getNewOrderId($order['designer_id']);
  1409. $order->overtime_pay_status = 1;
  1410. }
  1411. $designer = self::where('id',$order['designer_id'])->field('earnings_ratio,margin')->find();
  1412. //获取设计师收益金额
  1413. $designer_money = sprintf("%.2f",$order['pay_price'] * ($designer['earnings_ratio']/100));
  1414. $order->designer_money = $designer_money;
  1415. if ($designer['margin']<2000){
  1416. $designer_margin_money = 20;
  1417. $designer_real_money = $designer_money-20;
  1418. }else{
  1419. $designer_margin_money = 0;
  1420. $designer_real_money = $designer_money;
  1421. }
  1422. $order->designer_margin_money = $designer_margin_money;
  1423. $order->designer_real_money = $designer_real_money;
  1424. $order->designer_earnings_ratio = $designer['earnings_ratio'];
  1425. $order->save();
  1426. User::money($designer_real_money,$order['designer_id'],'订单收益',1,$order['id']);
  1427. if ($designer_margin_money>0){
  1428. User::margin($designer_margin_money,$order['designer_id'],'订单抵押金',1);
  1429. }
  1430. Common::order_status($order->id,'设计师结束打卡成功');
  1431. Db::commit();
  1432. return Common::return_success('打卡成功');
  1433. }catch (Exception $e) {
  1434. Db::rollback();
  1435. return Common::return_error('打卡失败');
  1436. }
  1437. }
  1438. /**
  1439. * 设计师结束工作上传作品
  1440. */
  1441. public static function orderUploading($user_id,$order_no,$works){
  1442. $order = Order::where('order_no',$order_no)->where('designer_id',$user_id)->find();
  1443. if (!$order)
  1444. return Common::return_error('订单不存在');
  1445. // if ($order['status']!=3)
  1446. // return Common::return_error('订单状态错误');
  1447. Db::startTrans();
  1448. try {
  1449. $order->works = implode(',',$works);
  1450. $order->save();
  1451. Db::commit();
  1452. Common::order_status($order->id,'设计师上传作品成功');
  1453. return Common::return_success('上传成功');
  1454. }catch (Exception $e) {
  1455. Db::rollback();
  1456. return Common::return_error('上传失败');
  1457. }
  1458. }
  1459. /**
  1460. * 优惠券列表
  1461. */
  1462. public static function couponList($user_id,$Nowpage,$limits){
  1463. CouponUser::couponsTimeOut($user_id);
  1464. $count = CouponUser::where('user_id',$user_id)
  1465. ->where('status',0)
  1466. ->count();
  1467. if ($count){
  1468. $list = CouponUser::where('user_id',$user_id)
  1469. ->where('status',0)
  1470. ->order('id desc')
  1471. ->page($Nowpage,$limits)
  1472. ->select();
  1473. foreach ($list as &$v){
  1474. $v['add_time'] = date('Y-m-d',$v['add_time']);
  1475. $v['end_time'] = date('Y-m-d',$v['end_time']);
  1476. }
  1477. }else{
  1478. $list = [];
  1479. }
  1480. return Common::return_success('成功',compact('count','list'));
  1481. }
  1482. /**
  1483. * 公告列表
  1484. */
  1485. public static function notice(){
  1486. $list = Notice::where('status',1)
  1487. ->where('is_del',1)
  1488. ->where('is_show',1)
  1489. ->order('id desc')
  1490. ->select();
  1491. return Common::return_success('成功',$list);
  1492. }
  1493. /**
  1494. * 根据手机号获取用户信息
  1495. */
  1496. public static function getByMobile($phone){
  1497. $userinfo = self::where('phone',$phone)->find();
  1498. return $userinfo;
  1499. }
  1500. /**
  1501. * 获取用户信息
  1502. */
  1503. public static function getUserInfo($id){
  1504. $info = self::where('id',$id)->field('password',true)->find();
  1505. if (!$info['skills_label']){
  1506. $info['skills_label'] = [];
  1507. }else{
  1508. $info['skills_label'] = explode(',', $info['skills_label']);
  1509. }
  1510. if (!$info['good_type']){
  1511. $info['good_type'] = [];
  1512. }else{
  1513. $info['good_type'] = explode(',', $info['good_type']);
  1514. }
  1515. if (!$info['good_style']){
  1516. $info['good_style'] = [];
  1517. }else{
  1518. $info['good_style'] = explode(',', $info['good_style']);
  1519. }
  1520. if (!$info['related_certificate']){
  1521. $info['related_certificate'] = [];
  1522. }else{
  1523. $info['related_certificate'] = explode(',', $info['related_certificate']);
  1524. }
  1525. if (!$info['works']){
  1526. $info['works'] = [];
  1527. }else{
  1528. $info['works'] = explode(',', $info['works']);
  1529. }
  1530. return $info;
  1531. }
  1532. /**
  1533. * 变更会员余额
  1534. * @param int $money 余额
  1535. * @param int $user_id 会员ID
  1536. * @param string $memo 备注
  1537. */
  1538. public static function money($money, $user_id, $memo, $pm = 0, $link_id = 0)
  1539. {
  1540. $user = self::get($user_id);
  1541. if ($user)
  1542. {
  1543. $before = $user->money;
  1544. if ($pm==1){
  1545. $after = $user->money + $money;
  1546. }else{
  1547. $after = $user->money - $money;
  1548. }
  1549. //更新会员信息
  1550. $user->save(['money' => $after]);
  1551. //写入日志
  1552. MoneyLog::create(['user_id' => $user_id,'pm' => $pm, 'change_money' => $money, 'before' => $before, 'after' => $after, 'title' => $memo,'link_id'=>$link_id]);
  1553. }
  1554. }
  1555. /**
  1556. * 变更会员余额
  1557. * @param int $money 余额
  1558. * @param int $user_id 会员ID
  1559. * @param string $memo 备注
  1560. */
  1561. public static function margin($money, $user_id, $memo, $pm = 0)
  1562. {
  1563. $user = self::get($user_id);
  1564. if ($user)
  1565. {
  1566. $before = $user->margin;
  1567. if ($pm==1){
  1568. $after = $user->margin + $money;
  1569. }else{
  1570. $after = $user->margin - $money;
  1571. }
  1572. //更新会员信息
  1573. $user->save(['margin' => $after]);
  1574. //写入日志
  1575. MarginLog::create(['user_id' => $user_id,'pm' => $pm, 'change_money' => $money, 'before' => $before, 'after' => $after, 'title' => $memo]);
  1576. }
  1577. }
  1578. /**
  1579. * 十分钟未支付,取消订单
  1580. */
  1581. public static function systemCancelOrder(){
  1582. Order::where('status',0)->chunk(20,function ($list){
  1583. foreach ($list as &$v) {
  1584. $seven = strtotime($v['create_at'])+(10*60);
  1585. if ($seven<time()){
  1586. Order::where('id',$v['id'])->update(
  1587. [
  1588. 'status'=>5,
  1589. 'cancel_reason'=>'订单超时自动取消'
  1590. ]
  1591. );
  1592. }
  1593. }
  1594. },'id','asc');
  1595. }
  1596. }