20240429 修改综合管理导入导出

This commit is contained in:
2024-04-29 19:13:54 +08:00
parent fc56b1f6c2
commit a3e123957d
48 changed files with 560 additions and 266 deletions
@@ -54,7 +54,8 @@ namespace FineUIPro.Web.CQMS.Comprehensive
doc.CompileMan,
doc.CompileDate,
doc.Status,
cnp.ProfessionalName "
cnp.ProfessionalName,
doc.RemarkCode "
+ @" FROM Comprehensive_DataReceivingDoc AS doc"
+ @" LEFT JOIN Base_CNProfessional AS cnp ON cnp.CNProfessionalId = doc.CNProfessionalId"
+ @" WHERE doc.ProjectId = @ProjectId";
@@ -514,7 +515,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
cell = row.CreateCell(19);
cell.CellStyle = cellStyle;
cell.SetCellValue(item.RemarkCode);//标志编号
cell.SetCellValue(item.RemarkCode.HasValue ? item.RemarkCode.ToString() : "");//标志编号
i++;
}