* Changed ScheduleOrdersGrid to show also details

* Changed Column with Recipient from code to name
This commit is contained in:
2025-02-18 15:33:37 +01:00
parent 53c612d2ce
commit e82de66aeb
3 changed files with 54 additions and 21 deletions

View File

@@ -15,8 +15,10 @@ namespace FaKrosnoEfDataModel.Dtos
public int DocNumber { get; set; }
public string? DocType { get; set; }
public string? RecipientCode => Recipient.RecipientCode;
public string RecipientCode => Recipient.RecipientCode;
public string? PurchaserCode => Recipient.Purchaser?.PurchaserCode;
public string RecipientName => Recipient.RecipientDesc;
public string? PurchaserName => Recipient.Purchaser?.PurchaserDesc;
public RecipientDto Recipient { get; set; }
public IList<ScheduleOrderDetailDto> ScheduleOrderDetails { get; set; }