|
@ -365,7 +365,8 @@ namespace Coldairarrow.Business.HuiYan |
|
|
TeamDate = b.CreateTime, |
|
|
TeamDate = b.CreateTime, |
|
|
TeamOverDate = b.UpdateDate, |
|
|
TeamOverDate = b.UpdateDate, |
|
|
PriceTaskUserId = b.PriceTaskUserId, |
|
|
PriceTaskUserId = b.PriceTaskUserId, |
|
|
TeamItemState = (TeamItemState?)b.State |
|
|
TeamItemState = (TeamItemState?)b.State, |
|
|
|
|
|
PriceTaskCreateDate=b.PriceTaskCreateDate |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
select = select.BuildExtendSelectExpre(); |
|
|
select = select.BuildExtendSelectExpre(); |
|
@ -377,7 +378,10 @@ namespace Coldairarrow.Business.HuiYan |
|
|
select @select.Invoke(b, a); |
|
|
select @select.Invoke(b, a); |
|
|
|
|
|
|
|
|
var where = LinqHelper.True<TaskInfoDto>(); |
|
|
var where = LinqHelper.True<TaskInfoDto>(); |
|
|
where = where.And(c => c.CreateTime >= start && c.CreateTime <= end); |
|
|
|
|
|
|
|
|
start=new DateTime(start.Year, start.Month, start.Day); |
|
|
|
|
|
end = new DateTime(end.Year, end.Month, end.Day, 23, 59, 59); |
|
|
|
|
|
where = where.And(c => c.PriceTaskCreateDate >= start && c.PriceTaskCreateDate <= end); |
|
|
var list = q.Where(where).ToList(); |
|
|
var list = q.Where(where).ToList(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|