施工交底补充交底人数
This commit is contained in:
@@ -32,7 +32,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
|
||||
public void BindGrid()
|
||||
{
|
||||
string strSql = @"select C.ConTechnologyDisclosureId, C.ProjectId, C.CNProfessionalId, C.DisclosureCode, C.DisclosureName,C.UnitId,C.DisclosureMan,C.DisclosureDate, C.UnitWorkId,C.AttendMan,
|
||||
C.CompileMan, C.CompileDate, C.RemarkCode,CN.ProfessionalName,u.UnitName,C.RemarkCode
|
||||
C.CompileMan, C.CompileDate, C.RemarkCode,CN.ProfessionalName,u.UnitName,C.RemarkCode,C.DisclosurePersonNum
|
||||
from Comprehensive_ConTechnologyDisclosure C
|
||||
left join Base_CNProfessional CN on C.CNProfessionalId=CN.CNProfessionalId
|
||||
left join Base_Unit u on u.UnitId = C.UnitId
|
||||
@@ -349,6 +349,10 @@ namespace FineUIPro.Web.CQMS.Comprehensive
|
||||
cell = row.CreateCell(8);
|
||||
cell.CellStyle = cellStyle;
|
||||
cell.SetCellValue(item.RemarkCode.HasValue ? item.RemarkCode.ToString() : "");//标志编号
|
||||
|
||||
cell = row.CreateCell(9);
|
||||
cell.CellStyle = cellStyle;
|
||||
cell.SetCellValue(item.DisclosurePersonNum.HasValue ? item.DisclosurePersonNum.ToString() : "");//交底人数
|
||||
i++;
|
||||
}
|
||||
// 第三步:写入文件流
|
||||
|
||||
Reference in New Issue
Block a user