|
|
@@ -172,7 +172,8 @@ public class StagingSetoutGrid : DynamicDataGrid<Setout>
|
|
|
{
|
|
|
if (_job is not null)
|
|
|
criteria.Add(Filter<Setout>.Where(x => x.Job.ID).IsEqualTo(_job.ID));
|
|
|
- // criteria.Add(Filter<Setout>.Where(x => x.Status).IsNotEqualTo(SetoutStatus.Approved));
|
|
|
+ else
|
|
|
+ criteria.Add(Filter<Setout>.Where(x => x.Status).IsNotEqualTo(SetoutStatus.Approved));
|
|
|
base.Reload(criteria, columns, ref sort, token, action);
|
|
|
}
|
|
|
|