DeliveryJournalData: Fix modifier ordering
This commit is contained in:
@ -100,7 +100,7 @@ namespace Elwig.Models.Dtos {
|
||||
Gradation = (p.Oe, p.Kmw);
|
||||
Weight = p.Weight;
|
||||
IsNetWeight = p.IsNetWeight;
|
||||
Modifiers = string.Join(" / ", p.Modifiers.Order());
|
||||
Modifiers = string.Join(" / ", p.Modifiers.Select(m => m.Name).Order());
|
||||
Comment = d.Comment == null && p.Comment == null ? null : (d.Comment + (d.Comment != null && p.Comment != null ? " / " : "") + p.Comment);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user