//------------------------------------------------------------------------------
|
// <auto-generated>
|
// 此代码由工具生成。
|
// 运行时版本:4.0.30319.42000
|
//
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
// 重新生成代码,这些更改将会丢失。
|
// </auto-generated>
|
//------------------------------------------------------------------------------
|
|
//
|
// 此源代码由 wsdl 自动生成, Version=4.8.3928.0。
|
//
|
namespace Demo {
|
using System;
|
using System.Web.Services;
|
using System.Diagnostics;
|
using System.Web.Services.Protocols;
|
using System.Xml.Serialization;
|
using System.ComponentModel;
|
|
|
/// <remarks/>
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.8.3928.0")]
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
[System.Web.Services.WebServiceBindingAttribute(Name="QADSoap", Namespace="http://tempuri.org/")]
|
public partial class QAD : System.Web.Services.Protocols.SoapHttpClientProtocol {
|
|
private System.Threading.SendOrPostCallback xxptmstrgetOperationCompleted;
|
|
private System.Threading.SendOrPostCallback xxlocmstrgetOperationCompleted;
|
|
/// <remarks/>
|
public QAD() {
|
this.Url = "http://172.17.0.106:806/QAD.asmx";
|
}
|
|
/// <remarks/>
|
public event xxptmstrgetCompletedEventHandler xxptmstrgetCompleted;
|
|
/// <remarks/>
|
public event xxlocmstrgetCompletedEventHandler xxlocmstrgetCompleted;
|
|
/// <remarks/>
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/xxptmstrget", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
|
public ptout xxptmstrget(string input_domain, ptin input_partin) {
|
object[] results = this.Invoke("xxptmstrget", new object[] {
|
input_domain,
|
input_partin});
|
return ((ptout)(results[0]));
|
}
|
|
/// <remarks/>
|
public System.IAsyncResult Beginxxptmstrget(string input_domain, ptin input_partin, System.AsyncCallback callback, object asyncState) {
|
return this.BeginInvoke("xxptmstrget", new object[] {
|
input_domain,
|
input_partin}, callback, asyncState);
|
}
|
|
/// <remarks/>
|
public ptout Endxxptmstrget(System.IAsyncResult asyncResult) {
|
object[] results = this.EndInvoke(asyncResult);
|
return ((ptout)(results[0]));
|
}
|
|
/// <remarks/>
|
public void xxptmstrgetAsync(string input_domain, ptin input_partin) {
|
this.xxptmstrgetAsync(input_domain, input_partin, null);
|
}
|
|
/// <remarks/>
|
public void xxptmstrgetAsync(string input_domain, ptin input_partin, object userState) {
|
if ((this.xxptmstrgetOperationCompleted == null)) {
|
this.xxptmstrgetOperationCompleted = new System.Threading.SendOrPostCallback(this.OnxxptmstrgetOperationCompleted);
|
}
|
this.InvokeAsync("xxptmstrget", new object[] {
|
input_domain,
|
input_partin}, this.xxptmstrgetOperationCompleted, userState);
|
}
|
|
private void OnxxptmstrgetOperationCompleted(object arg) {
|
if ((this.xxptmstrgetCompleted != null)) {
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
|
this.xxptmstrgetCompleted(this, new xxptmstrgetCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
|
}
|
}
|
|
/// <remarks/>
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/xxlocmstrget", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
|
public locout xxlocmstrget(string input_domain, locggetin locggetin) {
|
object[] results = this.Invoke("xxlocmstrget", new object[] {
|
input_domain,
|
locggetin});
|
return ((locout)(results[0]));
|
}
|
|
/// <remarks/>
|
public System.IAsyncResult Beginxxlocmstrget(string input_domain, locggetin locggetin, System.AsyncCallback callback, object asyncState) {
|
return this.BeginInvoke("xxlocmstrget", new object[] {
|
input_domain,
|
locggetin}, callback, asyncState);
|
}
|
|
/// <remarks/>
|
public locout Endxxlocmstrget(System.IAsyncResult asyncResult) {
|
object[] results = this.EndInvoke(asyncResult);
|
return ((locout)(results[0]));
|
}
|
|
/// <remarks/>
|
public void xxlocmstrgetAsync(string input_domain, locggetin locggetin) {
|
this.xxlocmstrgetAsync(input_domain, locggetin, null);
|
}
|
|
/// <remarks/>
|
public void xxlocmstrgetAsync(string input_domain, locggetin locggetin, object userState) {
|
if ((this.xxlocmstrgetOperationCompleted == null)) {
|
this.xxlocmstrgetOperationCompleted = new System.Threading.SendOrPostCallback(this.OnxxlocmstrgetOperationCompleted);
|
}
|
this.InvokeAsync("xxlocmstrget", new object[] {
|
input_domain,
|
locggetin}, this.xxlocmstrgetOperationCompleted, userState);
|
}
|
|
private void OnxxlocmstrgetOperationCompleted(object arg) {
|
if ((this.xxlocmstrgetCompleted != null)) {
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
|
this.xxlocmstrgetCompleted(this, new xxlocmstrgetCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
|
}
|
}
|
|
/// <remarks/>
|
public new void CancelAsync(object userState) {
|
base.CancelAsync(userState);
|
}
|
}
|
|
/// <remarks/>
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.8.3928.0")]
|
[System.SerializableAttribute()]
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")]
|
public partial class ptin {
|
|
private string pt_fromField;
|
|
private string pt_toField;
|
|
/// <remarks/>
|
public string pt_from {
|
get {
|
return this.pt_fromField;
|
}
|
set {
|
this.pt_fromField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_to {
|
get {
|
return this.pt_toField;
|
}
|
set {
|
this.pt_toField = value;
|
}
|
}
|
}
|
|
/// <remarks/>
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.8.3928.0")]
|
[System.SerializableAttribute()]
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")]
|
public partial class loc {
|
|
private string loc_siteField;
|
|
private string loc_locField;
|
|
private string loc_descField;
|
|
private string loc_projectField;
|
|
private System.DateTime loc_dateField;
|
|
private bool loc_permField;
|
|
private string loc_typeField;
|
|
private bool loc_singleField;
|
|
private bool loc__qad01Field;
|
|
private decimal loc_capField;
|
|
private string loc_cap_umField;
|
|
private bool loc_reserved_custField;
|
|
private bool loc_xfer_ownershipField;
|
|
private string loc_phys_addrField;
|
|
/// <remarks/>
|
public string loc_site {
|
get {
|
return this.loc_siteField;
|
}
|
set {
|
this.loc_siteField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string loc_loc {
|
get {
|
return this.loc_locField;
|
}
|
set {
|
this.loc_locField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string loc_desc {
|
get {
|
return this.loc_descField;
|
}
|
set {
|
this.loc_descField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string loc_project {
|
get {
|
return this.loc_projectField;
|
}
|
set {
|
this.loc_projectField = value;
|
}
|
}
|
|
/// <remarks/>
|
public System.DateTime loc_date {
|
get {
|
return this.loc_dateField;
|
}
|
set {
|
this.loc_dateField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool loc_perm {
|
get {
|
return this.loc_permField;
|
}
|
set {
|
this.loc_permField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string loc_type {
|
get {
|
return this.loc_typeField;
|
}
|
set {
|
this.loc_typeField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool loc_single {
|
get {
|
return this.loc_singleField;
|
}
|
set {
|
this.loc_singleField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool loc__qad01 {
|
get {
|
return this.loc__qad01Field;
|
}
|
set {
|
this.loc__qad01Field = value;
|
}
|
}
|
|
/// <remarks/>
|
public decimal loc_cap {
|
get {
|
return this.loc_capField;
|
}
|
set {
|
this.loc_capField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string loc_cap_um {
|
get {
|
return this.loc_cap_umField;
|
}
|
set {
|
this.loc_cap_umField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool loc_reserved_cust {
|
get {
|
return this.loc_reserved_custField;
|
}
|
set {
|
this.loc_reserved_custField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool loc_xfer_ownership {
|
get {
|
return this.loc_xfer_ownershipField;
|
}
|
set {
|
this.loc_xfer_ownershipField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string loc_phys_addr {
|
get {
|
return this.loc_phys_addrField;
|
}
|
set {
|
this.loc_phys_addrField = value;
|
}
|
}
|
}
|
|
/// <remarks/>
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.8.3928.0")]
|
[System.SerializableAttribute()]
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")]
|
public partial class locout {
|
|
private loc[] locField;
|
|
private bool canpassField;
|
|
private string errorMessageField;
|
|
/// <remarks/>
|
public loc[] loc {
|
get {
|
return this.locField;
|
}
|
set {
|
this.locField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool canpass {
|
get {
|
return this.canpassField;
|
}
|
set {
|
this.canpassField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string errorMessage {
|
get {
|
return this.errorMessageField;
|
}
|
set {
|
this.errorMessageField = value;
|
}
|
}
|
}
|
|
/// <remarks/>
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.8.3928.0")]
|
[System.SerializableAttribute()]
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")]
|
public partial class locggetin {
|
|
private string v_site_fromField;
|
|
private string v_site_toField;
|
|
private string v_loc_fromField;
|
|
private string v_loc_toField;
|
|
/// <remarks/>
|
public string v_site_from {
|
get {
|
return this.v_site_fromField;
|
}
|
set {
|
this.v_site_fromField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string v_site_to {
|
get {
|
return this.v_site_toField;
|
}
|
set {
|
this.v_site_toField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string v_loc_from {
|
get {
|
return this.v_loc_fromField;
|
}
|
set {
|
this.v_loc_fromField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string v_loc_to {
|
get {
|
return this.v_loc_toField;
|
}
|
set {
|
this.v_loc_toField = value;
|
}
|
}
|
}
|
|
/// <remarks/>
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.8.3928.0")]
|
[System.SerializableAttribute()]
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")]
|
public partial class pt {
|
|
private string pt_partField;
|
|
private string pt_desc1Field;
|
|
private string pt_desc2Field;
|
|
private string pt_umField;
|
|
private string pt_prod_lineField;
|
|
private string pt_part_typeField;
|
|
private string pt_drawField;
|
|
private System.DateTime pt_addField;
|
|
private string pt_statusField;
|
|
private string pt_revField;
|
|
private string pt_dsgn_grpField;
|
|
private string pt_groupField;
|
|
private string pt_drwg_locField;
|
|
private string pt_drwg_sizeField;
|
|
private string pt_promoField;
|
|
private string pt_break_catField;
|
|
private string pt_abcField;
|
|
private string pt_lot_serField;
|
|
private string pt_siteField;
|
|
private string pt_locField;
|
|
private string pt_loc_typeField;
|
|
private bool pt_auto_lotField;
|
|
private string pt_lot_grpField;
|
|
private string pt_articleField;
|
|
private int pt_avg_intField;
|
|
private int pt_cyc_intField;
|
|
private decimal pt_shelflifeField;
|
|
private bool pt_sngl_lotField;
|
|
private bool pt_criticalField;
|
|
private string pt_rctpo_statusField;
|
|
private bool pt_rctpo_activeField;
|
|
private string pt_rctwo_statusField;
|
|
private bool pt_rctwo_activeField;
|
|
private decimal pt_ship_wtField;
|
|
private string pt_ship_wt_umField;
|
|
private string pt_fr_classField;
|
|
private decimal pt_net_wtField;
|
|
private string pt_net_wt_umField;
|
|
private decimal pt_sizeField;
|
|
private string pt_size_umField;
|
|
private bool pt_msField;
|
|
private bool pt_plan_ordField;
|
|
private int pt_timefenceField;
|
|
private bool pt_mrpField;
|
|
private string pt_ord_polField;
|
|
private int pt_ord_qtyField;
|
|
private decimal pt_batchField;
|
|
private int pt_ord_perField;
|
|
private int pt_sfty_stkField;
|
|
private int pt_sfty_timeField;
|
|
private int pt_ropField;
|
|
private bool pt_iss_polField;
|
|
private string pt_buyerField;
|
|
private string pt_vendField;
|
|
private string pt_po_siteField;
|
|
private string pt_pm_codeField;
|
|
private string pt_cfg_typeField;
|
|
private bool pt_insp_rqdField;
|
|
private int pt_insp_leadField;
|
|
private int pt_cum_leadField;
|
|
private int pt_mfg_leadField;
|
|
private int pt_pur_leadField;
|
|
private string pt_atp_enforcementField;
|
|
private bool pt_atp_familyField;
|
|
private string pt_run_seq1Field;
|
|
private string pt_run_seq2Field;
|
|
private bool pt_phantomField;
|
|
private int pt_ord_minField;
|
|
private int pt_ord_maxField;
|
|
private int pt_ord_multField;
|
|
private bool pt_op_yieldField;
|
|
private decimal pt_yield_pctField;
|
|
private decimal pt_runField;
|
|
private decimal pt_setupField;
|
|
private string pt_btb_typeField;
|
|
private bool pt__qad15Field;
|
|
private string pt_networkField;
|
|
private string pt_routingField;
|
|
private string pt_bomcodeField;
|
|
/// <remarks/>
|
public string pt_part {
|
get {
|
return this.pt_partField;
|
}
|
set {
|
this.pt_partField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_desc1 {
|
get {
|
return this.pt_desc1Field;
|
}
|
set {
|
this.pt_desc1Field = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_desc2 {
|
get {
|
return this.pt_desc2Field;
|
}
|
set {
|
this.pt_desc2Field = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_um {
|
get {
|
return this.pt_umField;
|
}
|
set {
|
this.pt_umField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_prod_line {
|
get {
|
return this.pt_prod_lineField;
|
}
|
set {
|
this.pt_prod_lineField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_part_type {
|
get {
|
return this.pt_part_typeField;
|
}
|
set {
|
this.pt_part_typeField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_draw {
|
get {
|
return this.pt_drawField;
|
}
|
set {
|
this.pt_drawField = value;
|
}
|
}
|
|
/// <remarks/>
|
public System.DateTime pt_add {
|
get {
|
return this.pt_addField;
|
}
|
set {
|
this.pt_addField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_status {
|
get {
|
return this.pt_statusField;
|
}
|
set {
|
this.pt_statusField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_rev {
|
get {
|
return this.pt_revField;
|
}
|
set {
|
this.pt_revField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_dsgn_grp {
|
get {
|
return this.pt_dsgn_grpField;
|
}
|
set {
|
this.pt_dsgn_grpField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_group {
|
get {
|
return this.pt_groupField;
|
}
|
set {
|
this.pt_groupField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_drwg_loc {
|
get {
|
return this.pt_drwg_locField;
|
}
|
set {
|
this.pt_drwg_locField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_drwg_size {
|
get {
|
return this.pt_drwg_sizeField;
|
}
|
set {
|
this.pt_drwg_sizeField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_promo {
|
get {
|
return this.pt_promoField;
|
}
|
set {
|
this.pt_promoField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_break_cat {
|
get {
|
return this.pt_break_catField;
|
}
|
set {
|
this.pt_break_catField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_abc {
|
get {
|
return this.pt_abcField;
|
}
|
set {
|
this.pt_abcField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_lot_ser {
|
get {
|
return this.pt_lot_serField;
|
}
|
set {
|
this.pt_lot_serField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_site {
|
get {
|
return this.pt_siteField;
|
}
|
set {
|
this.pt_siteField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_loc {
|
get {
|
return this.pt_locField;
|
}
|
set {
|
this.pt_locField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_loc_type {
|
get {
|
return this.pt_loc_typeField;
|
}
|
set {
|
this.pt_loc_typeField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool pt_auto_lot {
|
get {
|
return this.pt_auto_lotField;
|
}
|
set {
|
this.pt_auto_lotField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_lot_grp {
|
get {
|
return this.pt_lot_grpField;
|
}
|
set {
|
this.pt_lot_grpField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_article {
|
get {
|
return this.pt_articleField;
|
}
|
set {
|
this.pt_articleField = value;
|
}
|
}
|
|
/// <remarks/>
|
public int pt_avg_int {
|
get {
|
return this.pt_avg_intField;
|
}
|
set {
|
this.pt_avg_intField = value;
|
}
|
}
|
|
/// <remarks/>
|
public int pt_cyc_int {
|
get {
|
return this.pt_cyc_intField;
|
}
|
set {
|
this.pt_cyc_intField = value;
|
}
|
}
|
|
/// <remarks/>
|
public decimal pt_shelflife {
|
get {
|
return this.pt_shelflifeField;
|
}
|
set {
|
this.pt_shelflifeField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool pt_sngl_lot {
|
get {
|
return this.pt_sngl_lotField;
|
}
|
set {
|
this.pt_sngl_lotField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool pt_critical {
|
get {
|
return this.pt_criticalField;
|
}
|
set {
|
this.pt_criticalField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_rctpo_status {
|
get {
|
return this.pt_rctpo_statusField;
|
}
|
set {
|
this.pt_rctpo_statusField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool pt_rctpo_active {
|
get {
|
return this.pt_rctpo_activeField;
|
}
|
set {
|
this.pt_rctpo_activeField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_rctwo_status {
|
get {
|
return this.pt_rctwo_statusField;
|
}
|
set {
|
this.pt_rctwo_statusField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool pt_rctwo_active {
|
get {
|
return this.pt_rctwo_activeField;
|
}
|
set {
|
this.pt_rctwo_activeField = value;
|
}
|
}
|
|
/// <remarks/>
|
public decimal pt_ship_wt {
|
get {
|
return this.pt_ship_wtField;
|
}
|
set {
|
this.pt_ship_wtField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_ship_wt_um {
|
get {
|
return this.pt_ship_wt_umField;
|
}
|
set {
|
this.pt_ship_wt_umField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_fr_class {
|
get {
|
return this.pt_fr_classField;
|
}
|
set {
|
this.pt_fr_classField = value;
|
}
|
}
|
|
/// <remarks/>
|
public decimal pt_net_wt {
|
get {
|
return this.pt_net_wtField;
|
}
|
set {
|
this.pt_net_wtField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_net_wt_um {
|
get {
|
return this.pt_net_wt_umField;
|
}
|
set {
|
this.pt_net_wt_umField = value;
|
}
|
}
|
|
/// <remarks/>
|
public decimal pt_size {
|
get {
|
return this.pt_sizeField;
|
}
|
set {
|
this.pt_sizeField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_size_um {
|
get {
|
return this.pt_size_umField;
|
}
|
set {
|
this.pt_size_umField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool pt_ms {
|
get {
|
return this.pt_msField;
|
}
|
set {
|
this.pt_msField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool pt_plan_ord {
|
get {
|
return this.pt_plan_ordField;
|
}
|
set {
|
this.pt_plan_ordField = value;
|
}
|
}
|
|
/// <remarks/>
|
public int pt_timefence {
|
get {
|
return this.pt_timefenceField;
|
}
|
set {
|
this.pt_timefenceField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool pt_mrp {
|
get {
|
return this.pt_mrpField;
|
}
|
set {
|
this.pt_mrpField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_ord_pol {
|
get {
|
return this.pt_ord_polField;
|
}
|
set {
|
this.pt_ord_polField = value;
|
}
|
}
|
|
/// <remarks/>
|
public int pt_ord_qty {
|
get {
|
return this.pt_ord_qtyField;
|
}
|
set {
|
this.pt_ord_qtyField = value;
|
}
|
}
|
|
/// <remarks/>
|
public decimal pt_batch {
|
get {
|
return this.pt_batchField;
|
}
|
set {
|
this.pt_batchField = value;
|
}
|
}
|
|
/// <remarks/>
|
public int pt_ord_per {
|
get {
|
return this.pt_ord_perField;
|
}
|
set {
|
this.pt_ord_perField = value;
|
}
|
}
|
|
/// <remarks/>
|
public int pt_sfty_stk {
|
get {
|
return this.pt_sfty_stkField;
|
}
|
set {
|
this.pt_sfty_stkField = value;
|
}
|
}
|
|
/// <remarks/>
|
public int pt_sfty_time {
|
get {
|
return this.pt_sfty_timeField;
|
}
|
set {
|
this.pt_sfty_timeField = value;
|
}
|
}
|
|
/// <remarks/>
|
public int pt_rop {
|
get {
|
return this.pt_ropField;
|
}
|
set {
|
this.pt_ropField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool pt_iss_pol {
|
get {
|
return this.pt_iss_polField;
|
}
|
set {
|
this.pt_iss_polField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_buyer {
|
get {
|
return this.pt_buyerField;
|
}
|
set {
|
this.pt_buyerField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_vend {
|
get {
|
return this.pt_vendField;
|
}
|
set {
|
this.pt_vendField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_po_site {
|
get {
|
return this.pt_po_siteField;
|
}
|
set {
|
this.pt_po_siteField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_pm_code {
|
get {
|
return this.pt_pm_codeField;
|
}
|
set {
|
this.pt_pm_codeField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_cfg_type {
|
get {
|
return this.pt_cfg_typeField;
|
}
|
set {
|
this.pt_cfg_typeField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool pt_insp_rqd {
|
get {
|
return this.pt_insp_rqdField;
|
}
|
set {
|
this.pt_insp_rqdField = value;
|
}
|
}
|
|
/// <remarks/>
|
public int pt_insp_lead {
|
get {
|
return this.pt_insp_leadField;
|
}
|
set {
|
this.pt_insp_leadField = value;
|
}
|
}
|
|
/// <remarks/>
|
public int pt_cum_lead {
|
get {
|
return this.pt_cum_leadField;
|
}
|
set {
|
this.pt_cum_leadField = value;
|
}
|
}
|
|
/// <remarks/>
|
public int pt_mfg_lead {
|
get {
|
return this.pt_mfg_leadField;
|
}
|
set {
|
this.pt_mfg_leadField = value;
|
}
|
}
|
|
/// <remarks/>
|
public int pt_pur_lead {
|
get {
|
return this.pt_pur_leadField;
|
}
|
set {
|
this.pt_pur_leadField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_atp_enforcement {
|
get {
|
return this.pt_atp_enforcementField;
|
}
|
set {
|
this.pt_atp_enforcementField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool pt_atp_family {
|
get {
|
return this.pt_atp_familyField;
|
}
|
set {
|
this.pt_atp_familyField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_run_seq1 {
|
get {
|
return this.pt_run_seq1Field;
|
}
|
set {
|
this.pt_run_seq1Field = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_run_seq2 {
|
get {
|
return this.pt_run_seq2Field;
|
}
|
set {
|
this.pt_run_seq2Field = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool pt_phantom {
|
get {
|
return this.pt_phantomField;
|
}
|
set {
|
this.pt_phantomField = value;
|
}
|
}
|
|
/// <remarks/>
|
public int pt_ord_min {
|
get {
|
return this.pt_ord_minField;
|
}
|
set {
|
this.pt_ord_minField = value;
|
}
|
}
|
|
/// <remarks/>
|
public int pt_ord_max {
|
get {
|
return this.pt_ord_maxField;
|
}
|
set {
|
this.pt_ord_maxField = value;
|
}
|
}
|
|
/// <remarks/>
|
public int pt_ord_mult {
|
get {
|
return this.pt_ord_multField;
|
}
|
set {
|
this.pt_ord_multField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool pt_op_yield {
|
get {
|
return this.pt_op_yieldField;
|
}
|
set {
|
this.pt_op_yieldField = value;
|
}
|
}
|
|
/// <remarks/>
|
public decimal pt_yield_pct {
|
get {
|
return this.pt_yield_pctField;
|
}
|
set {
|
this.pt_yield_pctField = value;
|
}
|
}
|
|
/// <remarks/>
|
public decimal pt_run {
|
get {
|
return this.pt_runField;
|
}
|
set {
|
this.pt_runField = value;
|
}
|
}
|
|
/// <remarks/>
|
public decimal pt_setup {
|
get {
|
return this.pt_setupField;
|
}
|
set {
|
this.pt_setupField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_btb_type {
|
get {
|
return this.pt_btb_typeField;
|
}
|
set {
|
this.pt_btb_typeField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool pt__qad15 {
|
get {
|
return this.pt__qad15Field;
|
}
|
set {
|
this.pt__qad15Field = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_network {
|
get {
|
return this.pt_networkField;
|
}
|
set {
|
this.pt_networkField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_routing {
|
get {
|
return this.pt_routingField;
|
}
|
set {
|
this.pt_routingField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string pt_bomcode {
|
get {
|
return this.pt_bomcodeField;
|
}
|
set {
|
this.pt_bomcodeField = value;
|
}
|
}
|
}
|
|
/// <remarks/>
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.8.3928.0")]
|
[System.SerializableAttribute()]
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")]
|
public partial class ptout {
|
|
private pt[] pt_outField;
|
|
private bool canpassField;
|
|
private string errorMessageField;
|
|
private string oidnbrField;
|
|
/// <remarks/>
|
public pt[] pt_out {
|
get {
|
return this.pt_outField;
|
}
|
set {
|
this.pt_outField = value;
|
}
|
}
|
|
/// <remarks/>
|
public bool canpass {
|
get {
|
return this.canpassField;
|
}
|
set {
|
this.canpassField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string errorMessage {
|
get {
|
return this.errorMessageField;
|
}
|
set {
|
this.errorMessageField = value;
|
}
|
}
|
|
/// <remarks/>
|
public string oidnbr {
|
get {
|
return this.oidnbrField;
|
}
|
set {
|
this.oidnbrField = value;
|
}
|
}
|
}
|
|
/// <remarks/>
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.8.3928.0")]
|
public delegate void xxptmstrgetCompletedEventHandler(object sender, xxptmstrgetCompletedEventArgs e);
|
|
/// <remarks/>
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.8.3928.0")]
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
public partial class xxptmstrgetCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
|
|
private object[] results;
|
|
internal xxptmstrgetCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
|
base(exception, cancelled, userState) {
|
this.results = results;
|
}
|
|
/// <remarks/>
|
public ptout Result {
|
get {
|
this.RaiseExceptionIfNecessary();
|
return ((ptout)(this.results[0]));
|
}
|
}
|
}
|
|
/// <remarks/>
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.8.3928.0")]
|
public delegate void xxlocmstrgetCompletedEventHandler(object sender, xxlocmstrgetCompletedEventArgs e);
|
|
/// <remarks/>
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.8.3928.0")]
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
public partial class xxlocmstrgetCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
|
|
private object[] results;
|
|
internal xxlocmstrgetCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
|
base(exception, cancelled, userState) {
|
this.results = results;
|
}
|
|
/// <remarks/>
|
public locout Result {
|
get {
|
this.RaiseExceptionIfNecessary();
|
return ((locout)(this.results[0]));
|
}
|
}
|
}
|
}
|