101 lines
4.2 KiB
C#
101 lines
4.2 KiB
C#
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.Receiving
|
|
{
|
|
public class ReceivingVM : CommonProperties
|
|
{
|
|
public long ItemCodeId { get; set; }
|
|
public long PRDetailsId { 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 decimal Qty { get; set; }
|
|
public decimal QuantityReceived { get; set; }
|
|
public string? ItemTypeName { get; set; }
|
|
public string? UOMName { get; set; }
|
|
public string? Address { get; set; }
|
|
public string? ItemAttachPath { get; set; }
|
|
public long PRNo { get; set; }
|
|
public string? PONo { get; set; }
|
|
public string? Message { get; set; }
|
|
public byte messCode { get; set; }
|
|
public string? StatusResponse { get; set; }
|
|
public string? Remarks { 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? SuppBidDate { 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? Specification { get; set; }
|
|
public string? PONumber { get; set; }
|
|
public int ForPO { get; set; }
|
|
public int ForPayment { get; set; }
|
|
public int ForDelivery { get; set; }
|
|
public int PartialReceived { 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 string? ErrMessage { get; set; }
|
|
public byte ErrCode { get; set; }
|
|
public string? AttestedBy { get; set; }
|
|
public string? ApprovedBy { get; set; }
|
|
public DateTime DateFrom { get; set; }
|
|
public DateTime DateTo { get; set; }
|
|
public bool IsSorting { get; set; }
|
|
public string? PRBy { get; set; }
|
|
public string? PRTypeName { get; set; }
|
|
public DateTime PRDate { get; set; }
|
|
public string? POBy { get; set; }
|
|
public string? PODate { get; set; }
|
|
public string? RRDate { get; set; }
|
|
public ItemReceivingList? ItemList { get; set; }
|
|
}
|
|
}
|