refactor(report): 优化监督检验数据处理逻辑

- 移除了不必要的控制台日志和调试器断点
- 添加了顺序填充逻辑,以处理未匹配的剩余ID
- 确保infoList最多包含3条记录
- 删除了大量未使用的注释代码
master
Tuzki 6 months ago
parent ddf29db404
commit e2213e031a
  1. 410
      src/views/report/eventList/printDemo.vue

@ -376,14 +376,13 @@
// 3. ID
let remainingIds = [...availableIds];
console.log('识别到的编号集合',remainingIds)
console.log('监督证书合集',supervisionItems)
formData.infoList = supervisionItems.map(item => {
// 4.
const tempInfoList = supervisionItems.map(item => {
const supervisionProductId = item.productBatchNumber?.trim() || '';
let matchedId = '';
debugger
//
//
if (supervisionProductId) {
const exactMatch = remainingIds.find(id => id === supervisionProductId);
const partialMatch = remainingIds.find(id =>
@ -398,7 +397,10 @@
matchedId = partialMatch;
remainingIds = remainingIds.filter(id => id !== partialMatch);
}
} else if (remainingIds.length > 0) {
}
// ID
if (!matchedId && remainingIds.length > 0) {
matchedId = remainingIds.shift();
}
@ -410,7 +412,17 @@
};
});
formData.infoList = Array.isArray(formData.infoList) ? formData.infoList : [];
// 5. 使ID3
while (tempInfoList.length < 3 && remainingIds.length > 0) {
tempInfoList.push({
manufacturer: '',
productionDate: '',
productId: remainingIds.shift(),
internalId: ''
});
}
formData.infoList = tempInfoList.slice(0, 3); // 3
} catch (e) {
console.error('infoList处理失败:', e);
formData.infoList = [];
@ -563,286 +575,27 @@
infoList: []
});
console.log('合并结果', mergedData);
// const mergedData = {
// "registrationCategory": "",
// "equipmentType": "",
// "productName": "",
// "cylinderQuantity": 3,
// "fillingMedium": "CNG",
// "nominalWorkingPressure": "20MPa",
// "cylinderVolume": "152.80",
// "manufacturer": "",
// "productionDate": "",
// "productId": "",
// "internalId": "",
// "contractor": "",
// "supervisionAgency": "/ / ",
// "userUnit": "",
// "userAddress": "鹿鹿5",
// "unifiedSocialCode": "130122196812140018",
// "postalCode": "050200",
// "licensePlate": "AH7U88",
// "vehicleVin": "",
// "commissionDate": "2025-03-18",
// "telephone": "",
// "safetyManager": "",
// "mobilePhone": "",
// "certificateList": [
// {
// "id": null,
// "registrationCategory": null,
// "equipmentType": "",
// "productName": "",
// "cylinderQuantity": "1",
// "fillingMedium": "CNG",
// "nominalWorkingPressure": "20MPa",
// "cylinderVolume": "71.6",
// "manufacturer": null,
// "productionDate": null,
// "productId": "C",
// "internalId": null,
// "contractor": null,
// "supervisionAgency": null,
// "userUnit": null,
// "userAddress": null,
// "unifiedSocialCode": null,
// "postalCode": null,
// "licensePlate": null,
// "vehicleVin": null,
// "commissionDate": null,
// "telephone": null,
// "safetyManager": null,
// "mobilePhone": null,
// "infoList": null,
// "createTime": null,
// "productBatchNumber": null,
// "type": "productQualified"
// },
// {
// "id": null,
// "registrationCategory": null,
// "equipmentType": "",
// "productName": "",
// "cylinderQuantity": "1",
// "fillingMedium": "CNG",
// "nominalWorkingPressure": "20MPa",
// "cylinderVolume": "81.2",
// "manufacturer": null,
// "productionDate": null,
// "productId": "128240542163",
// "internalId": null,
// "contractor": null,
// "supervisionAgency": null,
// "userUnit": null,
// "userAddress": null,
// "unifiedSocialCode": null,
// "postalCode": null,
// "licensePlate": null,
// "vehicleVin": null,
// "commissionDate": null,
// "telephone": null,
// "safetyManager": null,
// "mobilePhone": null,
// "infoList": null,
// "createTime": null,
// "productBatchNumber": null,
// "type": "productQualified"
// },
// {
// "id": null,
// "registrationCategory": null,
// "equipmentType": "",
// "productName": "",
// "cylinderQuantity": "1",
// "fillingMedium": "CNG",
// "nominalWorkingPressure": "20MPa",
// "cylinderVolume": null,
// "manufacturer": null,
// "productionDate": null,
// "productId": "128240707176",
// "internalId": null,
// "contractor": null,
// "supervisionAgency": null,
// "userUnit": null,
// "userAddress": null,
// "unifiedSocialCode": null,
// "postalCode": null,
// "licensePlate": null,
// "vehicleVin": null,
// "commissionDate": null,
// "telephone": null,
// "safetyManager": null,
// "mobilePhone": null,
// "infoList": null,
// "createTime": null,
// "productBatchNumber": null,
// "type": "productQualified"
// },
// {
// "id": null,
// "registrationCategory": null,
// "equipmentType": "",
// "productName": "",
// "cylinderQuantity": "3",
// "fillingMedium": null,
// "nominalWorkingPressure": null,
// "cylinderVolume": "180",
// "manufacturer": null,
// "productionDate": null,
// "productId": "128240707176/128240541174/128240542163",
// "internalId": null,
// "contractor": "",
// "supervisionAgency": null,
// "userUnit": null,
// "userAddress": null,
// "unifiedSocialCode": null,
// "postalCode": null,
// "licensePlate": null,
// "vehicleVin": null,
// "commissionDate": null,
// "telephone": null,
// "safetyManager": null,
// "mobilePhone": null,
// "infoList": null,
// "createTime": null,
// "productBatchNumber": null,
// "type": "certificateOfApproval"
// },
// {
// "id": null,
// "registrationCategory": null,
// "equipmentType": "",
// "productName": "",
// "cylinderQuantity": null,
// "fillingMedium": null,
// "nominalWorkingPressure": null,
// "cylinderVolume": null,
// "manufacturer": "",
// "productionDate": "20241101",
// "productId": null,
// "internalId": null,
// "contractor": null,
// "supervisionAgency": "",
// "userUnit": null,
// "userAddress": null,
// "unifiedSocialCode": null,
// "postalCode": null,
// "licensePlate": null,
// "vehicleVin": null,
// "commissionDate": null,
// "telephone": null,
// "safetyManager": null,
// "mobilePhone": null,
// "infoList": null,
// "createTime": null,
// "productBatchNumber": "128240541",
// "type": "supervisionAndInspection"
// },
// {
// "id": null,
// "registrationCategory": null,
// "equipmentType": "",
// "productName": "",
// "cylinderQuantity": null,
// "fillingMedium": null,
// "nominalWorkingPressure": null,
// "cylinderVolume": null,
// "manufacturer": "",
// "productionDate": "20241001",
// "productId": null,
// "internalId": null,
// "contractor": null,
// "supervisionAgency": "",
// "userUnit": null,
// "userAddress": null,
// "unifiedSocialCode": null,
// "postalCode": null,
// "licensePlate": null,
// "vehicleVin": null,
// "commissionDate": null,
// "telephone": null,
// "safetyManager": null,
// "mobilePhone": null,
// "infoList": null,
// "createTime": null,
// "productBatchNumber": "128240707",
// "type": "supervisionAndInspection"
// },
// {
// "id": null,
// "registrationCategory": null,
// "equipmentType": "",
// "productName": "",
// "cylinderQuantity": null,
// "fillingMedium": null,
// "nominalWorkingPressure": null,
// "cylinderVolume": null,
// "manufacturer": "",
// "productionDate": "20241101",
// "productId": null,
// "internalId": null,
// "contractor": null,
// "supervisionAgency": "",
// "userUnit": null,
// "userAddress": null,
// "unifiedSocialCode": null,
// "postalCode": null,
// "licensePlate": null,
// "vehicleVin": null,
// "commissionDate": null,
// "telephone": null,
// "safetyManager": null,
// "mobilePhone": null,
// "infoList": null,
// "createTime": null,
// "productBatchNumber": "128240542",
// "type": "supervisionAndInspection"
// }
// ],
// "infoList": [
// {
// "manufacturer": "",
// "productionDate": "20241101",
// "productId": "128240541174",
// "internalId": ""
// },
// {
// "manufacturer": "",
// "productionDate": "20241001",
// "productId": "128240707176",
// "internalId": ""
// },
// {
// "manufacturer": "",
// "productionDate": "20241101",
// "productId": "128240542163",
// "internalId": ""
// }
// ],
// "total_pages": 2,
// "processing_time": "2.46s+2.62s"
// }
// const mergedData = {
// "registrationCategory": "",
// "equipmentType": "",
// "productName": "",
// "cylinderQuantity": 2,
// "fillingMedium": "CNG",
// "nominalWorkingPressure": "20MPa",
// "cylinderVolume": "100.70",
// "cylinderQuantity": 1,
// "fillingMedium": "LNG",
// "nominalWorkingPressure": "",
// "cylinderVolume": "1350.00",
// "manufacturer": "",
// "productionDate": "",
// "productId": "",
// "internalId": "",
// "contractor": "",
// "supervisionAgency": "/ 绿",
// "userUnit": "",
// "userAddress": "鹿3",
// "unifiedSocialCode": "130185198912101360",
// "contractor": "",
// "supervisionAgency": "",
// "userUnit": "",
// "userAddress": "3",
// "unifiedSocialCode": "",
// "postalCode": "050200",
// "licensePlate": "A0SC80",
// "vehicleVin": "LS4ASL2K5RG809594",
// "commissionDate": "2025-02-10",
// "licensePlate": "A4647W",
// "vehicleVin": "LFWSRX9L8RIF18215",
// "commissionDate": "2024-11-91",
// "telephone": "",
// "safetyManager": "",
// "mobilePhone": "",
@ -853,12 +606,12 @@
// "equipmentType": "",
// "productName": "",
// "cylinderQuantity": "1",
// "fillingMedium": "CNG",
// "nominalWorkingPressure": "20MPa",
// "cylinderVolume": "70.4",
// "fillingMedium": "LNG",
// "nominalWorkingPressure": null,
// "cylinderVolume": null,
// "manufacturer": null,
// "productionDate": null,
// "productId": "C",
// "productId": "24B1350-060-107",
// "internalId": null,
// "contractor": null,
// "supervisionAgency": null,
@ -883,12 +636,12 @@
// "equipmentType": "",
// "productName": "",
// "cylinderQuantity": "1",
// "fillingMedium": "CNG",
// "nominalWorkingPressure": "20MPa",
// "cylinderVolume": "30.3",
// "fillingMedium": "LNG",
// "nominalWorkingPressure": "",
// "cylinderVolume": "1350",
// "manufacturer": null,
// "productionDate": null,
// "productId": "NI054039",
// "productId": null,
// "internalId": null,
// "contractor": null,
// "supervisionAgency": null,
@ -914,44 +667,14 @@
// "productName": "",
// "cylinderQuantity": null,
// "fillingMedium": null,
// "nominalWorkingPressure": "20MPa",
// "cylinderVolume": null,
// "manufacturer": null,
// "productionDate": null,
// "productId": "NI054039/128240627132",
// "internalId": null,
// "contractor": "",
// "supervisionAgency": null,
// "userUnit": null,
// "userAddress": null,
// "unifiedSocialCode": null,
// "postalCode": null,
// "licensePlate": null,
// "vehicleVin": "LS4ASL2K5RG809594",
// "commissionDate": null,
// "telephone": null,
// "safetyManager": null,
// "mobilePhone": null,
// "infoList": null,
// "createTime": null,
// "productBatchNumber": null,
// "type": "certificateOfApproval"
// },
// {
// "id": null,
// "registrationCategory": null,
// "equipmentType": "",
// "productName": "",
// "cylinderQuantity": null,
// "fillingMedium": null,
// "nominalWorkingPressure": null,
// "cylinderVolume": null,
// "manufacturer": "",
// "productionDate": "20240901",
// "manufacturer": "",
// "productionDate": "20240820",
// "productId": null,
// "internalId": null,
// "contractor": null,
// "supervisionAgency": "",
// "supervisionAgency": "",
// "userUnit": null,
// "userAddress": null,
// "unifiedSocialCode": null,
@ -964,51 +687,21 @@
// "mobilePhone": null,
// "infoList": null,
// "createTime": null,
// "productBatchNumber": "128240627",
// "type": "supervisionAndInspection"
// },
// {
// "id": null,
// "registrationCategory": null,
// "equipmentType": "",
// "productName": "",
// "cylinderQuantity": null,
// "fillingMedium": null,
// "nominalWorkingPressure": null,
// "cylinderVolume": null,
// "manufacturer": "绿",
// "productionDate": "20240801",
// "productId": null,
// "internalId": null,
// "contractor": null,
// "supervisionAgency": "绿",
// "userUnit": null,
// "userAddress": null,
// "unifiedSocialCode": null,
// "postalCode": null,
// "licensePlate": null,
// "vehicleVin": null,
// "commissionDate": null,
// "telephone": null,
// "safetyManager": null,
// "mobilePhone": null,
// "infoList": null,
// "createTime": null,
// "productBatchNumber": "NI054",
// "productBatchNumber": "",
// "type": "supervisionAndInspection"
// }
// ],
// "infoList": [
// {
// "manufacturer": "",
// "productionDate": "20240901",
// "productId": "NI054039",
// "manufacturer": "",
// "productionDate": "20240820",
// "productId": "",
// "internalId": ""
// },
// {
// "manufacturer": "绿",
// "productionDate": "20240801",
// "productId": "128240627132",
// "manufacturer": "",
// "productionDate": "",
// "productId": "",
// "internalId": ""
// },
// {
@ -1017,10 +710,9 @@
// "productId": "",
// "internalId": ""
// }
// ],
// "total_pages": 1,
// "processing_time": "7.94s"
// ]
// }
this.calculateCylinderQuantity(mergedData);//
this.processFillingMedium(mergedData);//
this.processNominalPressure(mergedData);//

Loading…
Cancel
Save