|
|
|
@ -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. 追加剩余未使用的ID(最多补满3条) |
|
|
|
|
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": "2024年11月01日", |
|
|
|
|
// "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": "2024年10月01日", |
|
|
|
|
// "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": "2024年11月01日", |
|
|
|
|
// "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": "2024年11月01日", |
|
|
|
|
// "productId": "128240541174", |
|
|
|
|
// "internalId": "" |
|
|
|
|
// }, |
|
|
|
|
// { |
|
|
|
|
// "manufacturer": "衡阳金化高压容器股份有限公司", |
|
|
|
|
// "productionDate": "2024年10月01日", |
|
|
|
|
// "productId": "128240707176", |
|
|
|
|
// "internalId": "" |
|
|
|
|
// }, |
|
|
|
|
// { |
|
|
|
|
// "manufacturer": "衡阳金化高压容器股份有限公司", |
|
|
|
|
// "productionDate": "2024年11月01日", |
|
|
|
|
// "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": "2024年09月01日", |
|
|
|
|
// "manufacturer": "长春致远新能源装备股份有限公司", |
|
|
|
|
// "productionDate": "2024年08月20日", |
|
|
|
|
// "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": "2024年08月01日", |
|
|
|
|
// "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": "2024年09月01日", |
|
|
|
|
// "productId": "NI054039", |
|
|
|
|
// "manufacturer": "长春致远新能源装备股份有限公司", |
|
|
|
|
// "productionDate": "2024年08月20日", |
|
|
|
|
// "productId": "", |
|
|
|
|
// "internalId": "" |
|
|
|
|
// }, |
|
|
|
|
// { |
|
|
|
|
// "manufacturer": "安徽绿动能源股份有限公司", |
|
|
|
|
// "productionDate": "2024年08月01日", |
|
|
|
|
// "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);//工作压力 |
|
|
|
|