using CPRNIMS.Infrastructure.Entities.Common; using CPRNIMS.Infrastructure.ViewModel.PR; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.ViewModel.Finance { public class RRVM : CommonProperties { public long ItemCodeId { get; set; } public long PRDetailsId { 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? PONo { 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? ReceivedBy { get; set; } public string? AcknowledgeBy { get; set; } public string? AcknowledgeDate { 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? ReceivedDate { 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 int SupplierBid { get; set; } public int DeniedItem { get; set; } public bool IsDenied { get; set; } public decimal VatRate { get; set; } public ItemReceivingList? ItemList { get; set; } } }