Compare commits

..

No commits in common. "7a2580ccde4cf7cd01f8ff62e757e4db47be7fd3" and "5601b839b1151b08a697b537283e29906464bf4b" have entirely different histories.

View File

@ -276,26 +276,6 @@ namespace APT.FM.WebApi.Controllers.Api.FM
else
express = express.And(e => !e.PROJECT_ID.HasValue);
}
List<Guid> listDepIDs = new List<Guid>();
if (this.Request.Headers.ContainsKey("Datarule"))
{
string strDeps = this.Request.Headers["Datarule"].ToString();
if (strDeps.Length > 0)
{
string[] arry = strDeps.Split(",");
foreach (var item in arry)
{
try
{
listDepIDs.Add(new Guid(item));
}
catch { }
}
}
express = express.And(e => e.DEPARTMENT_ID.HasValue && listDepIDs.Contains(e.DEPARTMENT_ID.Value));
}
var result = this.WitOrderPaged(express, pageFilter);
if (result.Data.Count() > 0)
{