1、logo调整

2、质量管理NCR管理补充字段问题原因分析
This commit is contained in:
2025-10-22 16:38:02 +08:00
parent 39a3acd0d2
commit 46f56a27cb
27 changed files with 287 additions and 162 deletions
@@ -179,7 +179,15 @@ namespace FineUIPro.Web.CQMS.ProcessControl
if (string.IsNullOrEmpty(code))
{
errorInfos.Add(new ErrorInfo { Row = (i+2).ToString(), Column = "试压包编号", Reason = "此项为必填项!" });
errorInfos.Add(new ErrorInfo { Row = (i + 2).ToString(), Column = "试压包编号", Reason = "此项为必填项!" });
}
else
{
var q = Funs.DB.ProcessControl_TestPackageManagement.FirstOrDefault(x => x.ProjectId == this.CurrUser.LoginProjectId && x.TestPackageManagementCode == code);
if (q != null)
{
errorInfos.Add(new ErrorInfo { Row = (i + 2).ToString(), Column = "试压包编号", Reason = $"试压包编号({code})已存在!" });
}
}
if (!string.IsNullOrEmpty(unitWorkName))
{