* 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

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace SytelineSaAppEfDataModel.Dtos
{
public class CustomerOrderLineDto
public class CustomerOrderLineDto : DtoBase
{
public string CoNum { get; set; }
public short CoLine { get; set; }
@@ -50,6 +50,8 @@ namespace SytelineSaAppEfDataModel.Dtos
public string Uf_FKR_EDI_BLN_BoxType { get; set; }
public string Uf_FKR_EDI_BLN_FinalDestination { get; set; }
public int? Uf_FKR_EDI_BLN_QtyPerBox { get; set; }
public string TranslatedStatus => TranslateStatus(Stat);
public IEnumerable<CustomerOrderLineItemDto> CustomerOrderLineItems { get; set; } =
new List<CustomerOrderLineItemDto>();