|
|
@@ -338,7 +338,7 @@ class ExportViolationProductJobs implements ShouldQueue
|
|
|
$sheet->setCellValue('A2', '第一责任人');
|
|
|
$sheet->setCellValue('B2', '责任人');
|
|
|
$sheet->setCellValue('C2', '平台');
|
|
|
- $sheet->setCellValue('D2', '商品分类');
|
|
|
+ $sheet->setCellValue('D2', '商品类型');
|
|
|
$sheet->setCellValue('E2', '品牌名称');
|
|
|
$sheet->setCellValue('F2', '商品名称');
|
|
|
$sheet->setCellValue('G2', '库存');
|
|
|
@@ -351,16 +351,15 @@ class ExportViolationProductJobs implements ShouldQueue
|
|
|
$sheet->setCellValue('N2', '店铺名称');
|
|
|
$sheet->setCellValue('O2', '匿名店铺名称');
|
|
|
$sheet->setCellValue('P2', '公司名称');
|
|
|
- $sheet->setCellValue('Q2', '公司分类');
|
|
|
+ $sheet->setCellValue('Q2', '商业类型');
|
|
|
$sheet->setCellValue('R2', '信用代码');
|
|
|
- $sheet->setCellValue('S2', '省份');
|
|
|
- $sheet->setCellValue('T2', '城市');
|
|
|
- $sheet->setCellValue('U2', '溯源责任人');
|
|
|
- $sheet->setCellValue('V2', '处理状态');
|
|
|
- $sheet->setCellValue('W2', '任务状态');
|
|
|
- $sheet->setCellValue('X2', '记录时间');
|
|
|
- $sheet->setCellValue('Y2', '发货省份');
|
|
|
- $sheet->setCellValue('Z2', '发货城市');
|
|
|
+ $sheet->setCellValue('S2', '公司省');
|
|
|
+ $sheet->setCellValue('T2', '公司市');
|
|
|
+ $sheet->setCellValue('U2', '处理状态');
|
|
|
+ $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 = [
|
|
|
@@ -410,12 +409,11 @@ class ExportViolationProductJobs implements ShouldQueue
|
|
|
$sheet->setCellValue('R' . $row, $item['social_credit_code']);
|
|
|
$sheet->setCellValue('S' . $row, $item['province_name']);
|
|
|
$sheet->setCellValue('T' . $row, $item['city_name']);
|
|
|
- $sheet->setCellValue('U' . $row, $source_responsible_person_name);
|
|
|
- $sheet->setCellValue('V' . $row, isset($processing_status_text[$item['processing_status']]) ? $processing_status_text[$item['processing_status']] : '');
|
|
|
- $sheet->setCellValue('W' . $row, isset($status_text[$item['status']]) ? $status_text[$item['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('U' . $row, isset($processing_status_text[$item['processing_status']]) ? $processing_status_text[$item['processing_status']] : '');
|
|
|
+ $sheet->setCellValue('V' . $row, isset($status_text[$item['status']]) ? $status_text[$item['status']] : '');
|
|
|
+ $sheet->setCellValue('W' . $row, date('Y-m-d H:i:s', $item['insert_time']));
|
|
|
+ $sheet->setCellValue('X' . $row, $item['shipment_province_name']);
|
|
|
+ $sheet->setCellValue('Y' . $row, $item['shipment_city_name']);
|
|
|
$row++;
|
|
|
}
|
|
|
foreach (range('A', 'Z') as $column) {
|