using CPRNIMS.Infrastructure.Dto.PR; 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.PR { public class PRVM : CommonProperties { public byte messCode; public long ItemCodeId { get; set; } public long PRDetailsId { get; set; } public string? PRBy { get; set; } public DateTime PRDate { get; set; } public string? PRTypeName { get; set; } public string? AttestedBy { get; set; } public string? ApprovedBy { get; set; } public string? CanvassDate { get; set; } public string? CanvassBy { get; set; } public string? PONo { get; set; } public string? PODate { get; set; } public string? RRDate { get; set; } public string? ReceivedDate { get; set; } public string? ReceivedBy { get; set; } public string? AcknowledgeBy { get; set; } public string? AcknowledgeDate { get; set; } public string? Specification { get; set; } public string? POBy { get; set; } public bool IsArchived { get; set; } public long RRId { get; set; } public string? RequestedBy { get; set; } public long RRNo { get; set; } public long POId { get; set; } public byte DocTypeId { get; set; } public string? Department { get; set; } public decimal TotalAmount { get; set; } public string? ItemCategoryName { get; set; } public string? UserId { get; set; } public string? ItemName { get; set; } public string? ItemDescription { get; set; } public short Status { get; set; } public short ReceivingStatus { get; set; } public string? StatusName { get; set; } public string? NewPRNo { get; set; } public DateTime DateNeeded { get; set; } public bool IsActive { get; set; } public long ItemNo { get; set; } public string? ItemLocalName { get; set; } public byte PRTypeId { get; set; } public decimal Qty { get; set; } public decimal QuantityReceived { get; set; } public string? ItemTypeName { get; set; } public string? ItemClassName { get; set; } public short ItemClassId { get; set; } public string? UOMName { get; set; } public string? ItemColorName { get; set; } public string? ItemAttachPath { get; set; } public long PRNo { get; set; } public string? Message { get; set; } public string? StatusResponse { get; set; } public string? Remarks { get; set; } public bool Reject { get; set; } public bool Upload { get; set; } public bool Encoded { get; set; } public bool Edit { get; set; } public bool Queue { get; set; } public string? URL { get; set; } public string? AggrePRNo { get; set; } public string? AggreItemNo { get; set; } public string? AggreItemName { get; set; } public string? EmailAddress { get; set; } public string? SupplierName { get; set; } public string? POTypeName { get; set; } public byte POTypeId { get; set; } public long CanvassDetailId { get; set; } public long RRDetailId { get; set; } public long PRDetailId { get; set; } public decimal Quantity { get; set; } public decimal UnitPrice { get; set; } public decimal GrossAmount { get; set; } public string? DRNo { get; set; } public string? CurrencyName { get; set; } public decimal RemainingQty { get; set; } public string? PaymentTerms { get; set; } public bool IsCompleted { get; set; } public string? PRCreatedDate { get; set; } public string? PRApprover1 { get; set; } public string? PRApprover2 { get; set; } public string? CanvassCreatedDate { get; set; } public string? CanvassSubmitedDate { get; set; } public string? SuppBidDate { get; set; } public string? CanvassApprovedDate { get; set; } public string? POPreparationDate { get; set; } public string? PoCreatedDate { get; set; } public string? PoApprovedDate { get; set; } public string? POForwardedDate { get; set; } public string? ItemArrivedDate { get; set; } public string? PONumber { get; set; } public byte DashboardId { get; set; } public int ForCanvassItem { get; set; } public int WOSupResponseCount { get; set; } public int PRNoCount { get; set; } public int ForApprover1 { get; set; } public int ForApprover2 { get; set; } public int ForPOApproval { get; set; } public int ForPO { get; set; } public int ForPayment { get; set; } public int ForDelivery { get; set; } public int PartialReceived { get; set; } public int SuppBidApproval { get; set; } public int ApprovedPO { get; set; } public bool IsApproved { get; set; } public int SupplierBid { get; set; } public int DeniedItem { get; set; } public int UOMId { get; set; } public bool IsDenied { get; set; } public decimal VatRate { get; set; } public bool DynamicBtn { get; set; } public string? CanvassNo { get; set; } public string? Description { get; set; } public int AlternativeOfferId { get; set; } public string? AggreDescription { get; set; } public string? ProjectCode { get; set; } public int ProjectCodeId { get; set; } public string? ProjectName { get; set; } public int MaxDays { get; set; } public string? DeliveryAddress { get; set; } public int PRAttachmentId { get; set; } public long PRId { get; set; } public string? FileName { get; set; } public string? OrigFileName { get; set; } public string? AttestedDate { get; set; } public string? ApprovedDate { get; set; } public int RemainingDays { get; set; } public ItemReceivingList? ItemList { get; set; } public PRList? PRList { get; set; } } }