* Added TranslatedStatus

* Added new status
* Managed CustomerOrder view
This commit is contained in:
2025-02-02 08:42:35 +01:00
parent 75a9712e3c
commit 8a17423c9e
5 changed files with 241 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
namespace SytelineSaAppEfDataModel.Dtos
{
public class CustomerOrderDto
public class CustomerOrderDto : DtoBase
{
public string Type { get; set; }
public string CoNum { get; set; }
@@ -119,6 +119,8 @@
public string Uf_FKR_EDI_SenderCode { get; set; }
public string Uf_DocType { get; set; }
public string Uf_FKR_EDI_BuyerCode { get; set; }
public string TranslatedStatus => TranslateStatus(Stat);
public IEnumerable<CustomerOrderLineDto> CustomerOrderLines { get; set; } = new List<CustomerOrderLineDto>();
}