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