feat: 完善焊接质量检查和材料管理

补齐焊前专项审核和焊缝外观检测流程,统一质检查询、附件处理与材料明细导出,提升业务数据追溯和组件匹配使用效率。
This commit is contained in:
2026-08-10 17:58:55 +08:00
parent bd73295ff8
commit 2de696fad2
48 changed files with 2252 additions and 131 deletions
@@ -47,5 +47,42 @@ namespace WebAPI.Controllers.HJGL.WeldingManage
return responeData;
}
/// <summary>
/// 获取当前项目可选择的专项审核办理人。
/// </summary>
public Model.ResponeData GetSpecialReviewers(string projectId)
{
var responeData = new Model.ResponeData();
try
{
responeData.data = APIPreWeldInspectionService.GetSpecialReviewers(projectId);
}
catch (Exception ex)
{
responeData.code = 0;
responeData.message = ex.Message;
}
return responeData;
}
/// <summary>
/// 办结下料抽检专项审核。
/// </summary>
[HttpPost]
public Model.ResponeData ReviewRecord([FromBody] Model.PreWeldCuttingCheckReviewInput item)
{
var responeData = new Model.ResponeData();
try
{
responeData.data = APIPreWeldInspectionService.ReviewCuttingCheck(item);
}
catch (Exception ex)
{
responeData.code = 0;
responeData.message = ex.Message;
}
return responeData;
}
}
}