You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
2.5 KiB
112 lines
2.5 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CK.SCP.Models.ScpEntity.ExcelExportEnttity
|
|
{
|
|
public class SCP_PO_REPORT
|
|
{
|
|
public string PoBillNum { get; set; }
|
|
public string AskBillNum { get; set; }
|
|
|
|
public string VendId { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
|
public string VendName { get; set; }
|
|
|
|
public string VendAddress { get; set; }
|
|
|
|
|
|
public string Site_Desc { get; set; }
|
|
|
|
public string SubSite { get; set; }
|
|
|
|
|
|
public string TotalPrice { get; set; }
|
|
|
|
public string AuditTime { get; set; }
|
|
|
|
public string Auditor { get; set; }
|
|
|
|
public String VendPhone { get; set; }
|
|
|
|
public String ContectPhone { get; set; }
|
|
|
|
public string FactoryName { get; set; }
|
|
public string MaterialPlanner { get; set; }
|
|
|
|
|
|
|
|
}
|
|
public class SCP_PO_REPORT_DETAIL
|
|
{
|
|
|
|
public string SubTotal { set; get; }
|
|
|
|
|
|
public string PoBillNum { get; set; }
|
|
public int PoLine { get; set; }
|
|
|
|
public string PartCode { get; set; }
|
|
|
|
public string VendPartCode { get; set; }
|
|
|
|
public decimal? ShippedQty { get; set; }
|
|
public decimal ReceivedQty { get; set; }
|
|
|
|
public decimal RejectQty { get; set; }
|
|
|
|
public decimal ArriveQty { get; set; }
|
|
|
|
public decimal InvoiceQty { get; set; }
|
|
|
|
public decimal OnRoadQty { get; set; }
|
|
public DateTime BeginTime { get; set; }
|
|
public DateTime EndTime { get; set; }
|
|
|
|
public string PoUnit { get; set; }
|
|
|
|
public string LocUnit { get; set; }
|
|
public decimal Price { get; set; }
|
|
|
|
public string Currency { get; set; }
|
|
public decimal PackQty { get; set; }
|
|
public decimal UnConv { get; set; }
|
|
|
|
public string DockCode { get; set; }
|
|
public int State { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
|
public string PartDesc1 { get; set; }
|
|
|
|
public string CurrencyDesc { get; set; }
|
|
|
|
public string Site { get; set; }
|
|
|
|
|
|
public string PartDesc2 { get; set; }
|
|
|
|
|
|
public string AskBillNum { get; set; }
|
|
public decimal AskQty { get; set; }
|
|
|
|
public string VendId { get; set; }
|
|
public string ReceivedPort { get; set; }
|
|
public string ReceivedPort_Desc { get; set; }
|
|
|
|
|
|
public decimal? ReduceQty { get; set; }
|
|
|
|
public string SubSite { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|