Mobile.php 50 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\Admin;
  4. use app\admin\model\AdminLog;
  5. use app\admin\model\MobileExportLog;
  6. use app\common\controller\Backend;
  7. use app\common\library\MobileConstant;
  8. use app\common\model\MobileInfo;
  9. use app\common\model\MobileSub;
  10. use app\common\service\MobileImport;
  11. use app\service\EsMobileService;
  12. use PhpOffice\PhpSpreadsheet\IOFactory;
  13. use PhpOffice\PhpSpreadsheet\Spreadsheet;
  14. use PhpOffice\PhpSpreadsheet\Style\Alignment;
  15. use PhpOffice\PhpSpreadsheet\Style\Border;
  16. use PhpOffice\PhpSpreadsheet\Style\Fill;
  17. use think\Db;
  18. use think\db\Query;
  19. use think\Loader;
  20. use app\admin\model\Mobile as MO;
  21. /**
  22. *
  23. *
  24. * @icon fa fa-mobile
  25. */
  26. class Mobile extends Backend
  27. {
  28. protected $noNeedRight=['mobile_rules','status','constant','exclude_nums'];
  29. /**
  30. * Mobile模型对象
  31. * @var MO
  32. */
  33. protected $model = null;
  34. protected $relationSearch=true;
  35. protected $proxy = 0;
  36. public function _initialize()
  37. {
  38. //ini_set('memory_limit',-1);
  39. parent::_initialize();
  40. $this->model = new MO;
  41. $this->assign('status',\app\common\model\Mobile::$status);
  42. $this->assign('network',MobileConstant::getNetworkString());
  43. $this->assign('network_color',MobileConstant::getNetworkColor());
  44. $this->assign('network_select',MobileConstant::getNetworkSelect());
  45. if(in_array(2, $this->auth->getGroupIds())){
  46. $this->proxy = 1;
  47. }
  48. }
  49. public function import()
  50. {
  51. //MobileImport::import(input('file'),$this->auth->id);
  52. MobileImport::saveFile(input('file'),$this->auth->id);
  53. $this->success('上传成功,请等待导入');
  54. }
  55. public function import_status_disabled(){
  56. //MobileImport::import(input('file'),$this->auth->id,1,\app\common\model\Mobile::cantOrderStatus());
  57. MobileImport::saveFile(input('file'),$this->auth->id,1,\app\common\model\Mobile::cantOrderStatus());
  58. $this->success('上传成功,请等待导入');
  59. }
  60. /**
  61. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  62. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  63. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  64. */
  65. /**
  66. * 查看
  67. */
  68. public function index()
  69. {
  70. //设置过滤方法
  71. $this->request->filter(['strip_tags', 'trim']);
  72. list($where, $sort, $order, $offset, $limit,$page) = $this->buildindexparams();
  73. if($this->request->get('export')==1 && $this->auth->check('mobile/_mobile_export')){
  74. if(MobileExportLog::exists()){
  75. die('有未完成导出,请稍后再试');
  76. }
  77. $export=MobileExportLog::make($this->admin('id'));
  78. ini_set('memory_limit',-1);
  79. ini_set('max_execution_time',0);
  80. $db=Db::name('mobile');
  81. $db->getConnection()->setConfig('resultset_type','array');
  82. $list= $db
  83. ->where($where)
  84. ->where('mobile.type',1)
  85. ->where(function($q) {
  86. //供应商
  87. if($this->proxy){
  88. return $q->where('proxy_id', $this->auth->id);
  89. }
  90. })
  91. ->orderRaw($this->getOrder())
  92. ->buildSql();
  93. //dd($list);
  94. $export['sql']=$list;
  95. $export->save();
  96. die('已添加到导出日志,请稍后查看');
  97. //return MobileExport::export($list,$this->admin());
  98. }
  99. if ($this->request->isAjax()) {
  100. //如果发送的来源是Selectpage,则转发到Selectpage
  101. if ($this->request->request('keyField')) {
  102. return $this->selectpage();
  103. }
  104. $deleteMode=input('_delete_condition');
  105. if($deleteMode==='true'){
  106. if(!$this->auth->check('mobile/del_condition')){
  107. $this->error('您无权进行此操作');
  108. }
  109. if(!$this->admin()->checkSecpwd(input('secpwd'))){
  110. $this->error('二级密码错误');
  111. }
  112. $num=$this->model
  113. ->alias(null)
  114. ->where($where)
  115. ->where('mobile.type', MO::BEAUTI)
  116. ->delete();
  117. MO::deleteOtherTableInfo();
  118. AdminLog::record('根据条件删除号码');
  119. $deleteConditionMsg=sprintf("成功删除%d个号码",$num);
  120. }
  121. if(!$this->admin('is_sub')){
  122. $list = $this->model
  123. ->with(['info'])
  124. ->where($where)
  125. ->where('mobile.type',1)
  126. ->where(function($q) {
  127. //供应商
  128. if($this->proxy){
  129. return $q->where('proxy_id', $this->auth->id);
  130. }
  131. })
  132. ->orderRaw($this->getOrder())
  133. ->page($page)
  134. ->limit($limit)
  135. ->select();
  136. //->paginate($limit);
  137. }else{
  138. $list=$this->model
  139. ->with(['info'])
  140. //->join('mobile_sub','mobile_sub.mobile_id=mobile.id and mobile_sub.sub_admin_id='.$this->auth->id,'left')
  141. //->field('mobile.*,mobile_sub.*')
  142. ->field('mobile.*')
  143. ->where($where)
  144. ->where('mobile.type',1)
  145. ->orderRaw($this->getOrder())
  146. ->page($page)
  147. ->limit($limit)
  148. ->select();
  149. //->paginate($limit);
  150. }
  151. foreach ($list as $row) {
  152. $rules=[];
  153. foreach (MobileConstant::getFilters() as $rule=>$field){
  154. foreach (array_values($field) as $column){
  155. if($row[$column]==1){
  156. $rules[]=$rule;
  157. }
  158. }
  159. }
  160. $row['rules']=array_values(array_unique($rules));
  161. if($this->admin('is_manager')){
  162. $row['proxy_name']=Admin::where('id',$row['proxy_id'])->value('nickname');
  163. }
  164. }
  165. $count = $this->model->with(['info'])->where($where)->where('mobile.type', MO::BEAUTI)->count();
  166. //$result = array("total" => $list->total(), "rows" => $list->items(),'input'=>input(),'delete_condition_msg'=>$deleteConditionMsg??null);
  167. $result = array("total" => $count, "rows" => $list,'input'=>input(),'delete_condition_msg'=>$deleteConditionMsg??null,'url'=>$this->request->url().'&export=1');
  168. return json($result);
  169. }
  170. $this->assign('no_type',array_column(MobileConstant::getNoType(),'name','id'));
  171. $this->assign('filters',MobileConstant::getFilters());
  172. if($this->admin('is_manager')) {
  173. $this->assign('proxy', Admin::proxy()->field('id,nickname as name')->select());
  174. }else{
  175. $this->assign('proxy', []);
  176. }
  177. return $this->view->fetch();
  178. }
  179. protected function getOrder(){
  180. $filter=json_decode(input('filter'),true);
  181. $default='mobile.id desc';
  182. return $default;
  183. if(!$filter||empty($filter['no'])){
  184. return $default;
  185. }
  186. $value=str_replace('%','',$filter['no']);
  187. if(!$value){
  188. return $default;
  189. }
  190. $lastNum=substr($value,-1);
  191. if(strlen($value)==1){
  192. return "FIELD(`mobile.filter_no_pos_11`,$lastNum) DESC";
  193. }else{
  194. $arr=[];
  195. $numLen=strlen($value);
  196. $idx=1;
  197. for ($i=11;$i>=2;$i--){
  198. if($idx>$numLen){
  199. break;
  200. }
  201. $numPos=$value[$numLen-$idx];
  202. $arr[]="FIELD(mobile.filter_no_pos_{$i},$numPos) DESC";
  203. $idx++;
  204. }
  205. return implode(',',$arr);
  206. }
  207. }
  208. #秒杀
  209. public function mobile_kill()
  210. {
  211. //设置过滤方法
  212. $this->request->filter(['strip_tags', 'trim']);
  213. if ($this->request->isAjax()) {
  214. //如果发送的来源是Selectpage,则转发到Selectpage
  215. if ($this->request->request('keyField')) {
  216. return $this->selectpage();
  217. }
  218. list($where, $sort, $order, $offset, $limit) = $this->buildindexparams();
  219. $map=[];
  220. if($this->admin('is_sub')){
  221. $map['hold_chan']=$this->auth->id;
  222. }
  223. if(!$this->admin('is_sub')){
  224. $list = $this->model
  225. ->with(['info','proxy'])
  226. ->where($where)
  227. ->where($map)
  228. ->where(function($q) {
  229. //供应商
  230. if($this->proxy){
  231. return $q->where('proxy_id', $this->auth->id);
  232. }
  233. })
  234. ->where('mobile.type',1)
  235. ->where('mobile.is_activity',1)
  236. //->orderRaw($this->getOrder())
  237. ->order('mobile.activity_time','desc')
  238. ->paginate($limit);
  239. }else{
  240. $list=$this->model
  241. ->with(['info'])
  242. ->join('mobile_sub','mobile_sub.mobile_id=mobile.id and mobile_sub.sub_admin_id='.$this->auth->id,'left')
  243. ->field('mobile.*,mobile_sub.*')
  244. ->where($where)
  245. ->where($map)
  246. ->where('mobile.type',1)
  247. ->where('mobile.is_activity',1)
  248. //->orderRaw($this->getOrder())
  249. ->order('mobile.activity_time','desc')
  250. ->paginate($limit);
  251. }
  252. foreach ($list as $row) {
  253. $rules=[];
  254. foreach (MobileConstant::getFilters() as $rule=>$field){
  255. foreach (array_values($field) as $column){
  256. if($row[$column]==1){
  257. $rules[]=$rule;
  258. }
  259. }
  260. }
  261. $row['rules']=array_values(array_unique($rules));
  262. if($this->admin('is_sub')) {
  263. $row['mobile_sub'] = [
  264. 'sub_sort' => (int)$row['sub_sort'],
  265. 'sub_rec_time' => (int)$row['sub_rec_time'],
  266. 'sub_top_time' => (int)$row['sub_top_time'],
  267. ];
  268. }
  269. }
  270. $result = array("total" => $list->total(), "rows" => $list->items());
  271. return json($result);
  272. }
  273. $this->assign('no_type',array_column(MobileConstant::getNoType(),'name','id'));
  274. $this->assign('filters',MobileConstant::getFilters());
  275. return $this->view->fetch();
  276. }
  277. public function constant(){
  278. return json([
  279. 'no_type'=>MobileConstant::getNoType(),
  280. ]);
  281. }
  282. #置顶推荐
  283. public function batch(){
  284. $this->validate($data=input(),[
  285. 'id'=>'require',
  286. 'field'=>['require','in:rec_time,top_time'],
  287. 'status'=>'require',
  288. ]);
  289. $time=$data['status']?time():null;
  290. $this->model->where('id',$data['id'])->update([
  291. $data['field']=>$time
  292. ]);
  293. $this->success('','',[
  294. 'status'=>$time,
  295. ]);
  296. }
  297. public function offer(){
  298. /* $this->validate($data=input(),[
  299. 'id'=>'require',
  300. 'status'=>['require','in:0,1'],
  301. ]);
  302. $time=$data['status']?time():0;
  303. $mobile=$this->model->where('id',$data['id'])->find();
  304. $mobile['is_offer']=$time;
  305. $mobile->save();
  306. $this->success('','',[
  307. 'status'=>$time,
  308. ]);*/
  309. }
  310. #设为特价
  311. /* public function setdiscount($ids){
  312. if($this->request->isGet()){
  313. return view();
  314. }else{
  315. $this->validate($data=input('row/a'),[
  316. 'activity_time_end'=>['date','requireIf:activity_forever,0'],
  317. 'activity_forever'=>['require','in:0,1'],
  318. ]);
  319. if($data['activity_forever']){
  320. $activity_time_end=null;
  321. }else {
  322. if (strtotime($data['activity_time_end']) <= time()) {
  323. $this->error('请选择将来时间');
  324. }
  325. $activity_time_end=$data['activity_time_end'];
  326. }
  327. $this->model->whereIn('id',$ids)->update([
  328. 'is_activity'=>1,
  329. 'activity_time_end'=>$activity_time_end,
  330. ]);
  331. $this->success();
  332. }
  333. }*/
  334. #取消设为特价
  335. /* public function cancelsetdiscount(){
  336. $ids=input('ids/a');
  337. if($ids){
  338. $this->model->whereIn('id',$ids)->update([
  339. 'is_activity'=>0,
  340. 'activity_time_end'=>null,
  341. ]);
  342. }
  343. $this->success('');
  344. }*/
  345. #
  346. protected function subDisabled(){
  347. if($this->admin('is_manager')){
  348. return false;
  349. }
  350. return true;
  351. }
  352. protected function killDisabled($mobile){
  353. if($this->admin('is_manager')){
  354. return false;
  355. }
  356. if ($mobile['is_activity']) {
  357. return $mobile['hold_chan']!=$this->admin('id');
  358. }else{
  359. //!$this->auth->check('mobile/mobile_sort')
  360. return false;
  361. }
  362. }
  363. protected function canEditActivity(){
  364. }
  365. #预占
  366. public function takeit($ids){
  367. if($this->request->isGet()){
  368. $mobile=$this->model->find($ids);
  369. $this->assign('row',$mobile);
  370. $this->assign('subDisabled',$this->subDisabled());
  371. $this->assign('killDisabled',$this->killDisabled($mobile));
  372. return view();
  373. }else{
  374. Db::startTrans();
  375. $mobile=$this->model->lock(true)->find($ids);
  376. $data=input('row/a');
  377. $editField=[];
  378. if($this->admin('is_manager')){
  379. $editField=['amount_original','amount_di','amount_base','amount_charge','amount_kill','is_activity','activity_time_end'];
  380. }elseif (!$this->killDisabled($mobile)){
  381. $editField=['amount_kill','is_activity','activity_time_end'];
  382. }else{
  383. Db::rollback();
  384. $this->error('无权操作');
  385. }
  386. foreach ($editField as $field){
  387. $mobile[$field]=$data[$field];
  388. }
  389. if($mobile['amount_kill']<$mobile['amount_di']){
  390. Db::rollback();
  391. $this->error('秒杀价不能低于底价');
  392. }
  393. $change=$mobile->getChangedData();
  394. $admin=Admin::get($this->auth->id);
  395. if(isset($change['is_activity']) && $change['is_activity']){
  396. if($admin['sub']){
  397. $mobile['hold_chan']=$this->auth->id;
  398. }
  399. $mobile['hold_user']=$this->auth->id;
  400. }
  401. $mobile->save();
  402. Db::commit();
  403. $this->success();
  404. }
  405. }
  406. public function edit($ids=null){
  407. if($this->request->isGet()){
  408. $mobile=$this->model->find($ids);
  409. $mobile['province']=\app\common\model\Area::where('id',$mobile['province_id'])->value('name');
  410. $mobile['city']=\app\common\model\Area::where('id',$mobile['city_id'])->value('name');
  411. if($this->admin('is_sub')){
  412. $sub=MobileSub::getBy($mobile,$this->admin());
  413. $mobile['rec_time']=$sub['sub_rec_time'];
  414. $mobile['top_time']=$sub['sub_top_time'];
  415. $mobile['sort']=$sub['sub_sort'];
  416. }
  417. $mobile['is_offer_time']=time();
  418. if($mobile['is_offer']){
  419. $mobile['is_offer']=$mobile['is_offer_time'];
  420. }
  421. $this->assign('row',$mobile);
  422. $this->assign('disabled',$this->subDisabled());
  423. $this->assign('otherSubDisabled',$this->killDisabled($mobile));
  424. return view();
  425. }else{
  426. $data=input('row/a');
  427. Db::startTrans();
  428. //$mobiles=$this->model->whereIn('id',$ids)->select();
  429. $mobile=$this->model->where('id',$ids)->lock(true)->find();
  430. if(!$mobile){
  431. $this->error('号码不存在');
  432. }
  433. $editField=[];
  434. if($this->admin('is_manager')){
  435. $editField=['network','proxy_id','brand','remark','status','amount_original','amount_di','amount_base','amount_charge','amount_kill','is_activity','activity_time_end','sort','top_time','rec_time'];
  436. }elseif (!$this->killDisabled($mobile)){
  437. $editField=['amount_kill','is_activity','activity_time_end'];
  438. }
  439. foreach ($editField as $field){
  440. if(isset($data[$field])) {
  441. $mobile[$field] = $data[$field];
  442. }
  443. }
  444. #特价号
  445. if($this->auth->check('mobile/offer') && isset($data['is_offer'])){
  446. $mobile['is_offer']=$data['is_offer'];
  447. }
  448. /*foreach ($mobiles as $mobile){*/
  449. if($mobile['amount_kill']<$mobile['amount_di']){
  450. $this->error('秒杀价不能低于底价');
  451. }
  452. if($this->admin('is_manager')) {
  453. $city = $data['city'] ?? null;
  454. if ($city) {
  455. $ex = explode('/', $city);
  456. list($data['province'], $data['city']) = $ex;
  457. $data['province_id'] = \app\common\model\Area::getIdByName($data['province']);
  458. $data['city_id'] = \app\common\model\Area::getIdByName($data['city']);
  459. }
  460. $describe = $data['describe'] ?? '';
  461. if ($describe) {
  462. $mobile->info()->update(compact('describe'));
  463. }
  464. }else{
  465. $sub=MobileSub::getBy($mobile,$this->admin());
  466. if($this->service()->hasRecPower()){
  467. $sub['sub_rec_time']=$data['rec_time'];
  468. }
  469. if($this->service()->hasTopPower()){
  470. $sub['sub_top_time']=$data['top_time'];
  471. }
  472. if($this->service()->hasSortPower()){
  473. $sub['sub_sort']=$data['sort'];
  474. }
  475. $sub->save();
  476. }
  477. $mobile->save();
  478. //$mobile->makeSortLine($this->admin());
  479. Db::commit();
  480. /*}*/
  481. $this->success();
  482. }
  483. }
  484. public function multi_edit($ids){
  485. if($this->request->isGet()) {
  486. return view();
  487. }else{
  488. $tempData=input('row/a');
  489. $data=[];
  490. $infoData=[];
  491. if(!empty($tempData['brand'])){
  492. $data['brand']=$tempData['brand'];
  493. }
  494. if(!empty($tempData['remark'])){
  495. $data['remark']=$tempData['remark'];
  496. }
  497. if(isset($tempData['top_time'])){
  498. $data['top_time']=$tempData['top_time'];
  499. }
  500. if(isset($tempData['rec_time'])){
  501. $data['rec_time']=$tempData['rec_time'];
  502. }
  503. if(isset($tempData['is_offer'])){
  504. $data['is_offer']=$tempData['is_offer']?time():0;
  505. }
  506. if(!empty($tempData['describe'])){
  507. $infoData['describe']=$tempData['describe'];
  508. }
  509. if($data) {
  510. $mobiles = $this->model->whereIn('id', $ids)->select();
  511. foreach ($mobiles as $mobile) {
  512. foreach ($data as $key => $value) {
  513. $mobile[$key] = $value;
  514. $mobile->save();
  515. }
  516. }
  517. }
  518. if($infoData){
  519. MobileInfo::whereIn('mobile_id',$ids)->update($infoData);
  520. }
  521. $this->success();
  522. }
  523. }
  524. public function multi_edit_proxy(){
  525. if($this->request->isGet()) {
  526. return view();
  527. }else{
  528. $this->validate(input('row/a'),[
  529. 'proxy_id'=>['require','integer'],
  530. ]);
  531. $mobiles=$this->model->whereIn('id',input('ids'))->select();
  532. foreach ($mobiles as $mobile){
  533. $mobile->save([
  534. 'proxy_id'=>input('row.proxy_id'),
  535. ]);
  536. }
  537. $this->success();
  538. }
  539. }
  540. public function multi_edit_status(){
  541. if($this->request->isGet()) {
  542. return view();
  543. }else{
  544. $this->validate(input('row/a'),[
  545. 'status'=>['require','integer'],
  546. ]);
  547. $status=input('row.status');
  548. if(!isset(MO::beautiStatus()[$status])){
  549. $this->error('状态有误');
  550. }
  551. $this->model->whereIn('id',$ids=input('ids'))->update($field=[
  552. 'status'=>$status,
  553. ]);
  554. EsMobileService::updateById($ids,$field);
  555. $this->success();
  556. }
  557. }
  558. protected function buildindexparams($searchfields = null, $relationSearch = null)
  559. {
  560. $searchfields = is_null($searchfields) ? $this->searchFields : $searchfields;
  561. $relationSearch = is_null($relationSearch) ? $this->relationSearch : $relationSearch;
  562. $search = $this->request->get("search", '');
  563. $filter = $this->request->get("filter", '');
  564. $op = $this->request->get("op", '', 'trim');
  565. $sort = $this->request->get("sort", !empty($this->model) && $this->model->getPk() ? $this->model->getPk() : 'id');
  566. $order = $this->request->get("order", "DESC");
  567. $offset = $this->request->get("offset/d", 0);
  568. $limit = $this->request->get("limit/d", 999999);
  569. //新增自动计算页码
  570. $page = $limit ? intval($offset / $limit) + 1 : 1;
  571. if ($this->request->has("page")) {
  572. $page = $this->request->get("page/d", 1);
  573. }
  574. $this->request->get([config('paginate.var_page') => $page]);
  575. $filter = (array)json_decode($filter, true);
  576. $op = (array)json_decode($op, true);
  577. $filter = $filter ? $filter : [];
  578. $where = [];
  579. $alias = [];
  580. $bind = [];
  581. $name = '';
  582. $aliasName = '';
  583. if (!empty($this->model) && $this->relationSearch) {
  584. $name = $this->model->getTable();
  585. $alias[$name] = Loader::parseName(basename(str_replace('\\', '/', get_class($this->model))));
  586. $aliasName = $alias[$name] . '.';
  587. }
  588. $sortArr = explode(',', $sort);
  589. foreach ($sortArr as $index => & $item) {
  590. $item = stripos($item, ".") === false ? $aliasName . trim($item) : $item;
  591. }
  592. unset($item);
  593. $sort = implode(',', $sortArr);
  594. $adminIds = $this->getDataLimitAdminIds();
  595. if (is_array($adminIds)) {
  596. $where[] = [$aliasName . $this->dataLimitField, 'in', $adminIds];
  597. }
  598. if ($search) {
  599. $searcharr = is_array($searchfields) ? $searchfields : explode(',', $searchfields);
  600. foreach ($searcharr as $k => &$v) {
  601. $v = stripos($v, ".") === false ? $aliasName . $v : $v;
  602. }
  603. unset($v);
  604. $where[] = [implode("|", $searcharr), "LIKE", "%{$search}%"];
  605. }
  606. $index = 0;
  607. foreach ($filter as $k => $v) {
  608. if($k=='rules'){
  609. continue;
  610. }
  611. if (!preg_match('/^[a-zA-Z0-9_\-.]+$/', $k)) {
  612. continue;
  613. }
  614. $sym = isset($op[$k]) ? $op[$k] : '=';
  615. if (stripos($k, ".") === false) {
  616. $k = $aliasName . $k;
  617. }
  618. $v = !is_array($v) ? trim($v) : $v;
  619. $sym = strtoupper(isset($op[$k]) ? $op[$k] : $sym);
  620. //null和空字符串特殊处理
  621. if (!is_array($v)) {
  622. if (in_array(strtoupper($v), ['NULL', 'NOT NULL'])) {
  623. $sym = strtoupper($v);
  624. }
  625. if (in_array($v, ['""', "''"])) {
  626. $v = '';
  627. $sym = '=';
  628. }
  629. }
  630. switch ($sym) {
  631. case '=':
  632. case '<>':
  633. $where[] = [$k, $sym, (string)$v];
  634. break;
  635. case 'LIKE':
  636. case 'NOT LIKE':
  637. case 'LIKE %...%':
  638. case 'NOT LIKE %...%':
  639. $where[] = [$k, trim(str_replace('%...%', '', $sym)), "%{$v}%"];
  640. break;
  641. case '>':
  642. case '>=':
  643. case '<':
  644. case '<=':
  645. $where[] = [$k, $sym, intval($v)];
  646. break;
  647. case 'FINDIN':
  648. case 'FINDINSET':
  649. case 'FIND_IN_SET':
  650. $v = is_array($v) ? $v : explode(',', str_replace(' ', ',', $v));
  651. $findArr = array_values($v);
  652. foreach ($findArr as $idx => $item) {
  653. $bindName = "item_" . $index . "_" . $idx;
  654. $bind[$bindName] = $item;
  655. $where[] = "FIND_IN_SET(:{$bindName}, `" . str_replace('.', '`.`', $k) . "`)";
  656. }
  657. break;
  658. case 'IN':
  659. case 'IN(...)':
  660. case 'NOT IN':
  661. case 'NOT IN(...)':
  662. $where[] = [$k, str_replace('(...)', '', $sym), is_array($v) ? $v : explode(',', $v)];
  663. break;
  664. case 'BETWEEN':
  665. case 'NOT BETWEEN':
  666. $arr = array_slice(explode(',', $v), 0, 2);
  667. if (stripos($v, ',') === false || !array_filter($arr)) {
  668. continue 2;
  669. }
  670. //当出现一边为空时改变操作符
  671. if ($arr[0] === '') {
  672. $sym = $sym == 'BETWEEN' ? '<=' : '>';
  673. $arr = $arr[1];
  674. } elseif ($arr[1] === '') {
  675. $sym = $sym == 'BETWEEN' ? '>=' : '<';
  676. $arr = $arr[0];
  677. }
  678. $where[] = [$k, $sym, $arr];
  679. break;
  680. case 'RANGE':
  681. case 'NOT RANGE':
  682. $v = str_replace(' - ', ',', $v);
  683. $arr = array_slice(explode(',', $v), 0, 2);
  684. if (stripos($v, ',') === false || !array_filter($arr)) {
  685. continue 2;
  686. }
  687. //当出现一边为空时改变操作符
  688. if ($arr[0] === '') {
  689. $sym = $sym == 'RANGE' ? '<=' : '>';
  690. $arr = $arr[1];
  691. } elseif ($arr[1] === '') {
  692. $sym = $sym == 'RANGE' ? '>=' : '<';
  693. $arr = $arr[0];
  694. }
  695. $tableArr = explode('.', $k);
  696. if (count($tableArr) > 1 && $tableArr[0] != $name && !in_array($tableArr[0], $alias) && !empty($this->model)) {
  697. //修复关联模型下时间无法搜索的BUG
  698. $relation = Loader::parseName($tableArr[0], 1, false);
  699. $alias[$this->model->$relation()->getTable()] = $tableArr[0];
  700. }
  701. $where[] = [$k, str_replace('RANGE', 'BETWEEN', $sym) . ' TIME', $arr];
  702. break;
  703. case 'NULL':
  704. case 'IS NULL':
  705. case 'NOT NULL':
  706. case 'IS NOT NULL':
  707. $where[] = [$k, strtolower(str_replace('IS ', '', $sym))];
  708. break;
  709. default:
  710. break;
  711. }
  712. $index++;
  713. }
  714. if (!empty($this->model)) {
  715. $this->model->alias($alias);
  716. }
  717. if(isset($filter['rules']) && $filter['rules']){
  718. $temp=[];
  719. foreach (MobileConstant::getFilters()[$filter['rules']] as $pos=>$column){
  720. $temp[]=$column;
  721. }
  722. $flip=array_flip($temp);
  723. if(isset($filter['filter_first_last'])){
  724. if($filter['filter_first_last']==1){
  725. $where[] = [$temp[1],1];
  726. }elseif ($filter['filter_first_last']==2){
  727. $where[] = [$temp[0],1];
  728. }
  729. }else {
  730. $where[] = [implode("|", $temp), 1];
  731. }
  732. }
  733. $model = $this->model;
  734. $where = function ($query) use ($where, $alias, $bind, &$model,$filter) {
  735. if (!empty($model)) {
  736. $model->alias($alias);
  737. $model->bind($bind);
  738. }
  739. foreach ($where as $k => $v) {
  740. if (is_array($v)) {
  741. if(in_array($v[0],['mobile_sub.sub_top_time','mobile_sub.sub_rec_time'])){
  742. if($v[2]) {
  743. $query->whereIn($v[0], 1);
  744. }else{
  745. $query->where(function ($query)use ($v){
  746. $query->whereRaw("{$v[0]}=0 or {$v[0]} is null");
  747. });
  748. }
  749. continue;
  750. }elseif ($v[0]=='proxy.nickname'){
  751. $proxy_id=Admin::where('proxy',1)->where('nickname','like',"%{$v[2]}%")->column('id')?:[0];
  752. $query->whereIn('proxy_id',$proxy_id);
  753. continue;
  754. }elseif ($v[0]=='mobile.exclude_nums'){
  755. $arr=explode(',',$v[2]);
  756. foreach ($arr as $num){
  757. if(!is_numeric($num)){
  758. continue;
  759. }
  760. $query->where(sprintf("filter_num_%s",$num),0);
  761. }
  762. continue;
  763. }elseif ($v[0]=='mobile.filter_first_last'){
  764. continue;
  765. }elseif ($v[0]=='mobile.no'){
  766. $noSearch=$filter['no'];
  767. if(isset($filter['filter_first_last'])){
  768. if($filter['filter_first_last']==1) {
  769. $noPad = str_pad($noSearch, 11, 'a',STR_PAD_LEFT);
  770. for ($i = 11; $i >1; $i--) {
  771. if ($noPad[$i-1] !== 'a') {
  772. $query->where("filter_no_pos_{$i}", $noPad[$i-1]);
  773. }
  774. }
  775. }elseif ($filter['filter_first_last']==2){
  776. $query->where('filter_no_pos_11','<>',$noSearch[strlen($noSearch)-1])->whereRaw("LOCATE('{$noSearch}',no)");
  777. }
  778. }else{
  779. //$query->where('no','like',"%{$noSearch}%");
  780. $query->whereRaw("LOCATE('{$noSearch}',no)");
  781. }
  782. continue;
  783. }elseif ($v[0]=='mobile.proxy_id'){
  784. $proxyIds=Admin::proxy()->whereLike('nickname',"%{$v[2]}%")->column('id');
  785. $count=count($proxyIds);
  786. if($count){
  787. if($count==1){
  788. $query->where('proxy_id',$proxyIds[0]);
  789. }else{
  790. $query->whereIn('proxy_id',$proxyIds);
  791. }
  792. }
  793. continue;
  794. }
  795. call_user_func_array([$query, 'where'], $v);
  796. } else {
  797. $query->where($v);
  798. }
  799. }
  800. $precise_search=input('precise_search/a');
  801. if(is_array($precise_search) && $precise_search){
  802. foreach ($precise_search as $idx=>$num){
  803. if(!is_numeric($num)){
  804. continue;
  805. }
  806. $query->where(sprintf('mobile.filter_no_pos_%d',$idx),(int)$num);
  807. }
  808. }
  809. };
  810. return [$where, $sort, $order, $offset, $limit, $page, $alias, $bind];
  811. }
  812. public function status(){
  813. return \app\common\model\Mobile::$status;
  814. }
  815. public function add()
  816. {
  817. if($this->request->isPost()) {
  818. $data = input('row/a');
  819. if (!empty($data['city'])) {
  820. $data['city'] = explode('/', $data['city'])[1];
  821. }
  822. Db::startTrans();
  823. $this->validate($data, \app\admin\validate\Mobile::class);
  824. $data['type'] = 1;
  825. $info = [];
  826. if (isset($data['describe'])) {
  827. $info['describe'] = $data['describe'];
  828. unset($data['describe']);
  829. }
  830. $mobile = $this->model::create($data);
  831. $mobile->info()->save($info);
  832. Db::commit();
  833. $this->success();
  834. }else{
  835. return view();
  836. }
  837. }
  838. public function export($ids){
  839. $mobiles=$this->model->whereIn('id',$ids)->select();
  840. $excel = new Spreadsheet();
  841. $excel->getProperties()
  842. ->setCreator("admin")
  843. ->setLastModifiedBy("admin")
  844. ->setTitle("导出号码")
  845. ->setSubject("导出号码");
  846. $excel->getDefaultStyle()->getFont()->setName('Microsoft Yahei');
  847. $excel->getDefaultStyle()->getFont()->setSize(12);
  848. $excel->getDefaultStyle()->applyFromArray(
  849. array(
  850. 'fill' => array(
  851. 'type' => Fill::FILL_SOLID,
  852. 'color' => array('rgb' => '000000')
  853. ),
  854. 'font' => array(
  855. 'color' => array('rgb' => "000000"),
  856. ),
  857. 'alignment' => array(
  858. 'vertical' => Alignment::VERTICAL_CENTER,
  859. 'horizontal' => Alignment::HORIZONTAL_CENTER,
  860. 'indent' => 1
  861. ),
  862. 'borders' => array(
  863. 'allborders' => array('style' => Border::BORDER_THIN),
  864. )
  865. ));
  866. $excel->getActiveSheet()->setCellValue('A1','ID');
  867. $excel->getActiveSheet()->setCellValue('B1','手机号');
  868. $excel->getActiveSheet()->setCellValue('C1','省份');
  869. $excel->getActiveSheet()->setCellValue('D1','归属地');
  870. $excel->getActiveSheet()->setCellValue('E1','运营商');
  871. $excel->getActiveSheet()->setCellValue('F1','供应商');
  872. $excel->getActiveSheet()->setCellValue('G1','卡品牌');
  873. $excel->getActiveSheet()->setCellValue('H1','规律');
  874. $excel->getActiveSheet()->setCellValue('I1','套餐信息');
  875. $excel->getActiveSheet()->setCellValue('J1','原价');
  876. $excel->getActiveSheet()->setCellValue('K1','底价');
  877. $excel->getActiveSheet()->setCellValue('L1','售价');
  878. $excel->getActiveSheet()->setCellValue('M1','秒杀价');
  879. $excel->getActiveSheet()->setCellValue('N1','预存话费');
  880. $excel->getActiveSheet()->setCellValue('O1','备注');
  881. $excel->getActiveSheet()->setCellValue('P1','置顶');
  882. $excel->getActiveSheet()->setCellValue('Q1','推荐');
  883. $excel->getActiveSheet()->setCellValue('R1','号码状态');
  884. $excel->getActiveSheet()->setCellValue('S1','更新时间');
  885. $excel->getActiveSheet()->setCellValue('T1','上架时间');
  886. $excel->getActiveSheet()->setCellValue('U1','排序');
  887. $excel->getActiveSheet()->setCellValue('V1','预占通道');
  888. $excel->getActiveSheet()->setCellValue('W1','预占用户ID');
  889. $excel->getActiveSheet()->setCellValue('X1','上传用户');
  890. $i=2;
  891. foreach ($mobiles as $mobile){
  892. $rules=[];
  893. foreach (MobileConstant::getFilters() as $rule=>$field){
  894. foreach (array_values($field) as $column){
  895. if($mobile[$column]==1){
  896. $rules[]=$rule;
  897. }
  898. }
  899. }
  900. $mobile['rules']=array_values(array_unique($rules));
  901. $status=$mobile['is_activity']?'预占':\app\common\model\Mobile::$status[$mobile['status']];
  902. $excel->getActiveSheet()->setCellValue('A'.$i,$mobile['id']);
  903. $excel->getActiveSheet()->setCellValue('B'.$i,$mobile['no']);
  904. $excel->getActiveSheet()->setCellValue('C'.$i,$mobile['province']);
  905. $excel->getActiveSheet()->setCellValue('D'.$i,$mobile['city']);
  906. $excel->getActiveSheet()->setCellValue('E'.$i,$mobile['network']);
  907. $excel->getActiveSheet()->setCellValue('F'.$i,$mobile['proxy']['nickname']??'');
  908. $excel->getActiveSheet()->setCellValue('G'.$i,$mobile['brand']);
  909. $excel->getActiveSheet()->setCellValue('H'.$i,implode(',',$mobile['rules']));
  910. $excel->getActiveSheet()->setCellValue('I'.$i,$mobile['info']['describe']??'');
  911. $excel->getActiveSheet()->setCellValue('J'.$i,$mobile['amount_original']);
  912. $excel->getActiveSheet()->setCellValue('K'.$i,$mobile['amount_di']);
  913. $excel->getActiveSheet()->setCellValue('L'.$i,$mobile['amount_base']);
  914. $excel->getActiveSheet()->setCellValue('M'.$i,$mobile['amount_kill']);
  915. $excel->getActiveSheet()->setCellValue('N'.$i,$mobile['amount_charge']);
  916. $excel->getActiveSheet()->setCellValue('O'.$i,$mobile['remark']);
  917. $excel->getActiveSheet()->setCellValue('P'.$i,$mobile['top_time']?'是':'否');
  918. $excel->getActiveSheet()->setCellValue('Q'.$i,$mobile['rec_time']?'是':'否');
  919. $excel->getActiveSheet()->setCellValue('R'.$i,$status);
  920. $excel->getActiveSheet()->setCellValue('S'.$i,date('Y-m-d H:i:s',$mobile['update_time']));
  921. $excel->getActiveSheet()->setCellValue('T'.$i,date('Y-m-d H:i:s',$mobile['create_time']));
  922. $excel->getActiveSheet()->setCellValue('U'.$i,$mobile['sort']);
  923. $excel->getActiveSheet()->setCellValue('V'.$i,$mobile['hold_chan']);
  924. $excel->getActiveSheet()->setCellValue('W'.$i,$mobile['hold_user']);
  925. $excel->getActiveSheet()->setCellValue('X'.$i,$mobile['admin_id']);
  926. $i++;
  927. }
  928. $excel->createSheet();
  929. // Redirect output to a client’s web browser (Excel2007)
  930. $title = date("YmdHis");
  931. header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
  932. header('Content-Disposition: attachment;filename="' . $title . '.xlsx"');
  933. header('Cache-Control: max-age=0');
  934. // If you're serving to IE 9, then the following may be needed
  935. header('Cache-Control: max-age=1');
  936. // If you're serving to IE over SSL, then the following may be needed
  937. header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past
  938. header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT'); // always modified
  939. header('Cache-Control: cache, must-revalidate'); // HTTP/1.1
  940. header('Pragma: public'); // HTTP/1.0
  941. $objWriter = IOFactory::createWriter($excel, 'Xlsx');
  942. $objWriter->save('php://output');
  943. }
  944. public function force_update(){
  945. $this->success();
  946. }
  947. public function batch_set_amount($ids){
  948. if($this->request->isGet()){
  949. return view();
  950. }else{
  951. $data=input('row/a');
  952. $this->validate($data,[
  953. 'amount_base|售价'=>['require','number','gt:0'],
  954. 'amount_di|底价'=>['require','number','egt:0'],
  955. ]);
  956. $mobiles=$this->model->whereIn('id',$ids)->select();
  957. foreach ($mobiles as $mobile){
  958. $mobile['amount_base']=$data['amount_base'];
  959. $mobile['amount_di']=$data['amount_di'];
  960. $mobile->save();
  961. }
  962. $this->success();
  963. }
  964. }
  965. public function set_kill($ids){
  966. if($this->request->isGet()){
  967. return view();
  968. }else{
  969. $data=input('row/a');
  970. $discount=$data['discount']??0;
  971. if(!empty($data['discount_diy']) && is_numeric($data['discount_diy'])){
  972. $discount=$data['discount_diy'];
  973. }
  974. if($discount==0){
  975. $this->error('折扣有误');
  976. }
  977. $mobiles=$this->model->whereIn('id',$ids)->where(function (Query $query){
  978. if($this->admin('is_sub')) {
  979. $query->where('hold_chan', 0)->whereOr('hold_chan', $this->admin('id'));
  980. }
  981. })->select();
  982. Db::startTrans();
  983. foreach ($mobiles as $mobile){
  984. $mobile['amount_kill']=bcmul($mobile['amount_base'],$discount,0);
  985. if($mobile['amount_kill']==0){
  986. $mobile['amount_kill']=bcmul($mobile['amount_base'],$discount);
  987. }
  988. $mobile['is_activity']=1;
  989. $mobile['hold_user']=$this->admin('id');
  990. $mobile['hold_chan']=$this->admin('is_manager')?0:$this->admin('id');
  991. $mobile->save();
  992. }
  993. Db::commit();
  994. $this->success();
  995. }
  996. }
  997. public function set_online_clear(){
  998. $type = input('type',1);
  999. if($this->request->isGet()) {
  1000. $this->assign('type',$type);
  1001. return view();
  1002. }else{
  1003. $data=[];
  1004. $act=input('act');
  1005. $reserve=input('reserve');
  1006. if($type==1){
  1007. switch ($act){
  1008. case 'check':
  1009. $num=$this->model->where('status',0)->group('no')->having('no_cf_count>1')->column('count(no) as no_cf_count');
  1010. $data['num']=array_sum($num);
  1011. break;
  1012. case 'del':
  1013. $data['num']=$this->set_online_clear_del($reserve,$type);
  1014. break;
  1015. }
  1016. }elseif ($type==2){
  1017. switch ($act){
  1018. case 'check':
  1019. $num=$this->model->where('status',1)->group('no')->having('no_cf_count>1')->column('count(no) as no_cf_count');
  1020. $data['num']=array_sum($num);
  1021. break;
  1022. case 'del':
  1023. $data['num']=$this->set_online_clear_del($reserve,$type);
  1024. break;
  1025. }
  1026. }
  1027. $this->result($data,1);
  1028. }
  1029. }
  1030. protected function set_online_clear_del($reserve,$type){
  1031. if(in_array($reserve,[1,2])){
  1032. return $this->set_online_clear_query($type,'id',$reserve==1);
  1033. }elseif(in_array($reserve,[3,4])){
  1034. return $this->set_online_clear_query($type,'amount_base',$reserve==3);
  1035. }elseif(in_array($reserve,[5,6])){
  1036. return $this->set_online_clear_query($type,'amount_di',$reserve==5);
  1037. }
  1038. }
  1039. protected function set_online_clear_query($type,$column,$asc){
  1040. $map=[];
  1041. if($type==1) {
  1042. $map['status'] = ['eq',0];
  1043. }elseif($type==2) {
  1044. $map['status'] = ['eq',1];
  1045. }
  1046. $res=$this->model->where($map)->group('no')->having('num>1')->column("count(no) as num,no,group_concat(id) as ids,GROUP_CONCAT($column) as $column",'no');
  1047. $ids=[];
  1048. $num=0;
  1049. foreach ($res as $item){
  1050. $tempIds=explode(',',$item['ids']);
  1051. $tempAmount=explode(',',$item[$column]);
  1052. $tempNew=array_combine($tempIds,$tempAmount);
  1053. $asc?asort($tempNew,1):arsort($tempNew,1);
  1054. unset($tempNew[array_keys($tempNew)[0]]);
  1055. //$ids=array_merge($ids,array_keys($tempNew));
  1056. $newIds=array_keys($tempNew);
  1057. $num+=count($newIds);
  1058. $ids=array_merge($ids,$newIds);
  1059. if(count($ids)>8000) {
  1060. $this->model->whereIn('id', $ids)->delete();
  1061. $ids=[];
  1062. }
  1063. }
  1064. if($ids) {
  1065. $this->model->whereIn('id', $ids)->delete();
  1066. }
  1067. return $num;
  1068. }
  1069. public function batch_copy_operation(){
  1070. if($this->request->isGet()) {
  1071. return view();
  1072. }else{
  1073. $num=0;
  1074. $data=input('row/a');
  1075. $this->validate($data,[
  1076. 'no|手机号'=>['require'],
  1077. 'act'=>'require',
  1078. ]);
  1079. $noFiltered=array_unique(array_filter(explode("\n",$data['no'])));
  1080. if($data['act']=='delete'){
  1081. $mobiles=$this->model->whereIn('no',$noFiltered)->select();
  1082. Db::startTrans();
  1083. foreach ($mobiles as $mobile){
  1084. $mobile->delete();
  1085. }
  1086. $num=count($mobiles);
  1087. Db::commit();
  1088. }elseif($data['act']=='up'){
  1089. $num=$this->model->whereIn('no',$noFiltered)->update(['status'=>0]);
  1090. $ids=$this->model->whereIn('no',$noFiltered)->column('id');
  1091. EsMobileService::updateById($ids,['status'=>0]);
  1092. }elseif($data['act']=='down'){
  1093. $num=$this->model->whereIn('no',$noFiltered)->update(['status'=>2]);
  1094. $ids=$this->model->whereIn('no',$noFiltered)->column('id');
  1095. EsMobileService::updateById($ids,['status'=>2]);
  1096. }elseif (strpos($data['act'],'top')!==false){
  1097. $value=str_replace('top','',$data['act']);
  1098. if($noFiltered){
  1099. $mobiles=$this->model->where('top_time',0)->whereIn('no',$noFiltered)->select();
  1100. foreach ($mobiles as $mobile){
  1101. $mobile['top_time']=$value;
  1102. $mobile->save();
  1103. }
  1104. $num=$mobiles->count();
  1105. }
  1106. }elseif (strpos($data['act'],'rec')!==false){
  1107. $value=str_replace('rec','',$data['act']);
  1108. if($noFiltered){
  1109. $mobiles=$this->model->where('rec_time',0)->whereIn('no',$noFiltered)->select();
  1110. foreach ($mobiles as $mobile){
  1111. $mobile['rec_time']=$value;
  1112. $mobile->save();
  1113. }
  1114. $num=$mobiles->count();
  1115. }
  1116. }elseif ($data['act']=='offer'){
  1117. $time=time();
  1118. if($noFiltered){
  1119. $mobiles=$this->model->where('is_offer',0)->whereIn('no',$noFiltered)->select();
  1120. foreach ($mobiles as $mobile){
  1121. $mobile['is_offer']=$time;
  1122. $mobile->save();
  1123. }
  1124. $num=$mobiles->count();
  1125. }
  1126. }
  1127. $this->result(['num'=>$num],1);
  1128. }
  1129. }
  1130. public function mobile_rules(){
  1131. return MobileConstant::getRuleKeys();
  1132. }
  1133. public function activity_cancel($ids){
  1134. $mobile=$this->model->findOrFail($ids);
  1135. if(!$mobile['is_activity']){
  1136. $this->error('该号码没有被预占无法取消');
  1137. }
  1138. if($this->admin('is_proxy')){
  1139. $this->error('您是供应商,无法使用此功能');
  1140. }
  1141. if($this->admin('sub') && $mobile['hold_chan']!=$this->auth->id){
  1142. $this->error('您无法取消');
  1143. }
  1144. $mobile->makeNotActivity();
  1145. $this->success();
  1146. }
  1147. public function batch_activity_cancel($ids){
  1148. $map=[];
  1149. if($this->admin('is_sub')){
  1150. $map['hold_chan']=$this->admin('id');
  1151. }
  1152. $mobiles=$this->model->whereIn('id',$ids)->where($map)->select();
  1153. foreach ($mobiles as $mobile){
  1154. $mobile['is_activity']=0;
  1155. $mobile->save();
  1156. }
  1157. $this->success();
  1158. }
  1159. /** 排序 */
  1160. public function mobile_sort($ids){
  1161. $mobile=$this->model->find($ids);
  1162. if(!$mobile){
  1163. return '';
  1164. }
  1165. $row=[
  1166. 'sort'=>0,
  1167. ];
  1168. if($this->request->isGet()){
  1169. if($this->admin('is_sub')){
  1170. $row['sort']=MobileSub::getBy($mobile,$this->admin())['sub_sort'];
  1171. }else{
  1172. $row['sort']=$mobile['sort'];
  1173. }
  1174. $this->assign('row',$row);
  1175. return view();
  1176. }else{
  1177. $data=input('row/a');
  1178. $this->validate($data,[
  1179. 'sort|排序'=>['require','integer','gt:0'],
  1180. ]);
  1181. if($this->admin('is_sub')){
  1182. $mobileSub=MobileSub::getBy($mobile,$this->admin());
  1183. $mobileSub['sub_sort']=$data['sort'];
  1184. $mobileSub->save();
  1185. }else{
  1186. $mobile['sort']=$data['sort'];
  1187. $mobile->save();
  1188. }
  1189. $this->success();
  1190. }
  1191. }
  1192. public function del_all(){
  1193. if(!$this->admin()->checkSecpwd(input('secpwd'))){
  1194. $this->error('二级密码错误');
  1195. }
  1196. $data=['num'=>0];
  1197. $data['num']= MO::where('type',MO::BEAUTI)->delete();
  1198. \app\common\model\Mobile::deleteOtherTableInfo();
  1199. EsMobileService::clear();
  1200. AdminLog::record('清空号码');
  1201. $this->success('',null,$data);
  1202. }
  1203. public function exclude_nums(){
  1204. return json([
  1205. 'list'=>[
  1206. ['id'=>2,'title'=>'2'],
  1207. ['id'=>3,'title'=>'3'],
  1208. ['id'=>4,'title'=>'4'],
  1209. ['id'=>5,'title'=>'5'],
  1210. ['id'=>6,'title'=>'6'],
  1211. ['id'=>7,'title'=>'7'],
  1212. ['id'=>8,'title'=>'8'],
  1213. ['id'=>9,'title'=>'9'],
  1214. ['id'=>0,'title'=>'0'],
  1215. ],
  1216. 'total'=>10,
  1217. ]);
  1218. }
  1219. }