From e68be74be41f6795d1642d0a5b46e0a0023ba3a7 Mon Sep 17 00:00:00 2001 From: denghy Date: Fri, 19 Apr 2019 14:19:05 +0800 Subject: [PATCH] FlowPoolExport --- app/Domains/Virtual/Exports/FlowPoolExport.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/app/Domains/Virtual/Exports/FlowPoolExport.php b/app/Domains/Virtual/Exports/FlowPoolExport.php index bbc217f0..6ebc6af0 100644 --- a/app/Domains/Virtual/Exports/FlowPoolExport.php +++ b/app/Domains/Virtual/Exports/FlowPoolExport.php @@ -27,7 +27,6 @@ class FlowPoolExport extends AbstractExport implements FromCollection, WithHeadi 'id' => $item->id, 'name' => $item->name, 'carrier_operator_name' => $item->carrier_operator_name, - 'shared_name' => $item->shared_name, 'company_name' => $item->company_name, 'minimum_flows' => $item->minimum_flows, 'excess_flows' => $item->excess_flows, @@ -61,7 +60,6 @@ class FlowPoolExport extends AbstractExport implements FromCollection, WithHeadi 'ID', '名称', '运营商', - '共享类型', '客户名称', '保底流量', '超出流量', @@ -78,9 +76,9 @@ class FlowPoolExport extends AbstractExport implements FromCollection, WithHeadi public function columnFormats(): array { return [ + 'G' => NumberFormat::FORMAT_NUMBER_00, 'H' => NumberFormat::FORMAT_NUMBER_00, - 'I' => NumberFormat::FORMAT_NUMBER_00, - 'K' => NumberFormat::FORMAT_NUMBER_00, + 'J' => NumberFormat::FORMAT_NUMBER_00, ]; } }