DeliveryJournal: Fix ordering 2
This commit is contained in:
@ -17,10 +17,11 @@ namespace Elwig.Documents {
|
||||
}
|
||||
|
||||
public DeliveryJournal(string filter, IQueryable<DeliveryPart> deliveries) :
|
||||
this(filter, (IEnumerable<DeliveryPart>)deliveries
|
||||
this(filter, deliveries
|
||||
.Include(p => p.Delivery)
|
||||
.Include(p => p.Delivery.Member)
|
||||
.Include(p => p.Variant)) { }
|
||||
.Include(p => p.Variant)
|
||||
.ToList()) { }
|
||||
|
||||
public DeliveryJournal(AppDbContext ctx, DateOnly date) :
|
||||
this(date.ToString("dd.MM.yyyy"), ctx.DeliveryParts
|
||||
|
Reference in New Issue
Block a user