报表
This commit is contained in:
parent
a5eed05199
commit
c8d7d7ceb4
@ -12347,7 +12347,7 @@ namespace APT.SC.WebApi.Controllers.Api.BIController
|
|||||||
run.FINISH_RATE = temp.ToString("0.0");
|
run.FINISH_RATE = temp.ToString("0.0");
|
||||||
var temp2 = total == 0 ? 0 : (double)finish / total * 100;
|
var temp2 = total == 0 ? 0 : (double)finish / total * 100;
|
||||||
run.NORMAL_FINISH_RATE = temp2.ToString("0.0");
|
run.NORMAL_FINISH_RATE = temp2.ToString("0.0");
|
||||||
run.TOTAL_QTY = total;
|
run.TOTAL_QTY = finish + overFinish;
|
||||||
monthRuns.Add(run);
|
monthRuns.Add(run);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -12363,7 +12363,7 @@ namespace APT.SC.WebApi.Controllers.Api.BIController
|
|||||||
run.FINISH_RATE = temp.ToString("0");
|
run.FINISH_RATE = temp.ToString("0");
|
||||||
var temp2 = total == 0 ? 0 : (double)finish / total * 100;
|
var temp2 = total == 0 ? 0 : (double)finish / total * 100;
|
||||||
run.NORMAL_FINISH_RATE = temp2.ToString("0");
|
run.NORMAL_FINISH_RATE = temp2.ToString("0");
|
||||||
run.TOTAL_QTY = total;
|
run.TOTAL_QTY = finish + overFinish;
|
||||||
monthRuns.Add(run);
|
monthRuns.Add(run);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user