Files
FA_WEB/SytelineSaAppEfDataModel/Dtos/CustomerOrderLineDto.cs
Piotr Kus 8a17423c9e * Added TranslatedStatus
* Added new status
* Managed CustomerOrder view
2025-02-02 08:42:35 +01:00

60 lines
2.5 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SytelineSaAppEfDataModel.Dtos
{
public class CustomerOrderLineDto : DtoBase
{
public string CoNum { get; set; }
public short CoLine { get; set; }
public string Item { get; set; }
public string CustItem { get; set; }
public string FeatStr { get; set; }
public decimal BlanketQty { get; set; }
public DateTime? EffDate { get; set; }
public DateTime? ExpDate { get; set; }
public decimal? ContPrice { get; set; }
public string Stat { get; set; }
public DateTime? PromiseDate { get; set; }
public string Pricecode { get; set; }
public string UM { get; set; }
public decimal BlanketQtyConv { get; set; }
public decimal? ContPriceConv { get; set; }
public string ShipSite { get; set; }
public byte NoteExistsFlag { get; set; }
public DateTime RecordDate { get; set; }
public Guid RowPointer { get; set; }
public string Description { get; set; }
public string ConfigId { get; set; }
public string CreatedBy { get; set; }
public string UpdatedBy { get; set; }
public DateTime CreateDate { get; set; }
public byte InWorkflow { get; set; }
public byte PrintKitComponents { get; set; }
public string NonInvAcct { get; set; }
public string NonInvAcctUnit1 { get; set; }
public string NonInvAcctUnit2 { get; set; }
public string NonInvAcctUnit3 { get; set; }
public string NonInvAcctUnit4 { get; set; }
public decimal? CostConv { get; set; }
public short? DaysShippedBeforeDueDateTolerance { get; set; }
public short? DaysShippedAfterDueDateTolerance { get; set; }
public decimal? ShippedOverOrderedQtyTolerance { get; set; }
public decimal? ShippedUnderOrderedQtyTolerance { get; set; }
public string ManufacturerId { get; set; }
public string ManufacturerItem { get; set; }
public string Uf_FKR_EDI_BLN_Address { get; set; }
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>();
}
}