Browse Source

35、流量卡订单导出不显示运营商中文

Cherry 2 years ago
parent
commit
6f8c7d0dd4
1 changed files with 2 additions and 1 deletions
  1. 2 1
      application/common/service/MobileOrderExport.php

+ 2 - 1
application/common/service/MobileOrderExport.php

@@ -1,6 +1,7 @@
 <?php
 namespace app\common\service;
 
+use app\admin\model\Mobile;
 use app\common\model\Area;
 use app\common\model\MobileOrder;
 use PhpOffice\PhpSpreadsheet\Cell\DataType;
@@ -201,7 +202,7 @@ class MobileOrderExport{
             [
                 'name'=>'运营商',
                 'value'=>function($model){
-                    return $model['brand'];
+                    return ($model['type']==2)?($model['brand']?Mobile::$flowBrand[$model['brand']]:''):$model['brand'];
                 },
             ],
             [