Compare commits

..

No commits in common. "a48e80fdd993a9ef73692f67433527350489beef" and "5b9bc66c20c562145a81651f27579a005e8db69a" have entirely different histories.

View File

@ -159,8 +159,8 @@ namespace APT.FO.WebApi.Controllers.Api.FO
else else
{ {
var currTeam = GetEntity<T_FM_TEAM>(t => t.DEPARTMENT_ID == entity.DEPARTMENT_ID); var currTeam = GetEntity<T_FM_TEAM>(t => t.DEPARTMENT_ID == entity.DEPARTMENT_ID);
entity.TEAM_ID = currTeam?.ID; entity.TEAM_ID = currTeam.ID;
TeamName = currTeam?.NAME; TeamName = currTeam.NAME;
} }
if (entity.NAME == null) if (entity.NAME == null)
{ {