234
This commit is contained in:
parent
6acfaa4ac0
commit
8025d589e8
@ -13,6 +13,7 @@ using APT.BaseData.Domain.Entities.FM;
|
||||
using APT.BaseData.Domain.ApiModel.Platform;
|
||||
using APT.Infrastructure.Api.Redis;
|
||||
using APT.Migrations;
|
||||
using APT.Utility;
|
||||
|
||||
namespace APT.BaseData.Services.Services.FM
|
||||
{
|
||||
@ -1537,15 +1538,15 @@ namespace APT.BaseData.Services.Services.FM
|
||||
|
||||
if (isLastDeal && taskLast != null)
|
||||
{
|
||||
this.UpdateEntityByTenant(taskLast, "003");
|
||||
this.UpdateEntityByTenant(taskLast, HeadHelper.HeadtelnetCode);
|
||||
}
|
||||
if (taskNext != null)
|
||||
{
|
||||
this.AddEntityByTenant(taskNext, "003");
|
||||
this.AddEntityByTenant(taskNext, HeadHelper.HeadtelnetCode);
|
||||
}
|
||||
if (listSync != null && listSync.Count() > 0)
|
||||
{
|
||||
this.AddEntitiesByTenant(listSync, "003");
|
||||
this.AddEntitiesByTenant(listSync, HeadHelper.HeadtelnetCode);
|
||||
}
|
||||
}
|
||||
catch (Exception ex) { }
|
||||
|
||||
@ -174,7 +174,7 @@ namespace APT.FM.WebApi.Controllers.Api
|
||||
appFilter.Order = DbOrder.DESC;
|
||||
appFilter.Sort = "CREATE_TIME";
|
||||
//查询指定租户
|
||||
appFilter.SpecifyTenant = "003";
|
||||
appFilter.SpecifyTenant = HeadHelper.HeadtelnetCode;
|
||||
appFilter.IsSpecifyDb = true;
|
||||
appFilter.IgnoreOrgRule = true;
|
||||
var appVersion = this.GetEntity<T_PF_APP_VERSION>(null, appFilter, "Nav_Files.Nav_ImgFile");
|
||||
|
||||
@ -30,7 +30,7 @@ namespace APT.PF.WebApiControllers.Api.PF
|
||||
{
|
||||
BaseFilter filter = new BaseFilter();
|
||||
filter.IsSpecifyDb = true;
|
||||
filter.SpecifyTenant = "003";
|
||||
filter.SpecifyTenant = HeadHelper.HeadtelnetCode;
|
||||
filter.IgnoreOrgRule = true;
|
||||
filter.Order = DbOrder.DESC;
|
||||
filter.Sort = "CREATE_TIME";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user