* 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 CustomerOrderLineItemDto
public class CustomerOrderLineItemDto : DtoBase
{
public string CoNum { get; set; }
public short CoLine { get; set; }
@@ -129,5 +129,7 @@ namespace SytelineSaAppEfDataModel.Dtos
public string Uf_LOC_159_DestinationPoint { get; set; }
public string Uf_Status { get; set; }
public string Uf_FKR_EDI_ITEM_PalletCode { get; set; }
public string TranslatedStatus => TranslateStatus(Stat);
}
}