MobileExportCsv.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. <?php
  2. namespace app\common\service;
  3. use app\admin\model\Admin;
  4. use app\common\library\MobileConstant;
  5. use app\common\model\Mobile;
  6. use app\common\model\MobileInfo;
  7. use app\common\model\MobileOrder;
  8. use app\common\model\MobileSub;
  9. use PhpOffice\PhpSpreadsheet\Spreadsheet;
  10. use PhpOffice\PhpSpreadsheet\Writer\Xlsx;
  11. class MobileExportCsv{
  12. public static function export1($list,$export){
  13. $admin=Admin::get($export['admin_id']);
  14. $header=[
  15. [
  16. 'name'=>'ID',
  17. 'value'=>function($model){
  18. return $model['id'];
  19. },
  20. ],
  21. [
  22. 'name'=>'手机号',
  23. 'value'=>function($model){
  24. return $model['no'];
  25. },
  26. ],
  27. [
  28. 'name'=>'省份',
  29. 'value'=>function($model){
  30. return $model['province'];
  31. },
  32. ],
  33. [
  34. 'name'=>'归属地',
  35. 'value'=>function($model){
  36. return $model['city'];
  37. },
  38. ],
  39. [
  40. 'name'=>'运营商',
  41. 'value'=>function($model){
  42. return $model['network'];
  43. },
  44. ],
  45. [
  46. 'name'=>'供应商',
  47. 'value'=>function($model){
  48. return Admin::where('id',$model['proxy_id'])->value('nickname');
  49. },
  50. 'hidden'=>!$admin['is_manager']
  51. ],
  52. [
  53. 'name'=>'卡品牌',
  54. 'value'=>function($model){
  55. return $model['brand'];
  56. },
  57. ],
  58. [
  59. 'name'=>'规律',
  60. 'value'=>function($row){
  61. $rules=[];
  62. foreach (MobileConstant::getFilters() as $rule=>$field){
  63. foreach (array_values($field) as $column){
  64. if($row[$column]==1){
  65. $rules[]=$rule;
  66. }
  67. }
  68. }
  69. $rules=array_values(array_unique($rules));
  70. return implode(",",$rules);
  71. },
  72. ],
  73. [
  74. 'name'=>'套餐信息',
  75. 'value'=>function($model){
  76. return MobileInfo::where('mobile_id',$model['id'])->value('describe');
  77. },
  78. ],
  79. [
  80. 'name'=>'原价',
  81. 'value'=>function($model){
  82. return $model['amount_original'];
  83. },
  84. ],
  85. [
  86. 'name'=>'底价',
  87. 'value'=>function($model){
  88. return $model['amount_di'];
  89. },
  90. ],
  91. [
  92. 'name'=>'代理价',
  93. 'value'=>function($model){
  94. return $model['amount_proxy'];
  95. },
  96. 'hidden'=>!$admin['is_manager']
  97. ],
  98. [
  99. 'name'=>'售价',
  100. 'value'=>function($model){
  101. return $model['amount_base'];
  102. },
  103. ],
  104. [
  105. 'name'=>'秒杀价',
  106. 'value'=>function($model){
  107. return $model['amount_kill'];
  108. },
  109. ],
  110. [
  111. 'name'=>'预存话费',
  112. 'value'=>function($model){
  113. return $model['amount_charge'];
  114. },
  115. ],
  116. [
  117. 'name'=>'备注',
  118. 'value'=>function($model){
  119. return $model['remark'];
  120. },
  121. ],
  122. [
  123. 'name'=>'置顶',
  124. 'value'=>function($model)use($admin){
  125. if($admin['is_manager']){
  126. return $model['top_time']?'是':'否';
  127. }else{
  128. return MobileSub::where('sub_admin_id',$admin['id'])->where('mobile_id',$model['id'])->value('sub_top_time')?'是':'否';
  129. }
  130. },
  131. ],
  132. [
  133. 'name'=>'推荐',
  134. 'value'=>function($model)use($admin){
  135. if($admin['is_manager']){
  136. return $model['rec_time']?'是':'否';
  137. }else{
  138. return MobileSub::where('sub_admin_id',$admin['id'])->where('mobile_id',$model['id'])->value('sub_rec_time')?'是':'否';
  139. }
  140. },
  141. ],
  142. [
  143. 'name'=>'号码状态',
  144. 'value'=>function($model)use($admin){
  145. $status=Mobile::beautiStatus();
  146. return $status[$model['status']];
  147. },
  148. ],
  149. [
  150. 'name'=>'更新时间',
  151. 'value'=>function($model){
  152. return date('Y-m-d H:i:s',$model['update_time']);
  153. },
  154. ],
  155. [
  156. 'name'=>'上架时间',
  157. 'value'=>function($model){
  158. return date('Y-m-d H:i:s',$model['create_time']);
  159. },
  160. ],
  161. [
  162. 'name'=>'排序',
  163. 'value'=>function($model){
  164. return $model['sort'];
  165. },
  166. ],
  167. [
  168. 'name'=>'预占通道',
  169. 'value'=>function($model){
  170. return $model['hold_chan'];
  171. },
  172. ],
  173. [
  174. 'name'=>'预占用户ID',
  175. 'value'=>function($model){
  176. return $model['hold_user'];
  177. },
  178. ],
  179. [
  180. 'name'=>'上传用户',
  181. 'value'=>function($model){
  182. return $model['admin_id'];
  183. },
  184. ],
  185. ];
  186. $export['filename']=sprintf('/uploads/mobile_export/%s',session_create_id(date('Ymd-')).'.csv');
  187. $filePath=ROOT_PATH.'/public'.$export['filename'];
  188. $dir=str_replace(basename($filePath),'',$filePath);
  189. if(!is_dir($dir)){
  190. mkdir($dir,0777,true);
  191. }
  192. $csvFile=fopen($filePath,'w+');
  193. $headers=[];
  194. foreach ($header as $value){
  195. if(is_callable($value['value']) && self::visible($value)){
  196. $headers[]=$value;
  197. }
  198. }
  199. unset($header);
  200. mb_convert_variables('GBK','UTF-8',$headers);
  201. fputcsv($csvFile,array_column($headers,'name'));
  202. foreach ($list as $key=>$mobile){
  203. $mobileData=[];
  204. foreach ($headers as $header){
  205. $mobileData[]=$header['value']($mobile);
  206. }
  207. echo $key.PHP_EOL;
  208. mb_convert_variables('gbk','utf-8',$mobileData);
  209. fputcsv($csvFile,$mobileData);
  210. }
  211. fclose($csvFile);
  212. $export['status']=2;
  213. $export->save();
  214. }
  215. public static function export($list,$export){
  216. $admin=Admin::get($export['admin_id']);
  217. $header=[
  218. [
  219. 'name'=>'手机号',
  220. 'value'=>function($model){
  221. return $model['no'];
  222. },
  223. ],
  224. [
  225. 'name'=>"省份\n(自动识别)",
  226. 'value'=>function($model){
  227. return '';
  228. },
  229. ],
  230. [
  231. 'name'=>'归属地',
  232. 'value'=>function($model){
  233. return $model['city'];
  234. },
  235. ],
  236. [
  237. 'name'=>'运营商',
  238. 'value'=>function($model){
  239. return $model['network'];
  240. },
  241. ],
  242. [
  243. 'name'=>'卡品牌',
  244. 'value'=>function($model){
  245. return $model['brand'];
  246. },
  247. ],
  248. [
  249. 'name'=>"规律\n(自动识别)",
  250. 'value'=>function($row){
  251. return '';
  252. },
  253. ],
  254. [
  255. 'name'=>'资费套餐',
  256. 'value'=>function($model){
  257. return MobileInfo::where('mobile_id',$model['id'])->value('describe');
  258. },
  259. ],
  260. [
  261. 'name'=>'原价',
  262. 'value'=>function($model){
  263. return $model['amount_original'];
  264. },
  265. ],
  266. [
  267. 'name'=>'底价',
  268. 'value'=>function($model){
  269. return $model['amount_di'];
  270. },
  271. ],
  272. [
  273. 'name'=>'售价',
  274. 'value'=>function($model){
  275. return $model['amount_base'];
  276. },
  277. ],
  278. [
  279. 'name'=>'预存话费',
  280. 'value'=>function($model){
  281. return $model['amount_charge'];
  282. },
  283. ],
  284. [
  285. 'name'=>"备注\n(全部可见)",
  286. 'value'=>function($model){
  287. return $model['remark'];
  288. },
  289. ],
  290. [
  291. 'name'=>'号码状态',
  292. 'value'=>function($model)use($admin){
  293. $status=Mobile::beautiStatus();
  294. return $status[$model['status']];
  295. },
  296. ],
  297. [
  298. 'name'=>'代理价',
  299. 'value'=>function($model){
  300. return $model['amount_proxy'];
  301. },
  302. ],
  303. [
  304. 'name'=>'供应商',
  305. 'value'=>function($model){
  306. return $model['proxy']['nickname'];
  307. },
  308. ],
  309. [
  310. 'name'=>'供应商电话',
  311. 'value'=>function($model){
  312. return $model['proxy']['phone'];
  313. },
  314. ],
  315. [
  316. 'name'=>'批号',
  317. 'value'=>function($model){
  318. return $model['batch_no'];
  319. },
  320. ],
  321. [
  322. 'name'=>"备注\n(仅我可见)",
  323. 'value'=>function($model){
  324. return $model['remark_me'];
  325. },
  326. ]
  327. ];
  328. $export['filename']=sprintf('/uploads/mobile_export/%s',session_create_id(date('Ymd-')).'.csv');
  329. $filePath=ROOT_PATH.'/public'.$export['filename'];
  330. $dir=str_replace(basename($filePath),'',$filePath);
  331. if(!is_dir($dir)){
  332. mkdir($dir,0777,true);
  333. }
  334. $csvFile=fopen($filePath,'w+');
  335. $headers=[];
  336. foreach ($header as $value){
  337. if(is_callable($value['value']) && self::visible($value)){
  338. $headers[]=$value;
  339. }
  340. }
  341. unset($header);
  342. mb_convert_variables('GBK','UTF-8',$headers);
  343. fputcsv($csvFile,array_column($headers,'name'));
  344. foreach ($list as $key=>$mobile){
  345. $mobile['proxy']=Admin::find($mobile['proxy_id']);
  346. $mobileData=[];
  347. foreach ($headers as $header){
  348. $mobileData[]=$header['value']($mobile);
  349. }
  350. echo $key.PHP_EOL;
  351. mb_convert_variables('gbk','utf-8',$mobileData);
  352. fputcsv($csvFile,$mobileData);
  353. }
  354. fclose($csvFile);
  355. $export['status']=2;
  356. $export->save();
  357. }
  358. protected static function visible($item){
  359. return empty($item['hidden']) || !$item['hidden'];
  360. }
  361. }