|
@@ -465,6 +465,8 @@ class ViolationProduct extends Controller
|
|
|
$sheet->setCellValue('T2', '处理状态');
|
|
$sheet->setCellValue('T2', '处理状态');
|
|
|
$sheet->setCellValue('U2', '任务状态');
|
|
$sheet->setCellValue('U2', '任务状态');
|
|
|
$sheet->setCellValue('V2', '记录时间');
|
|
$sheet->setCellValue('V2', '记录时间');
|
|
|
|
|
+ $sheet->setCellValue('W2', '发货省份');
|
|
|
|
|
+ $sheet->setCellValue('X2', '发货城市');
|
|
|
|
|
|
|
|
$platform_data = [
|
|
$platform_data = [
|
|
|
'0' => '全部',
|
|
'0' => '全部',
|
|
@@ -511,6 +513,8 @@ class ViolationProduct extends Controller
|
|
|
$sheet->setCellValue('T' . $row, isset($processing_status_text[$item['processing_status']]) ? $processing_status_text[$item['processing_status']] : '');
|
|
$sheet->setCellValue('T' . $row, isset($processing_status_text[$item['processing_status']]) ? $processing_status_text[$item['processing_status']] : '');
|
|
|
$sheet->setCellValue('U' . $row, isset($status_text[$item['status']]) ? $status_text[$item['status']] : '');
|
|
$sheet->setCellValue('U' . $row, isset($status_text[$item['status']]) ? $status_text[$item['status']] : '');
|
|
|
$sheet->setCellValue('V' . $row, date('Y-m-d H:i:s', $item['insert_time']));
|
|
$sheet->setCellValue('V' . $row, date('Y-m-d H:i:s', $item['insert_time']));
|
|
|
|
|
+ $sheet->setCellValue('W' . $row, $item['shipment_city_name']);
|
|
|
|
|
+ $sheet->setCellValue('X' . $row, $item['shipment_city_name']);
|
|
|
$row++;
|
|
$row++;
|
|
|
}
|
|
}
|
|
|
foreach (range('A', 'P') as $column) {
|
|
foreach (range('A', 'P') as $column) {
|