修改一版
parent
cece45c503
commit
63e8a631f3
|
@ -647,7 +647,7 @@ namespace IRaCIS.Core.Infra.EFCore
|
||||||
public async Task<string> SetEnum(Guid trilaid, string identification, string json)
|
public async Task<string> SetEnum(Guid trilaid, string identification, string json)
|
||||||
{
|
{
|
||||||
var list = await (from u in _dbContext.FrontAuditConfig.Where(x => x.Identification == identification)
|
var list = await (from u in _dbContext.FrontAuditConfig.Where(x => x.Identification == identification)
|
||||||
join p in _dbContext.FrontAuditConfig.Where(x => x.Code != "AuditState" && (x.DictionaryCode != null && x.DictionaryCode != string.Empty && x.DictionaryType != null && x.DictionaryType != string.Empty)) on u.Id equals p.ParentId
|
join p in _dbContext.FrontAuditConfig.Where(x => x.Code != "AuditState" && x.EnumType=="Date") on u.Id equals p.ParentId
|
||||||
select new
|
select new
|
||||||
{
|
{
|
||||||
Key = p.Code,
|
Key = p.Code,
|
||||||
|
@ -944,7 +944,7 @@ namespace IRaCIS.Core.Infra.EFCore
|
||||||
public async Task<DataInspection> SetDataInspectionDateType(DataInspection Data)
|
public async Task<DataInspection> SetDataInspectionDateType(DataInspection Data)
|
||||||
{
|
{
|
||||||
var list = await (from parent in _dbContext.FrontAuditConfig.AsQueryable().Where(x => x.Identification == Data.Identification)
|
var list = await (from parent in _dbContext.FrontAuditConfig.AsQueryable().Where(x => x.Identification == Data.Identification)
|
||||||
join child in _dbContext.FrontAuditConfig.AsQueryable().Where(x => x.DateType != null && x.DateType != string.Empty) on parent.Id equals child.ParentId
|
join child in _dbContext.FrontAuditConfig.AsQueryable().Where(x => x.EnumType== "Date") on parent.Id equals child.ParentId
|
||||||
select new DateDto()
|
select new DateDto()
|
||||||
{
|
{
|
||||||
Code = child.Code,
|
Code = child.Code,
|
||||||
|
|
Loading…
Reference in New Issue