using CPRNIMS.Infrastructure.Entities.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.ViewModel.PO { public class POVM : CommonProperties { public byte messCode { get; set; } public long ItemCodeId { get; set; } public long PRDetailsId { get; set; } public long CanvassSupplierId { get; set; } public string? StringPRNo { get; set; } public object? Data { get; set; } public long PODetailId { get; set; } public long CanvassId { get; set; } public long ItemCartId { get; set; } public int DepartmentId { get; set; } public string? SupplierName { get; set; } public string? ContactNo { get; set; } public string? ContactPerson { get; set; } public string? Manufacturer { get; set; } public int ItemCount { get; set; } public short CurrencyId { get; set; } public string? Department { get; set; } public string? ItemCategoryName { get; set; } public DateTime CommitmentDate { get; set; } public string? Terms { get; set; } public bool IsArchived { get; set; } public string? UserId { get; set; } public string? ItemName { get; set; } public int CartItemCount { get; set; } public int SupplierId { get; set; } public string? EmailAddress { get; set; } public string? ItemSpecs { get; set; } public string? ItemDescription { get; set; } public string? Specification { get; set; } public int UOMId { get; set; } public int ItemColorId { get; set; } public short Status { get; set; } public string? StatusName { get; set; } public bool IsActive { get; set; } public bool Approver { get; set; } public bool SuggestedSupplier { get; set; } public long ItemNo { get; set; } public short ItemLocalId { get; set; } public string? ItemLocalName { get; set; } public short ItemTypeId { get; set; } public byte PRTypeId { get; set; } public decimal Qty { get; set; } public decimal POQty { get; set; } public byte PackagingTypeId { get; set; } public string? ItemTypeName { get; set; } public short ItemClassId { get; set; } public string? ItemClassName { get; set; } public string? UOMName { get; set; } public string? ItemColorName { get; set; } public long ItemAttachId { get; set; } public string? ItemAttachPath { get; set; } public DateTime DateNeeded { get; set; } public long PRNo { get; set; } public long CanvassDetailId { get; set; } public string? NewPRNo { get; set; } public string? Remarks { get; set; } public string? PORemarks { get; set; } public bool IsApproved { get; set; } public bool IsPrepared { get; set; } public bool IsManual { get; set; } public string? Message { get; set; } public string? StatusResponse { get; set; } public string? Currency { get; set; } public string? Address { get; set; } public decimal Price { get; set; } public decimal UnitPrice { get; set; } public decimal TotalAmount { get; set; } public decimal Amount { get; set; } public decimal Discount { get; set; } public string? AggrePRNo { get; set; } public string? AggreItemNo { get; set; } public string? AggreItemName { get; set; } public string? SupplierAddress { get; set; } public string? RequestedBy { get; set; } public string? PurchaseBy { get; set; } public string? Purposes { get; set; } public byte POTypeId { get; set; } public string? POType { get; set; } public string? DeliverTo { get; set; } public DateTime DeliveryDate { get; set; } public DateTime CurrentDate { get; set; } public string? URL { get; set; } public string? ProfInvoiceNo { get; set; } public byte PodId { get; set; } public byte IncotermsId { get; set; } public string? IncotermsName { get; set; } public byte? PaymentTermsId { get; set; } public byte? ShippingInstructionId { get; set; } public DateTime ProfInvoiceDate { get; set; } public string? PortOfDischarge { get; set; } public string? PaymentTerms { get; set; } public string? ShippingInstruction { get; set; } public string? IncoTerms { get; set; } public string? AmountInWords { get; set; } public string? URLImg { get; set; } public int CPONoId { get; set; } public string? PONo { get; set; } public byte AppsId { get; set; } public byte DocRequirementId { get; set; } public string? DocRequirements { get; set; } public string? DocName { get; set; } public int OtherChargesId { get; set; } public string? OtherChargesName { get; set; } public string? PONoVatInc { get; set; } public string? PONoVatEx { get; set; } public string? IPONoVatInc { get; set; } public string? IPONoVatEx { get; set; } public int PRItemCount { get; set; } public int POItemCount { get; set; } public int RRItemCount { get; set; } public int WOPOItemCount { get; set; } public string? POCompletionPercent { get; set; } public string? RRCompletionPercent { get; set; } public DateTime To { get; set; } public DateTime From { get; set; } public DateTime PRDate { get; set; } public string? PODate { get; set; } public string? RRDate { get; set; } public long RRNo { get; set; } public bool IsUpdate { get; set; } public decimal Quantity { get; set; } public decimal QuantityReceived { get; set; } public long POId { get; set; } public string? POTypeName { get; set; } public string? CurrencyName { get; set; } public string? Signature { get; set; } public string? Subject { get; set; } public string? CC { get; set; } public string? Password { get; set; } public string? Server { get; set; } public string? AggreQty { get; set; } public string? CountryOrigin { get; set; } public DocRequirementList? DocRequiredList { get; set; } public POChargesList? OtherChargesList { get; set; } public PRItemList? PRItemList { get; set; } public POList? POList { get; set; } } }