MobileExport.php 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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 MobileExport{
  12. public static function export($list,$export){
  13. $admin=Admin::get($export['admin_id']);
  14. $excel=new Spreadsheet();
  15. $header=[
  16. [
  17. 'name'=>'ID',
  18. 'value'=>function($model){
  19. return $model['id'];
  20. },
  21. ],
  22. [
  23. 'name'=>'手机号',
  24. 'value'=>function($model){
  25. return $model['no'];
  26. },
  27. ],
  28. [
  29. 'name'=>'省份',
  30. 'value'=>function($model){
  31. return $model['province'];
  32. },
  33. ],
  34. [
  35. 'name'=>'归属地',
  36. 'value'=>function($model){
  37. return $model['city'];
  38. },
  39. ],
  40. [
  41. 'name'=>'运营商',
  42. 'value'=>function($model){
  43. return $model['network'];
  44. },
  45. ],
  46. [
  47. 'name'=>'供应商',
  48. 'value'=>function($model){
  49. return Admin::where('id',$model['proxy_id'])->value('nickname');
  50. },
  51. 'hidden'=>!$admin['is_manager']
  52. ],
  53. [
  54. 'name'=>'卡品牌',
  55. 'value'=>function($model){
  56. return $model['brand'];
  57. },
  58. ],
  59. [
  60. 'name'=>'规律',
  61. 'value'=>function($row){
  62. $rules=[];
  63. foreach (MobileConstant::getFilters() as $rule=>$field){
  64. foreach (array_values($field) as $column){
  65. if($row[$column]==1){
  66. $rules[]=$rule;
  67. }
  68. }
  69. }
  70. $rules=array_values(array_unique($rules));
  71. return implode(",",$rules);
  72. },
  73. ],
  74. [
  75. 'name'=>'套餐信息',
  76. 'value'=>function($model){
  77. return MobileInfo::where('mobile_id',$model['id'])->value('describe');
  78. },
  79. ],
  80. [
  81. 'name'=>'原价',
  82. 'value'=>function($model){
  83. return $model['amount_original'];
  84. },
  85. ],
  86. [
  87. 'name'=>'底价',
  88. 'value'=>function($model){
  89. return $model['amount_di'];
  90. },
  91. ],
  92. [
  93. 'name'=>'代理价',
  94. 'value'=>function($model){
  95. return $model['amount_proxy'];
  96. },
  97. 'hidden'=>!$admin['is_manager']
  98. ],
  99. [
  100. 'name'=>'售价',
  101. 'value'=>function($model){
  102. return $model['amount_base'];
  103. },
  104. ],
  105. [
  106. 'name'=>'秒杀价',
  107. 'value'=>function($model){
  108. return $model['amount_kill'];
  109. },
  110. ],
  111. [
  112. 'name'=>'预存话费',
  113. 'value'=>function($model){
  114. return $model['amount_charge'];
  115. },
  116. ],
  117. [
  118. 'name'=>'备注',
  119. 'value'=>function($model){
  120. return $model['remark'];
  121. },
  122. ],
  123. [
  124. 'name'=>'置顶',
  125. 'value'=>function($model)use($admin){
  126. if($admin['is_manager']){
  127. return $model['top_time']?'是':'否';
  128. }else{
  129. return MobileSub::where('sub_admin_id',$admin['id'])->where('mobile_id',$model['id'])->value('sub_top_time')?'是':'否';
  130. }
  131. },
  132. ],
  133. [
  134. 'name'=>'推荐',
  135. 'value'=>function($model)use($admin){
  136. if($admin['is_manager']){
  137. return $model['rec_time']?'是':'否';
  138. }else{
  139. return MobileSub::where('sub_admin_id',$admin['id'])->where('mobile_id',$model['id'])->value('sub_rec_time')?'是':'否';
  140. }
  141. },
  142. ],
  143. [
  144. 'name'=>'号码状态',
  145. 'value'=>function($model)use($admin){
  146. $status=Mobile::beautiStatus();
  147. return $status[$model['status']];
  148. },
  149. ],
  150. [
  151. 'name'=>'更新时间',
  152. 'value'=>function($model){
  153. return date('Y-m-d H:i:s',$model['update_time']);
  154. },
  155. ],
  156. [
  157. 'name'=>'上架时间',
  158. 'value'=>function($model){
  159. return date('Y-m-d H:i:s',$model['create_time']);
  160. },
  161. ],
  162. [
  163. 'name'=>'排序',
  164. 'value'=>function($model){
  165. return $model['sort'];
  166. },
  167. ],
  168. [
  169. 'name'=>'预占通道',
  170. 'value'=>function($model){
  171. return $model['hold_chan'];
  172. },
  173. ],
  174. [
  175. 'name'=>'预占用户ID',
  176. 'value'=>function($model){
  177. return $model['hold_user'];
  178. },
  179. ],
  180. [
  181. 'name'=>'上传用户',
  182. 'value'=>function($model){
  183. return $model['admin_id'];
  184. },
  185. ],
  186. ];
  187. $headers=[];
  188. $sheet=$excel->getActiveSheet();
  189. $headerPoint='A';
  190. foreach ($header as $value){
  191. if(is_callable($value['value']) && self::visible($value)){
  192. $headers[]=$value;
  193. $sheet->setCellValue(sprintf("%s%d",$headerPoint,1),$value['name']);
  194. $headerPoint++;
  195. }
  196. }
  197. unset($header);
  198. $y=2;
  199. foreach ($list as $key=>$value){
  200. $x='A';
  201. if(IS_CLI){
  202. echo "{$y}".PHP_EOL;
  203. }
  204. foreach ($headers as $_key=>$_value){
  205. $val=$_value['value']($value);
  206. $sheet->setCellValue(sprintf("%s%d", $x, $y), $val);
  207. $x++;
  208. }
  209. $y++;
  210. unset($list[$key]);
  211. }
  212. unset($list);
  213. $sheet->getColumnDimension('A')->setAutoSize(true);
  214. $xlsx=new Xlsx($excel);
  215. $export['filename']=sprintf('/uploads/mobile_export/%s',session_create_id(date('Ymd-')).'.xlsx');
  216. $filePath=ROOT_PATH.'/public'.$export['filename'];
  217. $dir=str_replace(basename($filePath),'',$filePath);
  218. if(!is_dir($dir)){
  219. mkdir($dir,0777,true);
  220. }
  221. $xlsx->save($filePath);
  222. $export['status']=2;
  223. $export->save();
  224. }
  225. protected static function visible($item){
  226. return empty($item['hidden']) || !$item['hidden'];
  227. }
  228. }