Browse Source

[智价云] 采集时间清洗时间导出顺序调整

tangyuanwang 16 giờ trước cách đây
mục cha
commit
ac7afab668

+ 8 - 8
app/Jobs/Manager/Other/ExportLowPriceGoodsJobs.php

@@ -366,10 +366,10 @@ class ExportLowPriceGoodsJobs implements ShouldQueue
         $sheet->setCellValue('U2', '公司省');
         $sheet->setCellValue('V2', '公司市');
         $sheet->setCellValue('W2', '处理状态');
-        $sheet->setCellValue('X2', '记录时间');
-        $sheet->setCellValue('Y2', '店铺');
-        $sheet->setCellValue('Z2', '店铺市');
-        $sheet->setCellValue('AA2', '采集时间');
+        $sheet->setCellValue('X2', '店铺省');
+        $sheet->setCellValue('Y2', '店铺');
+        $sheet->setCellValue('Z2', '采集时间');
+        $sheet->setCellValue('AA2', '清洗时间');
 
         //平台0=全部,1=淘宝,2=京东,3=拼多多,4=美团,5=药师帮,6=1药城,7=药九九,8=药易购,9=药帮忙,10=熊猫药药11=药房网
         $platform_data = [
@@ -422,10 +422,10 @@ class ExportLowPriceGoodsJobs implements ShouldQueue
             $sheet->setCellValue('U' . $row, $item['province_name']);
             $sheet->setCellValue('V' . $row, $item['city_name']);
             $sheet->setCellValue('W' . $row, isset($processing_status_text[$item['processing_status']]) ? $processing_status_text[$item['processing_status']] : '');
-            $sheet->setCellValue('X' . $row, date('Y-m-d H:i:s', $item['insert_time']));
-            $sheet->setCellValue('Y' . $row, $item['shipment_province_name']);
-            $sheet->setCellValue('Z' . $row, $item['shipment_city_name']);
-            $sheet->setCellValue('AA' . $row, date('Y-m-d H:i:s', $item['collection_time']));
+            $sheet->setCellValue('X' . $row, $item['shipment_province_name']);
+            $sheet->setCellValue('Y' . $row, $item['shipment_city_name']);
+            $sheet->setCellValue('Z' . $row, date('Y-m-d H:i:s', $item['collection_time']));
+            $sheet->setCellValue('AA' . $row, date('Y-m-d H:i:s', $item['insert_time']));
             $row++;
         }
         foreach (range('A', 'AA') as $column) {

+ 8 - 8
app/Jobs/Manager/Other/ExportViolationProductJobs.php

@@ -360,10 +360,10 @@ class ExportViolationProductJobs implements ShouldQueue
         $sheet->setCellValue('S2', '公司省');
         $sheet->setCellValue('T2', '公司市');
         $sheet->setCellValue('U2', '处理状态');
-        $sheet->setCellValue('V2', '记录时间');
-        $sheet->setCellValue('W2', '店铺');
-        $sheet->setCellValue('X2', '店铺市');
-        $sheet->setCellValue('Y2', '采集时间');
+        $sheet->setCellValue('V2', '店铺省');
+        $sheet->setCellValue('W2', '店铺');
+        $sheet->setCellValue('X2', '采集时间');
+        $sheet->setCellValue('Y2', '清洗时间');
 
         //平台0=全部,1=淘宝,2=京东,3=拼多多,4=美团,5=药师帮,6=1药城,7=药九九,8=药易购,9=药帮忙,10=熊猫药药11=药房网
         $platform_data = [
@@ -414,10 +414,10 @@ class ExportViolationProductJobs implements ShouldQueue
             $sheet->setCellValue('S' . $row, $item['province_name']);
             $sheet->setCellValue('T' . $row, $item['city_name']);
             $sheet->setCellValue('U' . $row, isset($processing_status_text[$item['processing_status']]) ? $processing_status_text[$item['processing_status']] : '');
-            $sheet->setCellValue('V' . $row, date('Y-m-d H:i:s', $item['insert_time']));
-            $sheet->setCellValue('W' . $row, $item['shipment_province_name']);
-            $sheet->setCellValue('X' . $row, $item['shipment_city_name']);
-            $sheet->setCellValue('Y' . $row, date('Y-m-d H:i:s', $item['collection_time']));
+            $sheet->setCellValue('V' . $row, $item['shipment_province_name']);
+            $sheet->setCellValue('W' . $row, $item['shipment_city_name']);
+            $sheet->setCellValue('X' . $row, date('Y-m-d H:i:s', $item['collection_time']));
+            $sheet->setCellValue('Y' . $row, date('Y-m-d H:i:s', $item['insert_time']));
             $row++;
         }
         foreach (range('A', 'Y') as $column) {