质量报表时间
This commit is contained in:
@@ -47,6 +47,20 @@ namespace ZR.Admin.WebApi.Controllers.mes.qc.IQC
|
||||
return SUCCESS(itemTableDTO);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 写入工序时间 (首检)
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[HttpGet("writeProcessFlow_first")]
|
||||
public IActionResult WriteProcessFlow_first(string workorderID,DateTime time)
|
||||
{
|
||||
|
||||
int result = fQCService.WriteProcessFlow_first(workorderID, time);
|
||||
|
||||
return SUCCESS(result);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取 检测项 填充 (二检)
|
||||
/// </summary>
|
||||
@@ -286,12 +300,15 @@ namespace ZR.Admin.WebApi.Controllers.mes.qc.IQC
|
||||
|
||||
// 更改工单状态为完成态
|
||||
[HttpGet("generateQualityStatisticsTable")]
|
||||
public IActionResult GenerateQualityStatisticsTable(string workorderID,string team)
|
||||
public IActionResult GenerateQualityStatisticsTable(string workorderID,string team, DateTime firstQuality_time)
|
||||
{
|
||||
int result = fQCService.GenerateQualityStatisticsTable(workorderID, team);
|
||||
int result = fQCService.GenerateQualityStatisticsTable(workorderID, team, firstQuality_time);
|
||||
return SUCCESS(result);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user