@@ -1429,7 +1429,7 @@ rationItemDAO.prototype.batchUpdateSectionIdFromExcel = async function (data) {
}
sectionIDs.push(sectionId);
// 取费专业
- let feeType = tmp[1] || '';
+ let feeType = isNaN(tmp[1]) ? undefined : +(tmp[1] || '');
let name = tmp[4];
name = name ? name : '';
let caption = tmp[5];