warn clear
This commit is contained in:
@@ -323,8 +323,8 @@ namespace FPJ0000.JobReport_
|
||||
//ETC영역계산
|
||||
{
|
||||
//전체합산데이터와, 2~10까지의 데이터가 일치하지 않으면 그것이 ETC이다
|
||||
var etchr = item.Where(t => t.hrs != null).Sum(t => (float)t.hrs);
|
||||
var etcot = item.Where(t => t.ot != null).Sum(t => (float)t.ot);
|
||||
var etchr = item.Sum(t => (float)t.hrs);
|
||||
var etcot = item.Sum(t => (float)t.ot);
|
||||
|
||||
//현재데이터의 hrs의 합
|
||||
var subtotal = 0f;
|
||||
|
||||
Reference in New Issue
Block a user