namespace RB_MES_API.Models.Cloud { /// /// 二次查询:上游单据为采购订单的简易信息 /// public class PurchaseOrder { /// /// 输入参数和校验参数之一 /// public string FBillNo { get; set; } /// /// 输入参数和校验参数之一 /// public string FPOOrderEntry_FSeq { get; set; } /// /// 单据内码 /// public string FID { get; set; } /// /// 行内码 /// public string FPOOrderEntry_FEntryID { get; set; } /// /// 单位编码 /// public string UnitNumber { get; set; } /// /// 剩余入库数量 /// public string FRemainStockINQty { get; set; } /// /// 结算币别 /// public string FSettleCurrId { get; set; } //编码 /// /// 供应商 /// public string FSupplierId { get; set; } //编码 /// /// 汇率类型 /// public string FExchangeTypeId { get; set; } /// /// 汇率 /// public string FExchangeRate { get; set; } = "1"; /// /// 采购数量 /// public string FRemainInStockQty { get; set; } /// /// 单价 /// public string FPrice { get; set; } /// /// 定价时点 /// public string FPriceTimePoint { get; set; } /// /// 付款条件 /// public string FPayConditionId { get; set; } //编码 /// /// 本位币 /// public string FLocalCurrId { get; set; } //编码 /// /// 含税单价 /// public string FTaxPrice { get; set; } /// /// 税率(%) /// public string FEntryTaxRate { get; set; }= "0"; /// /// 是否赠品 /// public bool FGiveAway { get; set; }=false; /// /// 采购组织 /// public string FPurchaseOrgId { get; set; } /// /// 产品类型 /// public string FRowType { get; set; } /// /// 基本单位 (必填项) /// public string FBaseUnitNumber { get; set; } /// /// 物料版本号 /// public string MTRL_VER { get; set; } ///// ///// 老K3采购订单行号 ///// //public int FK3EntryID { get; set; } /// /// 物料编码 /// public string Mtrl { get; set; } /// /// 单据类型 /// public string FBillTypeID { get; set; } /// /// 结算币别金额小数点位数 /// public int FAMOUNTDIGITS_A { get; set; } /// /// 本位币金额小数点位数 /// public int FAMOUNTDIGITS_B { get; set; } /// /// 净价 /// public string FTaxNetPrice { get; set; } /// /// 含税 /// public bool FIsIncludedTax { get; set; } /// /// 价外税 /// public bool FISPRICEEXCLUDETAX { get; set; } /// /// 采购分录价目表编号 /// public string FPriceListEntry { get; set; } /// /// 采购员编号 /// public string FPurchaserNumber { get; set; } } }