feat(api): JobControl добавлена сортировка имени аттрибута
This commit is contained in:
@@ -88,10 +88,10 @@ namespace PARR.API.Controllers.V1
|
|||||||
|
|
||||||
query = query
|
query = query
|
||||||
.Include(t => t.UnitFilters)
|
.Include(t => t.UnitFilters)
|
||||||
.ThenInclude(t => t.FieldFilters)
|
.ThenInclude(t => t.FieldFilters.OrderBy(o => o.UnitField!.AihitName))
|
||||||
.ThenInclude(t => t.UnitField)
|
.ThenInclude(t => t.UnitField)
|
||||||
.Include(t => t.UnitFilters)
|
.Include(t => t.UnitFilters)
|
||||||
.ThenInclude(t => t.RelationshipFilters)
|
.ThenInclude(t => t.RelationshipFilters.OrderBy(o => o.UnitField!.AihitName))
|
||||||
.ThenInclude(t => t.UnitField);
|
.ThenInclude(t => t.UnitField);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -125,10 +125,10 @@ namespace PARR.API.Controllers.V1
|
|||||||
.Include(t => t.Tnk)
|
.Include(t => t.Tnk)
|
||||||
.Include(t => t.Group)
|
.Include(t => t.Group)
|
||||||
.Include(t => t.UnitFilters)
|
.Include(t => t.UnitFilters)
|
||||||
.ThenInclude(t => t.FieldFilters)
|
.ThenInclude(t => t.FieldFilters.OrderBy(o=>o.UnitField!.AihitName))
|
||||||
.ThenInclude(t => t.UnitField)
|
.ThenInclude(t => t.UnitField)
|
||||||
.Include(t => t.UnitFilters)
|
.Include(t => t.UnitFilters)
|
||||||
.ThenInclude(t => t.RelationshipFilters)
|
.ThenInclude(t => t.RelationshipFilters.OrderBy(o => o.UnitField!.AihitName))
|
||||||
.FirstOrDefaultAsync(t => t.Id == id);
|
.FirstOrDefaultAsync(t => t.Id == id);
|
||||||
|
|
||||||
if (job == null)
|
if (job == null)
|
||||||
@@ -185,10 +185,10 @@ namespace PARR.API.Controllers.V1
|
|||||||
.Include(t => t.Tnk)
|
.Include(t => t.Tnk)
|
||||||
.Include(t => t.Group)
|
.Include(t => t.Group)
|
||||||
.Include(t => t.UnitFilters)
|
.Include(t => t.UnitFilters)
|
||||||
.ThenInclude(t => t.FieldFilters)
|
.ThenInclude(t => t.FieldFilters.OrderBy(o => o.UnitField!.AihitName))
|
||||||
.ThenInclude(t => t.UnitField)
|
.ThenInclude(t => t.UnitField)
|
||||||
.Include(t => t.UnitFilters)
|
.Include(t => t.UnitFilters)
|
||||||
.ThenInclude(t => t.RelationshipFilters)
|
.ThenInclude(t => t.RelationshipFilters.OrderBy(o => o.UnitField!.AihitName))
|
||||||
.FirstOrDefaultAsync(t => t.Id == job.Id);
|
.FirstOrDefaultAsync(t => t.Id == job.Id);
|
||||||
|
|
||||||
var locationUri = uriService.GetUri(ApiRoutes.Job.Get, ApiRoutes.Job.getParam, createdJob!.Id);
|
var locationUri = uriService.GetUri(ApiRoutes.Job.Get, ApiRoutes.Job.getParam, createdJob!.Id);
|
||||||
|
|||||||
Reference in New Issue
Block a user