MobileOrderExport.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. <?php
  2. namespace app\common\service;
  3. use app\admin\model\Mobile;
  4. use app\common\model\Area;
  5. use app\common\model\MobileOrder;
  6. use PhpOffice\PhpSpreadsheet\Cell\DataType;
  7. use PhpOffice\PhpSpreadsheet\Spreadsheet;
  8. use PhpOffice\PhpSpreadsheet\Worksheet\Drawing;
  9. use PhpOffice\PhpSpreadsheet\Writer\Xlsx;
  10. class MobileOrderExport{
  11. public static function export($list,$admin){
  12. $excel=new Spreadsheet();
  13. $header=[
  14. [
  15. 'name'=>'ID',
  16. 'value'=>function($model){
  17. return $model['id'];
  18. },
  19. ],
  20. [
  21. 'name'=>'来源渠道',
  22. 'value'=>function($model){
  23. return $model['s_id'];
  24. },
  25. ],
  26. [
  27. 'name'=>'产品编码',
  28. 'value'=>function($model){
  29. return $model['mobile']?$model['mobile']['product_no']:'';
  30. },
  31. ],
  32. [
  33. 'name'=>'商品信息',
  34. 'value'=>function($model){
  35. if($model['type']==1) {
  36. return $model['no'];
  37. }else{
  38. return $model['info']['mobile']['name'];
  39. }
  40. },
  41. ],
  42. [
  43. 'name'=>'订单号',
  44. 'value'=>function($model){
  45. return $model['order_no'];
  46. },
  47. ],
  48. [
  49. 'name'=>'姓名',
  50. 'value'=>function($model){
  51. return $model['name'];
  52. },
  53. ],
  54. [
  55. 'name'=>'收货地址',
  56. 'value'=>function($model){
  57. return $model['address'];
  58. },
  59. ],
  60. [
  61. 'name'=>'联系电话',
  62. 'value'=>function($model){
  63. return $model['phone'];
  64. },
  65. ],
  66. [
  67. 'name'=>'身份证号码',
  68. 'value'=>function($model){
  69. return $model['id_no'];
  70. },
  71. ],
  72. /*[
  73. 'name'=>'地区',
  74. 'value'=>function($model){
  75. return Area::getNameString($model['city']);
  76. },
  77. ],*/
  78. [
  79. 'name'=>'证件照片',
  80. 'value'=>function($model){
  81. return $model['open_idcard_face_img'];
  82. },
  83. 'image'=>1,
  84. ],
  85. [
  86. 'name'=>'下单备注',
  87. 'value'=>function($model){
  88. return $model['remark'];
  89. },
  90. ],
  91. [
  92. 'name'=>'下单时间',
  93. 'value'=>function($model){
  94. return date('Y-m-d H:i:s',$model['create_time']);
  95. },
  96. ],
  97. [
  98. 'name'=>'供应商',
  99. 'value'=>function($model){
  100. return $model['proxy']['nickname']??'-';
  101. },
  102. 'hidden'=>$admin['is_sub'],
  103. ],
  104. [
  105. 'name'=>'底价',
  106. 'value'=>function($model){
  107. return $model['amount_di'];
  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['info']['mobile']['is_activity']?$model['info']['mobile']['amount_kill']:$model['amount_base'];
  120. },
  121. ],
  122. [
  123. 'name'=>'订单价格',
  124. 'value'=>function($model){
  125. return $model['amount'];
  126. },
  127. ],
  128. [
  129. 'name'=>'付款状态',
  130. 'value'=>function($model){
  131. // return $model['status']==0?'待付款':'已付款';
  132. if($model['status'] == 50){
  133. return '已关闭';
  134. }elseif ($model['status'] == 0){
  135. return '待付款';
  136. }else{
  137. return '已付款';
  138. }
  139. },
  140. ],
  141. [
  142. 'name'=>'付款时间',
  143. 'value'=>function($model){
  144. if(empty($model['pay_time'])){
  145. return '';
  146. }
  147. return date('Y-m-d H:i:s',$model['pay_time']);
  148. },
  149. ],
  150. [
  151. 'name'=>'付款方式',
  152. 'value'=>function($model){
  153. return MobileOrder::$payTypes[$model['pay_type']];
  154. },
  155. ],
  156. [
  157. 'name'=>'处理状态',
  158. 'value'=>function($model){
  159. if($model['type']==1){
  160. return MobileOrder::$status[$model['status']];
  161. }
  162. return MobileOrder::flowStatus()[$model['status']];
  163. },
  164. ],
  165. /*[
  166. 'name'=>'处理备注',
  167. 'value'=>function($model){
  168. return $model['remark_sub'];
  169. },
  170. ],*/
  171. [
  172. 'name'=>'快递公司',
  173. 'value'=>function($model){
  174. return $model['trans_name'];
  175. },
  176. ],
  177. [
  178. 'name'=>'快递单号',
  179. 'value'=>function($model){
  180. return $model['trans_no'];
  181. },
  182. ],
  183. [
  184. 'name'=>'下单域名',
  185. 'value'=>function($model){
  186. if($model['s_id']){
  187. return h5_link("home/{$model['s_id']}");
  188. }
  189. return h5_link();
  190. },
  191. ],
  192. /*[
  193. 'name'=>'号码归属地',
  194. 'value'=>function($model){
  195. if(empty($model['info'])){
  196. return '';
  197. }
  198. return $model['info']['mobile']['province'].$model['info']['mobile']['city'];
  199. },
  200. ],*/
  201. /*[
  202. 'name'=>'预存话费',
  203. 'value'=>function($model){
  204. return $model['amount_charge'];
  205. },
  206. ],*/
  207. [
  208. 'name'=>'运营商',
  209. 'value'=>function($model){
  210. $brand = array_key_exists($model['brand'],Mobile::$flowBrand)?Mobile::$flowBrand[$model['brand']]:$model['brand'];
  211. return ($model['type']==2)?($model['brand']?$brand:''):$model['brand'];
  212. },
  213. ],
  214. [
  215. 'name'=>'详细介绍',
  216. 'value'=>function($model){
  217. if(empty($model['info'])){
  218. return '';
  219. }
  220. return $model['info']['info']['describe'];
  221. },
  222. ],
  223. /*[
  224. 'name'=>'跟单员',
  225. 'value'=>function($model){
  226. $names=[];
  227. foreach ($model['admin'] as $admin){
  228. $names[]=$admin['admin']['nickname'];
  229. }
  230. return implode(',',$names);
  231. },
  232. ],*/
  233. [
  234. 'name'=>'主播',
  235. 'value'=>function($model){
  236. return $model['anchor']['name']??'';
  237. },
  238. 'hidden'=>$admin['is_sub'],
  239. ],
  240. [
  241. 'name'=>$admin['is_sub']?'主播':'分站主播',
  242. 'value'=>function($model){
  243. return $model['sub_anchor']['mobile_anchor']['name']??'';
  244. }
  245. ],
  246. [
  247. 'name'=>'分站备注',
  248. 'value'=>function($model){
  249. $arr=[];
  250. foreach ($model['sub_remark']??[] as $remark){
  251. $arr[]=sprintf("%s-%s:%s",$remark['create_time_format'],$remark['admin']['nickname']??'已删除',$remark['content']);
  252. }
  253. return implode(PHP_EOL,$arr);
  254. }
  255. ],
  256. [
  257. 'name'=>'客服记录',
  258. 'value'=>function($model){
  259. $arr=[];
  260. foreach ($model['operation']??[] as $remark){
  261. $arr[]=sprintf("%s-%s:%s",$remark['create_time_format'],$remark['admin']['nickname']??'已删除',$remark['content']);
  262. }
  263. return implode(PHP_EOL,$arr);
  264. }
  265. ],
  266. [
  267. 'name'=>'敢探号结果',
  268. 'value'=>function($model){
  269. $gantanhao = $model['gantanhao_data_notify'] && $model['status'] == 110 ? json_decode($model['gantanhao_data_notify'], true) : '';
  270. return $gantanhao ? $gantanhao['reason'] : '';
  271. },
  272. ],
  273. [
  274. 'name'=>'生产号码',
  275. 'value'=>function($model){
  276. $gantanhao = $model['gantanhao_data_notify'] ? json_decode($model['gantanhao_data_notify'], true) : '';
  277. return $gantanhao ? $gantanhao['plan_mobile_produced'] : '';
  278. },
  279. ],
  280. ];
  281. $headers=[];
  282. foreach ($header as $value){
  283. if(is_callable($value['value']) && self::visible($value)){
  284. $headers[]=$value;
  285. }
  286. }
  287. $sheet=$excel->getActiveSheet();
  288. $headerPoint='A';
  289. foreach ($headers as $key=>$value){
  290. $sheet->setCellValue($cellKey=sprintf("%s%d",$headerPoint,1),$value['name']);
  291. $vk=2;
  292. foreach ($list as $_key=>$_value){
  293. $val=$value['value']($_value);
  294. $sheet->setCellValueExplicit($cellKeyVal=sprintf("%s%d", $headerPoint, $vk), $val,DataType::TYPE_STRING);
  295. if(in_array($headerPoint,['AD','AE'])) {
  296. $sheet->getStyle($cellKeyVal)->getAlignment()->setWrapText(true);
  297. $sheet->getColumnDimension($headerPoint)->setWidth(50);
  298. }
  299. /* if(!empty($value['image'])){
  300. $d=new Drawing();
  301. $d->setName($value['name'])->setDescription($value['name'])->setPath($val)->setWidth(100)->setHeight(100);
  302. }else {
  303. $sheet->setCellValue(sprintf("%s%d", $row, $vk), $val);
  304. }*/
  305. $vk++;
  306. }
  307. $headerPoint++;
  308. }
  309. $sheet->getColumnDimension('A')->setAutoSize(true);
  310. $xlsx=new Xlsx($excel);
  311. header('Content-Type: application/vnd.ms-excel;charset=UTF-8');
  312. $xlsx->save('php://output');
  313. return response()
  314. ->data('')
  315. ->contentType('application/vnd.ms-excel');
  316. }
  317. protected static function visible($item){
  318. return empty($item['hidden']) || !$item['hidden'];
  319. }
  320. }