Files
FA_WEB/SytelineSaAppEfDataModel/Dtos/EdiCustomerOrderLineDto.cs
trencik91 47f37d016d * Fixed DTOs issues
* Added service to save data
2025-08-28 14:50:46 +02:00

50 lines
1.9 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AutoMapper.Configuration.Annotations;
namespace SytelineSaAppEfDataModel.Dtos
{
public class EdiCustomerOrderLineDto : DtoBase
{
public string? CustomerOrderNumber { get; set; }
public int CustomerOrderLine { get; set; }
public string? Item { get; set; }
public string? CustomerItemNumber { get; set; }
public string? FeatStr { get; set; }
public decimal? BlanketQty { get; set; }
public DateTime? EffectiveDate { get; set; }
public DateTime? ExpirationDate { get; set; }
public decimal? ContPrice { get; set; }
public string? Status { get; set; }
public DateTime? PromiseDate { get; set; }
public string? PriceCode { get; set; }
public string? Uom { get; set; }
public decimal? BlanketQtyReleased { get; set; }
public decimal? ContPriceReleased { get; set; }
public decimal? QtySent { get; set; }
public string? SentCode { get; set; }
public string? NonAppliedData { get; set; }
public byte NoteExistsFlag { get; set; }
public DateTime RecordDate { get; set; }
public Guid RowPointer { get; set; }
public string? Description { get; set; }
public string? CreatedBy { get; set; }
public string? UpdatedBy { get; set; }
public DateTime? CreateDate { get; set; }
public byte InWorkflow { get; set; }
public string? BoxType { get; set; }
public string? Address { get; set; }
public string? FinalDestination { get; set; }
public int? QtyPerBox { get; set; }
public string TranslatedStatus => TranslateStatus(Status);
[Ignore] public string VatCode { get; set; }
public IEnumerable<EdiCustomerOrderLineItemDto> EdiCustomerOrderLineItems { get; set; }
}
}