|
@@ -1506,6 +1506,7 @@ public class OrderController : BaseController
|
|
public async Task<OrderScreenListDto> ScreenEntity(string id)
|
|
public async Task<OrderScreenListDto> ScreenEntity(string id)
|
|
{
|
|
{
|
|
var model = await _orderScreenRepository.Queryable(workflowFilter:false)
|
|
var model = await _orderScreenRepository.Queryable(workflowFilter:false)
|
|
|
|
+ .Includes(x=> x.Order)
|
|
.Includes(x => x.Workflow)
|
|
.Includes(x => x.Workflow)
|
|
.Includes(x => x.Visit, d => d.Order)
|
|
.Includes(x => x.Visit, d => d.Order)
|
|
.FirstAsync(x => x.Id == id);
|
|
.FirstAsync(x => x.Id == id);
|