|
@@ -350,13 +350,14 @@ class ViolationProduct extends Controller
|
|
|
$sheet->setCellValue('H2', '链接地址');
|
|
$sheet->setCellValue('H2', '链接地址');
|
|
|
$sheet->setCellValue('I2', '店铺名称');
|
|
$sheet->setCellValue('I2', '店铺名称');
|
|
|
$sheet->setCellValue('J2', '公司名称');
|
|
$sheet->setCellValue('J2', '公司名称');
|
|
|
- $sheet->setCellValue('K2', '信用代码');
|
|
|
|
|
- $sheet->setCellValue('L2', '省份');
|
|
|
|
|
- $sheet->setCellValue('M2', '城市');
|
|
|
|
|
- $sheet->setCellValue('N2', '溯源责任人');
|
|
|
|
|
- $sheet->setCellValue('O2', '处理状态');
|
|
|
|
|
- $sheet->setCellValue('P2', '任务状态');
|
|
|
|
|
- $sheet->setCellValue('Q2', '记录时间');
|
|
|
|
|
|
|
+ $sheet->setCellValue('K2', '公司分类');
|
|
|
|
|
+ $sheet->setCellValue('L2', '信用代码');
|
|
|
|
|
+ $sheet->setCellValue('M2', '省份');
|
|
|
|
|
+ $sheet->setCellValue('N2', '城市');
|
|
|
|
|
+ $sheet->setCellValue('O2', '溯源责任人');
|
|
|
|
|
+ $sheet->setCellValue('P2', '处理状态');
|
|
|
|
|
+ $sheet->setCellValue('Q2', '任务状态');
|
|
|
|
|
+ $sheet->setCellValue('R2', '记录时间');
|
|
|
|
|
|
|
|
$platform_data = [
|
|
$platform_data = [
|
|
|
'0' => '全部',
|
|
'0' => '全部',
|
|
@@ -391,13 +392,14 @@ class ViolationProduct extends Controller
|
|
|
$sheet->setCellValue('H' . $row, $item['link_url']);
|
|
$sheet->setCellValue('H' . $row, $item['link_url']);
|
|
|
$sheet->setCellValue('I' . $row, $item['store_name']);
|
|
$sheet->setCellValue('I' . $row, $item['store_name']);
|
|
|
$sheet->setCellValue('J' . $row, $item['company_name']);
|
|
$sheet->setCellValue('J' . $row, $item['company_name']);
|
|
|
- $sheet->setCellValue('K' . $row, $item['social_credit_code']);
|
|
|
|
|
- $sheet->setCellValue('L' . $row, $item['province_name']);
|
|
|
|
|
- $sheet->setCellValue('M' . $row, $item['city_name']);
|
|
|
|
|
- $sheet->setCellValue('N' . $row, $source_responsible_person_name);
|
|
|
|
|
- $sheet->setCellValue('O' . $row, isset($processing_status_text[$item['processing_status']]) ? $processing_status_text[$item['processing_status']] : '');
|
|
|
|
|
- $sheet->setCellValue('P' . $row, isset($status_text[$item['status']]) ? $status_text[$item['status']] : '');
|
|
|
|
|
- $sheet->setCellValue('Q' . $row, date('Y-m-d H:i:s', $item['insert_time']));
|
|
|
|
|
|
|
+ $sheet->setCellValue('K' . $row, $item['company_category_name']);
|
|
|
|
|
+ $sheet->setCellValue('L' . $row, $item['social_credit_code']);
|
|
|
|
|
+ $sheet->setCellValue('M' . $row, $item['province_name']);
|
|
|
|
|
+ $sheet->setCellValue('N' . $row, $item['city_name']);
|
|
|
|
|
+ $sheet->setCellValue('O' . $row, $source_responsible_person_name);
|
|
|
|
|
+ $sheet->setCellValue('P' . $row, isset($processing_status_text[$item['processing_status']]) ? $processing_status_text[$item['processing_status']] : '');
|
|
|
|
|
+ $sheet->setCellValue('Q' . $row, isset($status_text[$item['status']]) ? $status_text[$item['status']] : '');
|
|
|
|
|
+ $sheet->setCellValue('R' . $row, date('Y-m-d H:i:s', $item['insert_time']));
|
|
|
$row++;
|
|
$row++;
|
|
|
}
|
|
}
|
|
|
foreach (range('A', 'P') as $column) {
|
|
foreach (range('A', 'P') as $column) {
|