生产工单 任务单 提报表 相关数量的类型 int 改成 decimal
This commit is contained in:
@@ -752,7 +752,7 @@ namespace Tnb.ProductionMgr
|
||||
{
|
||||
PrdReport prdReport = await _db.Queryable<PrdReport>().Where(x => x.barcode == barcode).FirstAsync();
|
||||
List<PrdReport> prdReports = await _db.Queryable<PrdReport>().Where(x => x.create_time <= prdReport.create_time && x.barcode != barcode && x.mo_task_id == mo_task_id).ToListAsync();
|
||||
int? beforeReportNum = prdReports.Sum(x => x.reported_qty);
|
||||
decimal? beforeReportNum = prdReports.Sum(x => x.reported_qty);
|
||||
List<string> prdFeedingIds = new();
|
||||
if (prdMoTask.schedule_type == 1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user