savon 2.5.1 → 2.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/lib/savon/builder.rb +6 -1
- data/lib/savon/header.rb +2 -2
- data/lib/savon/options.rb +37 -11
- data/lib/savon/request.rb +7 -2
- data/lib/savon/version.rb +1 -1
- data/savon.gemspec +1 -1
- data/spec/fixtures/wsdl/no_message_tag.xml +1267 -0
- data/spec/integration/email_example_spec.rb +1 -1
- data/spec/integration/random_quote_spec.rb +2 -2
- data/spec/integration/stockquote_example_spec.rb +1 -1
- data/spec/integration/zipcode_example_spec.rb +1 -1
- data/spec/savon/builder_spec.rb +5 -0
- data/spec/savon/client_spec.rb +1 -1
- data/spec/savon/core_ext/string_spec.rb +9 -9
- data/spec/savon/http_error_spec.rb +2 -2
- data/spec/savon/options_spec.rb +235 -53
- data/spec/savon/request_spec.rb +2 -2
- data/spec/savon/response_spec.rb +33 -31
- data/spec/savon/soap_fault_spec.rb +5 -5
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23a1918c1f7d0fca14320681a197cabb6205124a
|
4
|
+
data.tar.gz: f13e43f5bfde4dce97dd41d676bdecacc3419ffd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3c00d74d18d3e0b02b5fc2d4981e869692abeb88e7eda80124a9048d472a733e6f128084d512edb98f91cb2ba2bb49f03c4942aaab69cc0154cec9a938b92ce6
|
7
|
+
data.tar.gz: 8feec6b9dd88fbb4727ae3dce531b75614e1304531df1190b79ba12d129f5d1deb299f81c7d5c6ca275b347062a027bc9ed4e570974334efea796732f3c4e3b8
|
data/.travis.yml
CHANGED
data/lib/savon/builder.rb
CHANGED
@@ -37,7 +37,11 @@ module Savon
|
|
37
37
|
def build_document
|
38
38
|
tag(builder, :Envelope, namespaces_with_globals) do |xml|
|
39
39
|
tag(xml, :Header, header_attributes) { xml << header.to_s } unless header.empty?
|
40
|
-
|
40
|
+
if @globals[:no_message_tag]
|
41
|
+
tag(xml, :Body, body_attributes) { xml << message.to_s }
|
42
|
+
else
|
43
|
+
tag(xml, :Body, body_attributes) { xml.tag!(*namespaced_message_tag) { xml << message.to_s } }
|
44
|
+
end
|
41
45
|
end
|
42
46
|
end
|
43
47
|
|
@@ -46,6 +50,7 @@ module Savon
|
|
46
50
|
end
|
47
51
|
|
48
52
|
def body_attributes
|
53
|
+
{}
|
49
54
|
end
|
50
55
|
|
51
56
|
def to_s
|
data/lib/savon/header.rb
CHANGED
@@ -8,8 +8,8 @@ module Savon
|
|
8
8
|
def initialize(globals, locals)
|
9
9
|
@gyoku_options = { :key_converter => globals[:convert_request_keys_to] }
|
10
10
|
|
11
|
-
@wsse_auth = globals[:wsse_auth]
|
12
|
-
@wsse_timestamp = globals[:wsse_timestamp]
|
11
|
+
@wsse_auth = locals[:wsse_auth].nil? ? globals[:wsse_auth] : locals[:wsse_auth]
|
12
|
+
@wsse_timestamp = locals[:wsse_timestamp].nil? ? globals[:wsse_timestamp] : locals[:wsse_timestamp]
|
13
13
|
|
14
14
|
@global_header = globals[:soap_header]
|
15
15
|
@local_header = locals[:soap_header]
|
data/lib/savon/options.rb
CHANGED
@@ -35,10 +35,35 @@ module Savon
|
|
35
35
|
def method_missing(option, _)
|
36
36
|
raise UnknownOptionError, "Unknown #{option_type} option: #{option.inspect}"
|
37
37
|
end
|
38
|
+
end
|
39
|
+
|
40
|
+
module SharedOptions
|
41
|
+
# WSSE auth credentials for Akami.
|
42
|
+
# Local will override the global wsse_auth value, e.g.
|
43
|
+
# global == [user, pass] && local == [user2, pass2] => [user2, pass2]
|
44
|
+
# global == [user, pass] && local == false => false
|
45
|
+
# global == [user, pass] && local == nil => [user, pass]
|
46
|
+
def wsse_auth(*credentials)
|
47
|
+
credentials.flatten!
|
48
|
+
if credentials.size == 1
|
49
|
+
@options[:wsse_auth] = credentials.first
|
50
|
+
else
|
51
|
+
@options[:wsse_auth] = credentials
|
52
|
+
end
|
53
|
+
end
|
38
54
|
|
55
|
+
# Instruct Akami to enable wsu:Timestamp headers.
|
56
|
+
# Local will override the global wsse_timestamp value, e.g.
|
57
|
+
# global == true && local == true => true
|
58
|
+
# global == true && local == false => false
|
59
|
+
# global == true && local == nil => true
|
60
|
+
def wsse_timestamp(timestamp = true)
|
61
|
+
@options[:wsse_timestamp] = timestamp
|
62
|
+
end
|
39
63
|
end
|
40
64
|
|
41
65
|
class GlobalOptions < Options
|
66
|
+
include SharedOptions
|
42
67
|
|
43
68
|
def initialize(options = {})
|
44
69
|
@option_type = :global
|
@@ -58,6 +83,8 @@ module Savon
|
|
58
83
|
:multipart => false,
|
59
84
|
:adapter => nil,
|
60
85
|
:use_wsa_headers => false,
|
86
|
+
:no_message_tag => false,
|
87
|
+
:follow_redirects => false,
|
61
88
|
}
|
62
89
|
|
63
90
|
options = defaults.merge(options)
|
@@ -228,16 +255,6 @@ module Savon
|
|
228
255
|
@options[:ntlm] = credentials.flatten
|
229
256
|
end
|
230
257
|
|
231
|
-
# WSSE auth credentials for Akami.
|
232
|
-
def wsse_auth(*credentials)
|
233
|
-
@options[:wsse_auth] = credentials.flatten
|
234
|
-
end
|
235
|
-
|
236
|
-
# Instruct Akami to enable wsu:Timestamp headers.
|
237
|
-
def wsse_timestamp(*timestamp)
|
238
|
-
@options[:wsse_timestamp] = timestamp.flatten
|
239
|
-
end
|
240
|
-
|
241
258
|
# Instruct Nori whether to strip namespaces from XML nodes.
|
242
259
|
def strip_namespaces(strip_namespaces)
|
243
260
|
@options[:strip_namespaces] = strip_namespaces
|
@@ -277,9 +294,19 @@ module Savon
|
|
277
294
|
def use_wsa_headers(use)
|
278
295
|
@options[:use_wsa_headers] = use
|
279
296
|
end
|
297
|
+
|
298
|
+
def no_message_tag(bool)
|
299
|
+
@options[:no_message_tag] = bool
|
300
|
+
end
|
301
|
+
|
302
|
+
# Instruct requests to follow HTTP redirects.
|
303
|
+
def follow_redirects(follow_redirects)
|
304
|
+
@options[:follow_redirects] = follow_redirects
|
305
|
+
end
|
280
306
|
end
|
281
307
|
|
282
308
|
class LocalOptions < Options
|
309
|
+
include SharedOptions
|
283
310
|
|
284
311
|
def initialize(options = {})
|
285
312
|
@option_type = :local
|
@@ -345,6 +372,5 @@ module Savon
|
|
345
372
|
def multipart(multipart)
|
346
373
|
@options[:multipart] = multipart
|
347
374
|
end
|
348
|
-
|
349
375
|
end
|
350
376
|
end
|
data/lib/savon/request.rb
CHANGED
@@ -40,6 +40,11 @@ module Savon
|
|
40
40
|
@http_request.auth.ntlm(*@globals[:ntlm]) if @globals.include? :ntlm
|
41
41
|
end
|
42
42
|
|
43
|
+
def configure_redirect_handling
|
44
|
+
if @globals.include? :follow_redirects
|
45
|
+
@http_request.follow_redirect = @globals[:follow_redirects]
|
46
|
+
end
|
47
|
+
end
|
43
48
|
end
|
44
49
|
|
45
50
|
class WSDLRequest < HTTPRequest
|
@@ -49,10 +54,10 @@ module Savon
|
|
49
54
|
configure_timeouts
|
50
55
|
configure_ssl
|
51
56
|
configure_auth
|
57
|
+
configure_redirect_handling
|
52
58
|
|
53
59
|
@http_request
|
54
60
|
end
|
55
|
-
|
56
61
|
end
|
57
62
|
|
58
63
|
class SOAPRequest < HTTPRequest
|
@@ -69,6 +74,7 @@ module Savon
|
|
69
74
|
configure_headers options[:soap_action]
|
70
75
|
configure_ssl
|
71
76
|
configure_auth
|
77
|
+
configure_redirect_handling
|
72
78
|
|
73
79
|
@http_request
|
74
80
|
end
|
@@ -84,6 +90,5 @@ module Savon
|
|
84
90
|
@http_request.headers["SOAPAction"] ||= %{"#{soap_action}"} if soap_action
|
85
91
|
@http_request.headers["Content-Type"] ||= CONTENT_TYPE[@globals[:soap_version]] % @globals[:encoding]
|
86
92
|
end
|
87
|
-
|
88
93
|
end
|
89
94
|
end
|
data/lib/savon/version.rb
CHANGED
data/savon.gemspec
CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
|
|
17
17
|
s.license = 'MIT'
|
18
18
|
|
19
19
|
s.add_dependency "nori", "~> 2.4.0"
|
20
|
-
s.add_dependency "httpi", "~> 2.
|
20
|
+
s.add_dependency "httpi", "~> 2.2.3"
|
21
21
|
s.add_dependency "wasabi", "~> 3.3.0"
|
22
22
|
s.add_dependency "akami", "~> 1.2.0"
|
23
23
|
s.add_dependency "gyoku", "~> 1.1.0"
|
@@ -0,0 +1,1267 @@
|
|
1
|
+
|
2
|
+
<?xml version="1.0" encoding="utf-8"?>
|
3
|
+
<wsdl:definitions xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://www.JOI.com/schemas/ViaSub.WMS/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://www.JOI.com/schemas/ViaSub.WMS/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
|
4
|
+
<wsdl:types>
|
5
|
+
<s:schema elementFormDefault="qualified" targetNamespace="http://www.JOI.com/schemas/ViaSub.WMS/">
|
6
|
+
<s:element name="extLoginData" type="tns:ExternalLoginData" />
|
7
|
+
<s:complexType name="ExternalLoginData">
|
8
|
+
<s:sequence>
|
9
|
+
<s:element minOccurs="0" maxOccurs="1" name="ThreePLKey" type="s:string" />
|
10
|
+
<s:element minOccurs="0" maxOccurs="1" name="Login" type="s:string" />
|
11
|
+
<s:element minOccurs="0" maxOccurs="1" name="Password" type="s:string" />
|
12
|
+
<s:element minOccurs="1" maxOccurs="1" name="FacilityID" type="s:int" />
|
13
|
+
</s:sequence>
|
14
|
+
</s:complexType>
|
15
|
+
<s:element name="orders" type="tns:ArrayOfOrder" />
|
16
|
+
<s:complexType name="ArrayOfOrder">
|
17
|
+
<s:sequence>
|
18
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="Order" nillable="true" type="tns:Order" />
|
19
|
+
</s:sequence>
|
20
|
+
</s:complexType>
|
21
|
+
<s:complexType name="Order">
|
22
|
+
<s:sequence>
|
23
|
+
<s:element minOccurs="0" maxOccurs="1" name="TransInfo" type="tns:TransactionInfoExt" />
|
24
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShipTo" type="tns:ContactInfoExt" />
|
25
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShippingInstructions" type="tns:ShippingInstructionsExt" />
|
26
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShipmentInfo" type="tns:ShipmentInfoExt" />
|
27
|
+
<s:element minOccurs="0" maxOccurs="1" name="Notes" type="s:string" />
|
28
|
+
<s:element minOccurs="1" maxOccurs="1" name="PalletCount" type="s:int" />
|
29
|
+
<s:element minOccurs="0" maxOccurs="1" name="OrderLineItems" type="tns:ArrayOfOrderLineItem" />
|
30
|
+
<s:element minOccurs="0" maxOccurs="1" name="SavedElements" type="tns:ArrayOfCodeDescrPair" />
|
31
|
+
<s:element minOccurs="0" maxOccurs="1" name="FulfillmentInfo" type="tns:FulfillInvInfo" />
|
32
|
+
<s:element minOccurs="0" maxOccurs="1" name="SoldTo" type="tns:ContactInfoExt" />
|
33
|
+
</s:sequence>
|
34
|
+
</s:complexType>
|
35
|
+
<s:complexType name="TransactionInfoExt">
|
36
|
+
<s:sequence>
|
37
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReferenceNum" type="s:string" />
|
38
|
+
<s:element minOccurs="1" maxOccurs="1" name="ExpectedDate" type="s:dateTime" />
|
39
|
+
<s:element minOccurs="1" maxOccurs="1" name="EarliestShipDate" type="s:dateTime" />
|
40
|
+
<s:element minOccurs="1" maxOccurs="1" name="ShipCancelDate" type="s:dateTime" />
|
41
|
+
<s:element minOccurs="0" maxOccurs="1" name="PONum" type="s:string" />
|
42
|
+
</s:sequence>
|
43
|
+
</s:complexType>
|
44
|
+
<s:complexType name="ContactInfoExt">
|
45
|
+
<s:sequence>
|
46
|
+
<s:element minOccurs="0" maxOccurs="1" name="Name" type="s:string" />
|
47
|
+
<s:element minOccurs="0" maxOccurs="1" name="CompanyName" type="s:string" />
|
48
|
+
<s:element minOccurs="0" maxOccurs="1" name="Address" type="tns:AddressExt" />
|
49
|
+
<s:element minOccurs="0" maxOccurs="1" name="PhoneNumber1" type="s:string" />
|
50
|
+
<s:element minOccurs="0" maxOccurs="1" name="Fax" type="s:string" />
|
51
|
+
<s:element minOccurs="0" maxOccurs="1" name="EmailAddress1" type="s:string" />
|
52
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerName" type="s:string" />
|
53
|
+
<s:element minOccurs="0" maxOccurs="1" name="Vendor" type="s:string" />
|
54
|
+
<s:element minOccurs="0" maxOccurs="1" name="Dept" type="s:string" />
|
55
|
+
<s:element minOccurs="1" maxOccurs="1" name="RetailerID" type="s:int" />
|
56
|
+
</s:sequence>
|
57
|
+
</s:complexType>
|
58
|
+
<s:complexType name="AddressExt">
|
59
|
+
<s:sequence>
|
60
|
+
<s:element minOccurs="0" maxOccurs="1" name="Address1" type="s:string" />
|
61
|
+
<s:element minOccurs="0" maxOccurs="1" name="Address2" type="s:string" />
|
62
|
+
<s:element minOccurs="0" maxOccurs="1" name="City" type="s:string" />
|
63
|
+
<s:element minOccurs="0" maxOccurs="1" name="State" type="s:string" />
|
64
|
+
<s:element minOccurs="0" maxOccurs="1" name="Zip" type="s:string" />
|
65
|
+
<s:element minOccurs="0" maxOccurs="1" name="Country" type="s:string" />
|
66
|
+
</s:sequence>
|
67
|
+
</s:complexType>
|
68
|
+
<s:complexType name="ShippingInstructionsExt">
|
69
|
+
<s:sequence>
|
70
|
+
<s:element minOccurs="0" maxOccurs="1" name="Carrier" type="s:string" />
|
71
|
+
<s:element minOccurs="0" maxOccurs="1" name="Mode" type="s:string" />
|
72
|
+
<s:element minOccurs="0" maxOccurs="1" name="BillingCode" type="s:string" />
|
73
|
+
<s:element minOccurs="0" maxOccurs="1" name="Account" type="s:string" />
|
74
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShippingNotes" type="s:string" />
|
75
|
+
</s:sequence>
|
76
|
+
</s:complexType>
|
77
|
+
<s:complexType name="ShipmentInfoExt">
|
78
|
+
<s:sequence>
|
79
|
+
<s:element minOccurs="1" maxOccurs="1" name="NumUnits1" type="s:decimal" />
|
80
|
+
<s:element minOccurs="1" maxOccurs="1" name="NumUnits1TypeID" type="s:int" />
|
81
|
+
<s:element minOccurs="0" maxOccurs="1" name="NumUnits1TypeDesc" type="s:string" />
|
82
|
+
<s:element minOccurs="1" maxOccurs="1" name="NumUnits2" type="s:decimal" />
|
83
|
+
<s:element minOccurs="1" maxOccurs="1" name="NumUnits2TypeID" type="s:int" />
|
84
|
+
<s:element minOccurs="0" maxOccurs="1" name="NumUnits2TypeDesc" type="s:string" />
|
85
|
+
<s:element minOccurs="1" maxOccurs="1" name="TotalWeight" type="s:decimal" />
|
86
|
+
<s:element minOccurs="1" maxOccurs="1" name="TotalVolume" type="s:decimal" />
|
87
|
+
</s:sequence>
|
88
|
+
</s:complexType>
|
89
|
+
<s:complexType name="ArrayOfOrderLineItem">
|
90
|
+
<s:sequence>
|
91
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="OrderLineItem" type="tns:OrderLineItem" />
|
92
|
+
</s:sequence>
|
93
|
+
</s:complexType>
|
94
|
+
<s:complexType name="OrderLineItem">
|
95
|
+
<s:sequence>
|
96
|
+
<s:element minOccurs="0" maxOccurs="1" name="SKU" type="s:string" />
|
97
|
+
<s:element minOccurs="0" maxOccurs="1" name="Qualifier" type="s:string" />
|
98
|
+
<s:element minOccurs="1" maxOccurs="1" name="Qty" type="s:decimal" />
|
99
|
+
<s:element minOccurs="1" maxOccurs="1" name="Packed" type="s:decimal" />
|
100
|
+
<s:element minOccurs="1" maxOccurs="1" name="CuFtPerCarton" type="s:decimal" />
|
101
|
+
<s:element minOccurs="0" maxOccurs="1" name="LotNumber" type="s:string" />
|
102
|
+
<s:element minOccurs="0" maxOccurs="1" name="SerialNumber" type="s:string" />
|
103
|
+
<s:element minOccurs="1" maxOccurs="1" name="ExpirationDate" type="s:dateTime" />
|
104
|
+
<s:element minOccurs="0" maxOccurs="1" name="Notes" type="s:string" />
|
105
|
+
<s:element minOccurs="1" maxOccurs="1" name="FulfillmentSalePrice" type="s:decimal" />
|
106
|
+
<s:element minOccurs="1" maxOccurs="1" name="FulfillmentDiscountPercentage" type="s:decimal" />
|
107
|
+
<s:element minOccurs="1" maxOccurs="1" name="FulfillmentDiscountAmount" type="s:decimal" />
|
108
|
+
</s:sequence>
|
109
|
+
</s:complexType>
|
110
|
+
<s:complexType name="ArrayOfCodeDescrPair">
|
111
|
+
<s:sequence>
|
112
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="CodeDescrPair" type="tns:CodeDescrPair" />
|
113
|
+
</s:sequence>
|
114
|
+
</s:complexType>
|
115
|
+
<s:complexType name="CodeDescrPair">
|
116
|
+
<s:sequence>
|
117
|
+
<s:element minOccurs="0" maxOccurs="1" name="Code" type="s:string" />
|
118
|
+
<s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" />
|
119
|
+
</s:sequence>
|
120
|
+
</s:complexType>
|
121
|
+
<s:complexType name="FulfillInvInfo">
|
122
|
+
<s:sequence>
|
123
|
+
<s:element minOccurs="1" maxOccurs="1" name="FulfillInvShippingAndHandling" type="s:decimal" />
|
124
|
+
<s:element minOccurs="1" maxOccurs="1" name="FulfillInvTax" type="s:decimal" />
|
125
|
+
<s:element minOccurs="0" maxOccurs="1" name="FulfillInvDiscountCode" type="s:string" />
|
126
|
+
<s:element minOccurs="1" maxOccurs="1" name="FulfillInvDiscountAmount" type="s:decimal" />
|
127
|
+
<s:element minOccurs="0" maxOccurs="1" name="FulfillInvGiftMessage" type="s:string" />
|
128
|
+
</s:sequence>
|
129
|
+
</s:complexType>
|
130
|
+
<s:element name="warnings" type="s:string" />
|
131
|
+
<s:element name="Int32" type="s:int" />
|
132
|
+
<s:element name="updateOrders" type="tns:ArrayOfUpdateOrder" />
|
133
|
+
<s:complexType name="ArrayOfUpdateOrder">
|
134
|
+
<s:sequence>
|
135
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="UpdateOrder" nillable="true" type="tns:UpdateOrder" />
|
136
|
+
</s:sequence>
|
137
|
+
</s:complexType>
|
138
|
+
<s:complexType name="UpdateOrder">
|
139
|
+
<s:sequence>
|
140
|
+
<s:element minOccurs="1" maxOccurs="1" name="WarehouseTransactionID" type="s:int" />
|
141
|
+
<s:element minOccurs="0" maxOccurs="1" name="BillOfLading" type="s:string" />
|
142
|
+
<s:element minOccurs="0" maxOccurs="1" name="TrackingNumber" type="s:string" />
|
143
|
+
<s:element minOccurs="1" maxOccurs="1" name="ConfirmationDate" type="s:dateTime" />
|
144
|
+
</s:sequence>
|
145
|
+
</s:complexType>
|
146
|
+
<s:element name="cancelOrders" type="tns:ArrayOfCancelOrder" />
|
147
|
+
<s:complexType name="ArrayOfCancelOrder">
|
148
|
+
<s:sequence>
|
149
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="CancelOrder" nillable="true" type="tns:CancelOrder" />
|
150
|
+
</s:sequence>
|
151
|
+
</s:complexType>
|
152
|
+
<s:complexType name="CancelOrder">
|
153
|
+
<s:sequence>
|
154
|
+
<s:element minOccurs="1" maxOccurs="1" name="WarehouseTransactionID" type="s:int" />
|
155
|
+
<s:element minOccurs="0" maxOccurs="1" name="Reason" type="s:string" />
|
156
|
+
<s:element minOccurs="1" maxOccurs="1" name="Charge" type="s:decimal" />
|
157
|
+
</s:sequence>
|
158
|
+
</s:complexType>
|
159
|
+
<s:element name="userLoginData" nillable="true" type="tns:UserLoginData" />
|
160
|
+
<s:complexType name="UserLoginData">
|
161
|
+
<s:sequence>
|
162
|
+
<s:element minOccurs="1" maxOccurs="1" name="ThreePLID" type="s:int" />
|
163
|
+
<s:element minOccurs="0" maxOccurs="1" name="Login" type="s:string" />
|
164
|
+
<s:element minOccurs="0" maxOccurs="1" name="Password" type="s:string" />
|
165
|
+
</s:sequence>
|
166
|
+
</s:complexType>
|
167
|
+
<s:element name="ReportRetailersResult" type="tns:ArrayOfRetailer" />
|
168
|
+
<s:complexType name="ArrayOfRetailer">
|
169
|
+
<s:sequence>
|
170
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="Retailer" nillable="true" type="tns:Retailer" />
|
171
|
+
</s:sequence>
|
172
|
+
</s:complexType>
|
173
|
+
<s:complexType name="Retailer">
|
174
|
+
<s:sequence>
|
175
|
+
<s:element minOccurs="1" maxOccurs="1" name="RetailerID" type="s:int" />
|
176
|
+
<s:element minOccurs="0" maxOccurs="1" name="RetailerNumber" type="s:string" />
|
177
|
+
<s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" />
|
178
|
+
<s:element minOccurs="1" maxOccurs="1" name="CustomerID" type="s:int" />
|
179
|
+
<s:element minOccurs="1" maxOccurs="1" name="LabelUID" type="s:int" />
|
180
|
+
</s:sequence>
|
181
|
+
</s:complexType>
|
182
|
+
<s:element name="focr" nillable="true" type="tns:FindOrderCriteria" />
|
183
|
+
<s:complexType name="FindOrderCriteria">
|
184
|
+
<s:sequence>
|
185
|
+
<s:element minOccurs="1" maxOccurs="1" name="CustomerID" type="s:int" />
|
186
|
+
<s:element minOccurs="1" maxOccurs="1" name="FacilityID" type="s:int" />
|
187
|
+
<s:element minOccurs="1" maxOccurs="1" name="RetailerID" type="s:int" />
|
188
|
+
<s:element minOccurs="1" maxOccurs="1" name="MarkForListID" type="s:int" />
|
189
|
+
<s:element minOccurs="1" maxOccurs="1" name="OrderFtpID" type="s:int" />
|
190
|
+
<s:element minOccurs="0" maxOccurs="1" name="NoteContains" type="s:string" />
|
191
|
+
<s:element minOccurs="0" maxOccurs="1" name="RefNumberContains" type="s:string" />
|
192
|
+
<s:element minOccurs="1" maxOccurs="1" name="OverAlloc" type="tns:FindTriStateType" />
|
193
|
+
<s:element minOccurs="1" maxOccurs="1" name="Closed" type="tns:FindTriStateType" />
|
194
|
+
<s:element minOccurs="1" maxOccurs="1" name="ASNSent" type="tns:FindTriStateType" />
|
195
|
+
<s:element minOccurs="1" maxOccurs="1" name="RouteSent" type="tns:FindTriStateType" />
|
196
|
+
<s:element minOccurs="1" maxOccurs="1" name="Stage" type="s:int" />
|
197
|
+
<s:element minOccurs="0" maxOccurs="1" name="BeginDate" type="tns:I18nDateTime" />
|
198
|
+
<s:element minOccurs="0" maxOccurs="1" name="EndDate" type="tns:I18nDateTime" />
|
199
|
+
<s:element minOccurs="1" maxOccurs="1" name="DateRangeType" type="tns:FindOrderDateRangeType" />
|
200
|
+
<s:element minOccurs="1" maxOccurs="1" name="BeginTrans" type="s:int" />
|
201
|
+
<s:element minOccurs="1" maxOccurs="1" name="EndTrans" type="s:int" />
|
202
|
+
<s:element minOccurs="0" maxOccurs="1" name="MasterBOLID" type="s:string" />
|
203
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReferenceNum" type="s:string" />
|
204
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShipTo" type="s:string" />
|
205
|
+
<s:element minOccurs="0" maxOccurs="1" name="PoList" type="s:string" />
|
206
|
+
<s:element minOccurs="0" maxOccurs="1" name="SKUList" type="s:string" />
|
207
|
+
<s:element minOccurs="1" maxOccurs="1" name="AddressStatus" type="tns:AddressStatusType" />
|
208
|
+
<s:element minOccurs="1" maxOccurs="1" name="BatchID" type="s:int" />
|
209
|
+
</s:sequence>
|
210
|
+
</s:complexType>
|
211
|
+
<s:simpleType name="FindTriStateType">
|
212
|
+
<s:restriction base="s:string">
|
213
|
+
<s:enumeration value="Exclude" />
|
214
|
+
<s:enumeration value="IncludeOnly" />
|
215
|
+
<s:enumeration value="Any" />
|
216
|
+
</s:restriction>
|
217
|
+
</s:simpleType>
|
218
|
+
<s:complexType name="I18nDateTime">
|
219
|
+
<s:simpleContent>
|
220
|
+
<s:extension base="s:dateTime" />
|
221
|
+
</s:simpleContent>
|
222
|
+
</s:complexType>
|
223
|
+
<s:simpleType name="FindOrderDateRangeType">
|
224
|
+
<s:restriction base="s:string">
|
225
|
+
<s:enumeration value="None" />
|
226
|
+
<s:enumeration value="Create" />
|
227
|
+
<s:enumeration value="Confirm" />
|
228
|
+
<s:enumeration value="ASNSent" />
|
229
|
+
<s:enumeration value="Pickup" />
|
230
|
+
<s:enumeration value="PickDone" />
|
231
|
+
<s:enumeration value="PackDone" />
|
232
|
+
<s:enumeration value="LoadOutDone" />
|
233
|
+
</s:restriction>
|
234
|
+
</s:simpleType>
|
235
|
+
<s:simpleType name="AddressStatusType">
|
236
|
+
<s:restriction base="s:string">
|
237
|
+
<s:enumeration value="Any" />
|
238
|
+
<s:enumeration value="Unconfirmed" />
|
239
|
+
<s:enumeration value="Confirmed" />
|
240
|
+
<s:enumeration value="UserAccepted" />
|
241
|
+
</s:restriction>
|
242
|
+
</s:simpleType>
|
243
|
+
<s:element name="limitCount" type="s:int" />
|
244
|
+
<s:element name="FindOrders" type="s:string" />
|
245
|
+
<s:element name="totalOrders" type="s:int" />
|
246
|
+
<s:element name="string" type="s:string" />
|
247
|
+
<s:element name="SmallParcelOrdersResult" type="tns:ArrayOfSmallParcel" />
|
248
|
+
<s:complexType name="ArrayOfSmallParcel">
|
249
|
+
<s:sequence>
|
250
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="SmallParcel" nillable="true" type="tns:SmallParcel" />
|
251
|
+
</s:sequence>
|
252
|
+
</s:complexType>
|
253
|
+
<s:complexType name="SmallParcel">
|
254
|
+
<s:sequence>
|
255
|
+
<s:element minOccurs="0" maxOccurs="1" name="WarehouseTransaction" type="tns:WarehouseTransaction" />
|
256
|
+
<s:element minOccurs="0" maxOccurs="1" name="Facility" type="tns:Facility" />
|
257
|
+
<s:element minOccurs="0" maxOccurs="1" name="Retailer" type="tns:Retailer" />
|
258
|
+
<s:element minOccurs="0" maxOccurs="1" name="ThirdPartyBilling" type="tns:ContactInfo" />
|
259
|
+
<s:element minOccurs="0" maxOccurs="1" name="Packages" type="tns:ArrayOfPackage" />
|
260
|
+
<s:element minOccurs="0" maxOccurs="1" name="OrderItem" type="tns:ArrayOfSmallParcelOrderItem" />
|
261
|
+
</s:sequence>
|
262
|
+
</s:complexType>
|
263
|
+
<s:complexType name="WarehouseTransaction">
|
264
|
+
<s:sequence>
|
265
|
+
<s:element minOccurs="1" maxOccurs="1" name="WarehouseTransactionID" type="s:int" />
|
266
|
+
<s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" />
|
267
|
+
<s:element minOccurs="1" maxOccurs="1" name="WarehouseTransactionTypeID" type="tns:WarehouseTransactionType" />
|
268
|
+
<s:element minOccurs="0" maxOccurs="1" name="WarehouseTransactionTypeDesc" type="s:string" />
|
269
|
+
<s:element minOccurs="1" maxOccurs="1" name="CustomerID" type="s:int" />
|
270
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerDesc" type="s:string" />
|
271
|
+
<s:element minOccurs="0" maxOccurs="1" name="CreationDate" type="tns:I18nDateTime" />
|
272
|
+
<s:element minOccurs="0" maxOccurs="1" name="LastModifiedDate" type="tns:I18nDateTime" />
|
273
|
+
<s:element minOccurs="0" maxOccurs="1" name="TransInfo" type="tns:TransactionInfo" />
|
274
|
+
<s:element minOccurs="0" maxOccurs="1" name="CreatedBy" type="tns:UserLogin" />
|
275
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShipTo" type="tns:ContactInfo" />
|
276
|
+
<s:element minOccurs="0" maxOccurs="1" name="SoldTo" type="tns:ContactInfo" />
|
277
|
+
<s:element minOccurs="0" maxOccurs="1" name="CostInfo" type="tns:CostInfo" />
|
278
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShippingInstructions" type="tns:ShippingInstructions" />
|
279
|
+
<s:element minOccurs="0" maxOccurs="1" name="TrackingInfo" type="tns:TrackingInfo" />
|
280
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShipmentInfo" type="tns:ShipmentInfo" />
|
281
|
+
<s:element minOccurs="0" maxOccurs="1" name="FulfillInvInfo" type="tns:FulfillInvInfo" />
|
282
|
+
<s:element minOccurs="0" maxOccurs="1" name="Notes" type="s:string" />
|
283
|
+
<s:element minOccurs="0" maxOccurs="1" name="ProcessDate" type="tns:I18nDateTime" />
|
284
|
+
<s:element minOccurs="0" maxOccurs="1" name="PickTicketPrintDate" type="tns:I18nDateTime" />
|
285
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="tns:WarehouseTransactionStatus" />
|
286
|
+
<s:element minOccurs="1" maxOccurs="1" name="FacilityID" type="s:int" />
|
287
|
+
<s:element minOccurs="1" maxOccurs="1" name="UnderAllocated" type="s:boolean" />
|
288
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsCOD" type="s:boolean" />
|
289
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsInsurance" type="s:boolean" />
|
290
|
+
<s:element minOccurs="1" maxOccurs="1" name="UPSServiceOptionCharge" type="s:decimal" />
|
291
|
+
<s:element minOccurs="1" maxOccurs="1" name="UPSTransportationCharge" type="s:decimal" />
|
292
|
+
<s:element minOccurs="1" maxOccurs="1" name="AddFreightToCOD" type="s:boolean" />
|
293
|
+
<s:element minOccurs="1" maxOccurs="1" name="UPSIsResidential" type="s:boolean" />
|
294
|
+
<s:element minOccurs="1" maxOccurs="1" name="ASNSent" type="s:boolean" />
|
295
|
+
<s:element minOccurs="0" maxOccurs="1" name="ASNSentDate" type="tns:I18nDateTime" />
|
296
|
+
<s:element minOccurs="1" maxOccurs="1" name="RouteSent" type="s:boolean" />
|
297
|
+
<s:element minOccurs="0" maxOccurs="1" name="RoutePickupDate" type="tns:I18nDateTime" />
|
298
|
+
<s:element minOccurs="1" maxOccurs="1" name="PkgsExported" type="s:boolean" />
|
299
|
+
<s:element minOccurs="1" maxOccurs="1" name="StorageChargePeriodTypeID" type="tns:StorageChargePeriodType" />
|
300
|
+
<s:element minOccurs="1" maxOccurs="1" name="ImportModuleID" type="s:int" />
|
301
|
+
<s:element minOccurs="0" maxOccurs="1" name="ExportModuleIDs" type="s:string" />
|
302
|
+
<s:element minOccurs="1" maxOccurs="1" name="OrderFtpID" type="s:int" />
|
303
|
+
<s:element minOccurs="1" maxOccurs="1" name="LabelsExported" type="s:boolean" />
|
304
|
+
<s:element minOccurs="1" maxOccurs="1" name="BatchOrderID" type="s:int" />
|
305
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsStageSet" type="s:boolean" />
|
306
|
+
<s:element minOccurs="1" maxOccurs="1" name="Stage" type="s:int" />
|
307
|
+
<s:element minOccurs="0" maxOccurs="1" name="InvoiceDeliveredDate" type="tns:I18nDateTime" />
|
308
|
+
<s:element minOccurs="0" maxOccurs="1" name="CapacityType" type="tns:CapacityType" />
|
309
|
+
<s:element minOccurs="0" maxOccurs="1" name="TransactionEntryType" type="tns:TransactionEntryType" />
|
310
|
+
<s:element minOccurs="1" maxOccurs="1" name="PurchaseOrderID" type="s:int" />
|
311
|
+
<s:element minOccurs="1" maxOccurs="1" name="LoadedState" type="tns:LoadOutLogState" />
|
312
|
+
<s:element minOccurs="1" maxOccurs="1" name="LoadOutPercentage" type="s:int" />
|
313
|
+
<s:element minOccurs="1" maxOccurs="1" name="RequiresDeliveryConf" type="s:boolean" />
|
314
|
+
<s:element minOccurs="1" maxOccurs="1" name="RequiresReturnReceipt" type="s:boolean" />
|
315
|
+
<s:element minOccurs="1" maxOccurs="1" name="PickDoneDate" type="s:dateTime" />
|
316
|
+
<s:element minOccurs="1" maxOccurs="1" name="PackDoneDate" type="s:dateTime" />
|
317
|
+
<s:element minOccurs="1" maxOccurs="1" name="LoadOutDoneDate" type="s:dateTime" />
|
318
|
+
<s:element minOccurs="1" maxOccurs="1" name="ExpectedDate" type="s:dateTime" />
|
319
|
+
<s:element minOccurs="1" maxOccurs="1" name="ReallocatedAfterPickTicketDate" type="s:dateTime" />
|
320
|
+
<s:element minOccurs="1" maxOccurs="1" name="ShipDate" type="s:dateTime" />
|
321
|
+
<s:element minOccurs="1" maxOccurs="1" name="EndOfDayDate" type="s:dateTime" />
|
322
|
+
<s:element minOccurs="0" maxOccurs="1" name="SavedElements" type="tns:ArrayOfCodeDescrPair1" />
|
323
|
+
<s:element minOccurs="0" maxOccurs="1" name="orderItems" type="tns:ArrayOfOrderItem" />
|
324
|
+
<s:element minOccurs="1" maxOccurs="1" name="FreightRateStatus" type="tns:WarehouseTransactionFreightRateStatus" />
|
325
|
+
<s:element minOccurs="0" maxOccurs="1" name="BillTo" type="tns:ContactInfo" />
|
326
|
+
<s:element minOccurs="1" maxOccurs="1" name="WarehouseTransactionSourceID" type="s:int" />
|
327
|
+
<s:element minOccurs="1" maxOccurs="1" name="WarehouseTransactionSourceSetupID" type="s:int" />
|
328
|
+
<s:element minOccurs="0" maxOccurs="1" name="WarehouseTransactionSourceDisplay" type="s:string" />
|
329
|
+
</s:sequence>
|
330
|
+
</s:complexType>
|
331
|
+
<s:simpleType name="WarehouseTransactionType">
|
332
|
+
<s:restriction base="s:string">
|
333
|
+
<s:enumeration value="Default" />
|
334
|
+
<s:enumeration value="Inbound" />
|
335
|
+
<s:enumeration value="Order" />
|
336
|
+
<s:enumeration value="Adjust" />
|
337
|
+
<s:enumeration value="Assembly" />
|
338
|
+
</s:restriction>
|
339
|
+
</s:simpleType>
|
340
|
+
<s:complexType name="TransactionInfo">
|
341
|
+
<s:sequence>
|
342
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReferenceNum" type="s:string" />
|
343
|
+
<s:element minOccurs="0" maxOccurs="1" name="PONum" type="s:string" />
|
344
|
+
<s:element minOccurs="0" maxOccurs="1" name="ExpectedDate" type="tns:I18nDateTime" />
|
345
|
+
<s:element minOccurs="0" maxOccurs="1" name="EarliestShipDate" type="tns:I18nDateTime" />
|
346
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShipCancelDate" type="tns:I18nDateTime" />
|
347
|
+
<s:element minOccurs="0" maxOccurs="1" name="ASNNumber" type="s:string" />
|
348
|
+
</s:sequence>
|
349
|
+
</s:complexType>
|
350
|
+
<s:complexType name="UserLogin">
|
351
|
+
<s:sequence>
|
352
|
+
<s:element minOccurs="1" maxOccurs="1" name="UserLoginID" type="s:int" />
|
353
|
+
<s:element minOccurs="0" maxOccurs="1" name="UserName" type="s:string" />
|
354
|
+
<s:element minOccurs="0" maxOccurs="1" name="Login" type="s:string" />
|
355
|
+
<s:element minOccurs="0" maxOccurs="1" name="Password" type="s:string" />
|
356
|
+
<s:element minOccurs="1" maxOccurs="1" name="Salt" type="s:int" />
|
357
|
+
<s:element minOccurs="0" maxOccurs="1" name="UserRole" type="s:string" />
|
358
|
+
<s:element minOccurs="0" maxOccurs="1" name="HintPhrase" type="s:string" />
|
359
|
+
<s:element minOccurs="1" maxOccurs="1" name="CustomerID" type="s:int" />
|
360
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerDescr" type="s:string" />
|
361
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerIDs" type="tns:ArrayOfInt" />
|
362
|
+
<s:element minOccurs="1" maxOccurs="1" name="CustomerGroupId" type="s:int" />
|
363
|
+
<s:element minOccurs="0" maxOccurs="1" name="FacilityIDs" type="tns:ArrayOfInt" />
|
364
|
+
<s:element minOccurs="1" maxOccurs="1" name="Deactivated" type="s:boolean" />
|
365
|
+
<s:element minOccurs="1" maxOccurs="1" name="PrefSelOrdFromList" type="s:boolean" />
|
366
|
+
<s:element minOccurs="0" maxOccurs="1" name="CreationDate" type="tns:I18nDateTime" />
|
367
|
+
<s:element minOccurs="0" maxOccurs="1" name="Email" type="s:string" />
|
368
|
+
<s:element minOccurs="0" maxOccurs="1" name="CellPhone" type="s:string" />
|
369
|
+
<s:element minOccurs="1" maxOccurs="1" name="CellCarrierId" type="s:int" />
|
370
|
+
</s:sequence>
|
371
|
+
</s:complexType>
|
372
|
+
<s:complexType name="ArrayOfInt">
|
373
|
+
<s:sequence>
|
374
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="int" type="s:int" />
|
375
|
+
</s:sequence>
|
376
|
+
</s:complexType>
|
377
|
+
<s:complexType name="ContactInfo">
|
378
|
+
<s:sequence>
|
379
|
+
<s:element minOccurs="1" maxOccurs="1" name="ContactID" type="s:int" />
|
380
|
+
<s:element minOccurs="0" maxOccurs="1" name="Name" type="s:string" />
|
381
|
+
<s:element minOccurs="0" maxOccurs="1" name="Title" type="s:string" />
|
382
|
+
<s:element minOccurs="0" maxOccurs="1" name="CompanyName" type="s:string" />
|
383
|
+
<s:element minOccurs="0" maxOccurs="1" name="Address" type="tns:Address" />
|
384
|
+
<s:element minOccurs="0" maxOccurs="1" name="PhoneNumber1" type="s:string" />
|
385
|
+
<s:element minOccurs="0" maxOccurs="1" name="Fax" type="s:string" />
|
386
|
+
<s:element minOccurs="0" maxOccurs="1" name="EmailAddress1" type="s:string" />
|
387
|
+
<s:element minOccurs="1" maxOccurs="1" name="RetailerID" type="s:int" />
|
388
|
+
<s:element minOccurs="0" maxOccurs="1" name="Dept" type="s:string" />
|
389
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsShipToQuickLookup" type="s:boolean" />
|
390
|
+
<s:element minOccurs="0" maxOccurs="1" name="ContactType" type="s:string" />
|
391
|
+
<s:element minOccurs="0" maxOccurs="1" name="Code" type="s:string" />
|
392
|
+
<s:element minOccurs="1" maxOccurs="1" name="CustomerID" type="s:int" />
|
393
|
+
<s:element minOccurs="0" maxOccurs="1" name="Bill3rdPartyAccount" type="s:string" />
|
394
|
+
<s:element minOccurs="1" maxOccurs="1" name="AddressStatus" type="tns:AddressStatusType" />
|
395
|
+
</s:sequence>
|
396
|
+
</s:complexType>
|
397
|
+
<s:complexType name="Address">
|
398
|
+
<s:sequence>
|
399
|
+
<s:element minOccurs="0" maxOccurs="1" name="Address1" type="s:string" />
|
400
|
+
<s:element minOccurs="0" maxOccurs="1" name="Address2" type="s:string" />
|
401
|
+
<s:element minOccurs="0" maxOccurs="1" name="City" type="s:string" />
|
402
|
+
<s:element minOccurs="0" maxOccurs="1" name="State" type="s:string" />
|
403
|
+
<s:element minOccurs="0" maxOccurs="1" name="Zip" type="s:string" />
|
404
|
+
<s:element minOccurs="0" maxOccurs="1" name="Country" type="s:string" />
|
405
|
+
</s:sequence>
|
406
|
+
</s:complexType>
|
407
|
+
<s:complexType name="CostInfo">
|
408
|
+
<s:sequence>
|
409
|
+
<s:element minOccurs="0" maxOccurs="1" name="hasValueNumberFields" type="tns:ArrayOfString" />
|
410
|
+
<s:element minOccurs="1" maxOccurs="1" name="AutoCalcHandling" type="s:decimal" />
|
411
|
+
<s:element minOccurs="0" maxOccurs="1" name="AutoCalcHandlingDetail" type="tns:ArrayOfCostInfoDetail" />
|
412
|
+
<s:element minOccurs="1" maxOccurs="1" name="Handling" type="s:decimal" />
|
413
|
+
<s:element minOccurs="0" maxOccurs="1" name="HandlingDetail" type="tns:ArrayOfCostInfoDetail" />
|
414
|
+
<s:element minOccurs="1" maxOccurs="1" name="AutoCalcStorage" type="s:decimal" />
|
415
|
+
<s:element minOccurs="0" maxOccurs="1" name="AutoCalcStorageDetail" type="tns:ArrayOfCostInfoDetail" />
|
416
|
+
<s:element minOccurs="1" maxOccurs="1" name="Storage" type="s:decimal" />
|
417
|
+
<s:element minOccurs="0" maxOccurs="1" name="StorageDetail" type="tns:ArrayOfCostInfoDetail" />
|
418
|
+
<s:element minOccurs="1" maxOccurs="1" name="FreightPP" type="s:decimal" />
|
419
|
+
<s:element minOccurs="0" maxOccurs="1" name="FreightPPDetail" type="tns:ArrayOfCostInfoDetail" />
|
420
|
+
<s:element minOccurs="1" maxOccurs="1" name="Materials" type="s:decimal" />
|
421
|
+
<s:element minOccurs="0" maxOccurs="1" name="MaterialsDetail" type="tns:ArrayOfCostInfoDetail" />
|
422
|
+
<s:element minOccurs="1" maxOccurs="1" name="SpecialCharges" type="s:decimal" />
|
423
|
+
<s:element minOccurs="0" maxOccurs="1" name="SpecialChargesDetail" type="tns:ArrayOfCostInfoDetail" />
|
424
|
+
<s:element minOccurs="1" maxOccurs="1" name="Freight3" type="s:decimal" />
|
425
|
+
<s:element minOccurs="0" maxOccurs="1" name="Freight3Detail" type="tns:ArrayOfCostInfoDetail" />
|
426
|
+
</s:sequence>
|
427
|
+
</s:complexType>
|
428
|
+
<s:complexType name="ArrayOfString">
|
429
|
+
<s:sequence>
|
430
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="string" nillable="true" type="s:string" />
|
431
|
+
</s:sequence>
|
432
|
+
</s:complexType>
|
433
|
+
<s:complexType name="ArrayOfCostInfoDetail">
|
434
|
+
<s:sequence>
|
435
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="CostInfoDetail" nillable="true" type="tns:CostInfoDetail" />
|
436
|
+
</s:sequence>
|
437
|
+
</s:complexType>
|
438
|
+
<s:complexType name="CostInfoDetail">
|
439
|
+
<s:sequence>
|
440
|
+
<s:element minOccurs="1" maxOccurs="1" name="NumUnits" type="s:decimal" />
|
441
|
+
<s:element minOccurs="0" maxOccurs="1" name="ChargeLabel" type="s:string" />
|
442
|
+
<s:element minOccurs="0" maxOccurs="1" name="UnitDescription" type="s:string" />
|
443
|
+
<s:element minOccurs="1" maxOccurs="1" name="ChargePerUnit" type="s:decimal" />
|
444
|
+
<s:element minOccurs="0" maxOccurs="1" name="GLAcctNum" type="s:string" />
|
445
|
+
<s:element minOccurs="0" maxOccurs="1" name="SKU" type="s:string" />
|
446
|
+
<s:element minOccurs="0" maxOccurs="1" name="PTItem" type="s:string" />
|
447
|
+
<s:element minOccurs="0" maxOccurs="1" name="PTItemDescription" type="s:string" />
|
448
|
+
<s:element minOccurs="0" maxOccurs="1" name="PTARAcct" type="s:string" />
|
449
|
+
<s:element minOccurs="1" maxOccurs="1" name="WarehouseTransactionPriceCalcID" type="s:int" />
|
450
|
+
</s:sequence>
|
451
|
+
</s:complexType>
|
452
|
+
<s:complexType name="ShippingInstructions">
|
453
|
+
<s:sequence>
|
454
|
+
<s:element minOccurs="0" maxOccurs="1" name="SCACCode" type="s:string" />
|
455
|
+
<s:element minOccurs="0" maxOccurs="1" name="Carrier" type="s:string" />
|
456
|
+
<s:element minOccurs="0" maxOccurs="1" name="CarrierDesc" type="s:string" />
|
457
|
+
<s:element minOccurs="0" maxOccurs="1" name="Mode" type="s:string" />
|
458
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShipService" type="s:string" />
|
459
|
+
<s:element minOccurs="0" maxOccurs="1" name="BillingCode" type="s:string" />
|
460
|
+
<s:element minOccurs="0" maxOccurs="1" name="Account" type="s:string" />
|
461
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShipPointZip" type="s:string" />
|
462
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShippingNotes" type="s:string" />
|
463
|
+
</s:sequence>
|
464
|
+
</s:complexType>
|
465
|
+
<s:complexType name="TrackingInfo">
|
466
|
+
<s:sequence>
|
467
|
+
<s:element minOccurs="0" maxOccurs="1" name="BillOfLading" type="s:string" />
|
468
|
+
<s:element minOccurs="0" maxOccurs="1" name="MasterBillOfLadingID" type="s:string" />
|
469
|
+
<s:element minOccurs="0" maxOccurs="1" name="TrackingNumber" type="s:string" />
|
470
|
+
<s:element minOccurs="0" maxOccurs="1" name="TrailerNumber" type="s:string" />
|
471
|
+
<s:element minOccurs="0" maxOccurs="1" name="SealNumber" type="s:string" />
|
472
|
+
<s:element minOccurs="0" maxOccurs="1" name="LoadNumber" type="s:string" />
|
473
|
+
<s:element minOccurs="0" maxOccurs="1" name="PickupDate" type="tns:I18nDateTime" />
|
474
|
+
<s:element minOccurs="0" maxOccurs="1" name="DoorNumber" type="s:string" />
|
475
|
+
</s:sequence>
|
476
|
+
</s:complexType>
|
477
|
+
<s:complexType name="ShipmentInfo">
|
478
|
+
<s:sequence>
|
479
|
+
<s:element minOccurs="1" maxOccurs="1" name="NumUnits1" type="s:decimal" />
|
480
|
+
<s:element minOccurs="0" maxOccurs="1" name="NumUnits1Type" type="tns:UnitOfMeasure" />
|
481
|
+
<s:element minOccurs="0" maxOccurs="1" name="NumUnits1TypeDesc" type="s:string" />
|
482
|
+
<s:element minOccurs="1" maxOccurs="1" name="NumUnits2" type="s:decimal" />
|
483
|
+
<s:element minOccurs="0" maxOccurs="1" name="NumUnits2Type" type="tns:UnitOfMeasure" />
|
484
|
+
<s:element minOccurs="0" maxOccurs="1" name="NumUnits2TypeDesc" type="s:string" />
|
485
|
+
<s:element minOccurs="1" maxOccurs="1" name="TotalWeight" type="s:decimal" />
|
486
|
+
<s:element minOccurs="1" maxOccurs="1" name="TotalVolume" type="s:decimal" />
|
487
|
+
</s:sequence>
|
488
|
+
</s:complexType>
|
489
|
+
<s:complexType name="UnitOfMeasure">
|
490
|
+
<s:sequence>
|
491
|
+
<s:element minOccurs="1" maxOccurs="1" name="unitOfMeasureID" type="s:int" />
|
492
|
+
<s:element minOccurs="0" maxOccurs="1" name="uomDescription" type="s:string" />
|
493
|
+
<s:element minOccurs="1" maxOccurs="1" name="isUomIntegral" type="s:boolean" />
|
494
|
+
<s:element minOccurs="0" maxOccurs="1" name="pluralUomDescription" type="s:string" />
|
495
|
+
</s:sequence>
|
496
|
+
</s:complexType>
|
497
|
+
<s:simpleType name="WarehouseTransactionStatus">
|
498
|
+
<s:restriction base="s:string">
|
499
|
+
<s:enumeration value="Default" />
|
500
|
+
<s:enumeration value="NotVerified" />
|
501
|
+
<s:enumeration value="Verified" />
|
502
|
+
<s:enumeration value="Canceled" />
|
503
|
+
</s:restriction>
|
504
|
+
</s:simpleType>
|
505
|
+
<s:simpleType name="StorageChargePeriodType">
|
506
|
+
<s:restriction base="s:string">
|
507
|
+
<s:enumeration value="NotApplicable" />
|
508
|
+
<s:enumeration value="Monthly" />
|
509
|
+
<s:enumeration value="SemiMonthly" />
|
510
|
+
<s:enumeration value="Weekly" />
|
511
|
+
</s:restriction>
|
512
|
+
</s:simpleType>
|
513
|
+
<s:complexType name="CapacityType">
|
514
|
+
<s:sequence>
|
515
|
+
<s:element minOccurs="1" maxOccurs="1" name="CapacityTypeID" type="s:int" />
|
516
|
+
<s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" />
|
517
|
+
</s:sequence>
|
518
|
+
</s:complexType>
|
519
|
+
<s:complexType name="TransactionEntryType">
|
520
|
+
<s:sequence>
|
521
|
+
<s:element minOccurs="1" maxOccurs="1" name="TransactionEntryTypeID" type="s:int" />
|
522
|
+
<s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" />
|
523
|
+
</s:sequence>
|
524
|
+
</s:complexType>
|
525
|
+
<s:simpleType name="LoadOutLogState">
|
526
|
+
<s:restriction base="s:string">
|
527
|
+
<s:enumeration value="NotLoaded" />
|
528
|
+
<s:enumeration value="Loaded" />
|
529
|
+
<s:enumeration value="LoadedIncomplete" />
|
530
|
+
</s:restriction>
|
531
|
+
</s:simpleType>
|
532
|
+
<s:complexType name="ArrayOfCodeDescrPair1">
|
533
|
+
<s:sequence>
|
534
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="CodeDescrPair" nillable="true" type="tns:CodeDescrPair" />
|
535
|
+
</s:sequence>
|
536
|
+
</s:complexType>
|
537
|
+
<s:complexType name="ArrayOfOrderItem">
|
538
|
+
<s:sequence>
|
539
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="OrderItem" nillable="true" type="tns:OrderItem" />
|
540
|
+
</s:sequence>
|
541
|
+
</s:complexType>
|
542
|
+
<s:complexType name="OrderItem">
|
543
|
+
<s:sequence>
|
544
|
+
<s:element minOccurs="1" maxOccurs="1" name="OrderItemID" type="s:int" />
|
545
|
+
<s:element minOccurs="1" maxOccurs="1" name="WarehouseTransactionID" type="s:int" />
|
546
|
+
<s:element minOccurs="1" maxOccurs="1" name="ItemID" type="s:int" />
|
547
|
+
<s:element minOccurs="0" maxOccurs="1" name="SKU" type="s:string" />
|
548
|
+
<s:element minOccurs="0" maxOccurs="1" name="Qualifier" type="s:string" />
|
549
|
+
<s:element minOccurs="1" maxOccurs="1" name="PrimaryInvQty" type="s:decimal" />
|
550
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsPrimaryEstimate" type="s:boolean" />
|
551
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsSecondaryEstimate" type="s:boolean" />
|
552
|
+
<s:element minOccurs="1" maxOccurs="1" name="SecondaryInvQty" type="s:decimal" />
|
553
|
+
<s:element minOccurs="1" maxOccurs="1" name="OrderQty" type="s:decimal" />
|
554
|
+
<s:element minOccurs="0" maxOccurs="1" name="OrderUnitOfMeasureType" type="tns:UnitOfMeasure" />
|
555
|
+
<s:element minOccurs="0" maxOccurs="1" name="UPC" type="s:string" />
|
556
|
+
<s:element minOccurs="1" maxOccurs="1" name="Weight" type="s:decimal" />
|
557
|
+
<s:element minOccurs="1" maxOccurs="1" name="Length" type="s:decimal" />
|
558
|
+
<s:element minOccurs="1" maxOccurs="1" name="Width" type="s:decimal" />
|
559
|
+
<s:element minOccurs="1" maxOccurs="1" name="Height" type="s:decimal" />
|
560
|
+
<s:element minOccurs="1" maxOccurs="1" name="Available" type="s:decimal" />
|
561
|
+
<s:element minOccurs="0" maxOccurs="1" name="LotNumber" type="s:string" />
|
562
|
+
<s:element minOccurs="0" maxOccurs="1" name="SerialNumber" type="s:string" />
|
563
|
+
<s:element minOccurs="0" maxOccurs="1" name="ExpirationDate" type="tns:I18nDateTime" />
|
564
|
+
<s:element minOccurs="0" maxOccurs="1" name="Notes" type="s:string" />
|
565
|
+
<s:element minOccurs="1" maxOccurs="1" name="FulfillInvSalePrice" type="s:decimal" />
|
566
|
+
<s:element minOccurs="1" maxOccurs="1" name="FulfillInvDiscountPct" type="s:decimal" />
|
567
|
+
<s:element minOccurs="1" maxOccurs="1" name="FulfillInvDiscountAmt" type="s:decimal" />
|
568
|
+
<s:element minOccurs="1" maxOccurs="1" name="Qty" type="s:decimal" />
|
569
|
+
<s:element minOccurs="0" maxOccurs="1" name="OrderItemReceiveItems" type="tns:ArrayOfOrderItemReceiveItem" />
|
570
|
+
<s:element minOccurs="0" maxOccurs="1" name="SavedElements" type="tns:ArrayOfCodeDescrPair1" />
|
571
|
+
</s:sequence>
|
572
|
+
</s:complexType>
|
573
|
+
<s:complexType name="ArrayOfOrderItemReceiveItem">
|
574
|
+
<s:sequence>
|
575
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="OrderItemReceiveItem" nillable="true" type="tns:OrderItemReceiveItem" />
|
576
|
+
</s:sequence>
|
577
|
+
</s:complexType>
|
578
|
+
<s:complexType name="OrderItemReceiveItem">
|
579
|
+
<s:sequence>
|
580
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReceiveItem" type="tns:ReceiveItem" />
|
581
|
+
<s:element minOccurs="1" maxOccurs="1" name="Qty" type="s:decimal" />
|
582
|
+
<s:element minOccurs="1" maxOccurs="1" name="OrderItemID" type="s:int" />
|
583
|
+
<s:element minOccurs="1" maxOccurs="1" name="ReceiveItemID" type="s:int" />
|
584
|
+
<s:element minOccurs="1" maxOccurs="1" name="ProperlyPickedPrimary" type="s:decimal" />
|
585
|
+
<s:element minOccurs="1" maxOccurs="1" name="ProperlyPickedSecondary" type="s:decimal" />
|
586
|
+
<s:element minOccurs="1" maxOccurs="1" name="MarkedForDeletion" type="s:boolean" />
|
587
|
+
<s:element minOccurs="1" maxOccurs="1" name="LoadedOut" type="s:boolean" />
|
588
|
+
</s:sequence>
|
589
|
+
</s:complexType>
|
590
|
+
<s:complexType name="ReceiveItem">
|
591
|
+
<s:sequence>
|
592
|
+
<s:element minOccurs="1" maxOccurs="1" name="ReceiveItemID" type="s:int" />
|
593
|
+
<s:element minOccurs="1" maxOccurs="1" name="WarehouseTransactionID" type="s:int" />
|
594
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReceivedDate" type="tns:I18nDateTime" />
|
595
|
+
<s:element minOccurs="1" maxOccurs="1" name="ItemID" type="s:int" />
|
596
|
+
<s:element minOccurs="0" maxOccurs="1" name="SKU" type="s:string" />
|
597
|
+
<s:element minOccurs="0" maxOccurs="1" name="Qualifier" type="s:string" />
|
598
|
+
<s:element minOccurs="1" maxOccurs="1" name="OrigQtyPrimary" type="s:decimal" />
|
599
|
+
<s:element minOccurs="1" maxOccurs="1" name="OrigQtySecondary" type="s:decimal" />
|
600
|
+
<s:element minOccurs="1" maxOccurs="1" name="OnHand" type="s:decimal" />
|
601
|
+
<s:element minOccurs="1" maxOccurs="1" name="Quarantined" type="s:decimal" />
|
602
|
+
<s:element minOccurs="1" maxOccurs="1" name="Allocated" type="s:decimal" />
|
603
|
+
<s:element minOccurs="1" maxOccurs="1" name="Weight" type="s:decimal" />
|
604
|
+
<s:element minOccurs="1" maxOccurs="1" name="Length" type="s:decimal" />
|
605
|
+
<s:element minOccurs="1" maxOccurs="1" name="Width" type="s:decimal" />
|
606
|
+
<s:element minOccurs="1" maxOccurs="1" name="Height" type="s:decimal" />
|
607
|
+
<s:element minOccurs="1" maxOccurs="1" name="Cost" type="s:decimal" />
|
608
|
+
<s:element minOccurs="0" maxOccurs="1" name="LotNumber" type="s:string" />
|
609
|
+
<s:element minOccurs="0" maxOccurs="1" name="SerialNumber" type="s:string" />
|
610
|
+
<s:element minOccurs="0" maxOccurs="1" name="ExpirationDate" type="tns:I18nDateTime" />
|
611
|
+
<s:element minOccurs="1" maxOccurs="1" name="LocationID" type="s:int" />
|
612
|
+
<s:element minOccurs="0" maxOccurs="1" name="LocDesc" type="s:string" />
|
613
|
+
<s:element minOccurs="0" maxOccurs="1" name="Field1" type="s:string" />
|
614
|
+
<s:element minOccurs="0" maxOccurs="1" name="Field2" type="s:string" />
|
615
|
+
<s:element minOccurs="0" maxOccurs="1" name="Field3" type="s:string" />
|
616
|
+
<s:element minOccurs="0" maxOccurs="1" name="Field4" type="s:string" />
|
617
|
+
<s:element minOccurs="0" maxOccurs="1" name="Display" type="s:string" />
|
618
|
+
<s:element minOccurs="1" maxOccurs="1" name="LocationTypeID" type="tns:LocationType" />
|
619
|
+
<s:element minOccurs="1" maxOccurs="1" name="SplitPeriodStorageCharged" type="s:boolean" />
|
620
|
+
<s:element minOccurs="1" maxOccurs="1" name="SupplierContactID" type="s:int" />
|
621
|
+
<s:element minOccurs="1" maxOccurs="1" name="MovableUnitID" type="s:int" />
|
622
|
+
<s:element minOccurs="0" maxOccurs="1" name="MovableUnitLabel" type="s:string" />
|
623
|
+
<s:element minOccurs="0" maxOccurs="1" name="Supplier" type="s:string" />
|
624
|
+
<s:element minOccurs="1" maxOccurs="1" name="ExpectedQty" type="s:decimal" />
|
625
|
+
<s:element minOccurs="0" maxOccurs="1" name="FullyShippedDate" type="tns:I18nDateTime" />
|
626
|
+
<s:element minOccurs="0" maxOccurs="1" name="SavedElements" type="tns:ArrayOfCodeDescrPair1" />
|
627
|
+
</s:sequence>
|
628
|
+
</s:complexType>
|
629
|
+
<s:simpleType name="LocationType">
|
630
|
+
<s:restriction base="s:string">
|
631
|
+
<s:enumeration value="Null" />
|
632
|
+
<s:enumeration value="StorageLocation" />
|
633
|
+
<s:enumeration value="StagingArea" />
|
634
|
+
<s:enumeration value="PutAwayVehicle" />
|
635
|
+
<s:enumeration value="Quarantine" />
|
636
|
+
<s:enumeration value="PickLine" />
|
637
|
+
</s:restriction>
|
638
|
+
</s:simpleType>
|
639
|
+
<s:complexType name="ReceiveItemWithAllocations">
|
640
|
+
<s:complexContent mixed="false">
|
641
|
+
<s:extension base="tns:ReceiveItem">
|
642
|
+
<s:sequence>
|
643
|
+
<s:element minOccurs="1" maxOccurs="1" name="AllocatePriority" type="s:int" />
|
644
|
+
<s:element minOccurs="1" maxOccurs="1" name="InventoryMethodID" type="s:int" />
|
645
|
+
<s:element minOccurs="1" maxOccurs="1" name="InventoryUnitsPerLabelingUnit" type="s:decimal" />
|
646
|
+
<s:element minOccurs="0" maxOccurs="1" name="Allocations" type="tns:ArrayOfAllocation" />
|
647
|
+
</s:sequence>
|
648
|
+
</s:extension>
|
649
|
+
</s:complexContent>
|
650
|
+
</s:complexType>
|
651
|
+
<s:complexType name="ArrayOfAllocation">
|
652
|
+
<s:sequence>
|
653
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="Allocation" nillable="true" type="tns:Allocation" />
|
654
|
+
</s:sequence>
|
655
|
+
</s:complexType>
|
656
|
+
<s:complexType name="Allocation">
|
657
|
+
<s:sequence>
|
658
|
+
<s:element minOccurs="1" maxOccurs="1" name="OrderItemID" type="s:int" />
|
659
|
+
<s:element minOccurs="1" maxOccurs="1" name="Allocated" type="s:decimal" />
|
660
|
+
<s:element minOccurs="1" maxOccurs="1" name="Shipped" type="s:decimal" />
|
661
|
+
</s:sequence>
|
662
|
+
</s:complexType>
|
663
|
+
<s:complexType name="OrderItemReceiveItemNotYetPacked">
|
664
|
+
<s:complexContent mixed="false">
|
665
|
+
<s:extension base="tns:OrderItemReceiveItem">
|
666
|
+
<s:sequence>
|
667
|
+
<s:element minOccurs="0" maxOccurs="1" name="InventoryUnitOfMeasureType" type="tns:UnitOfMeasure" />
|
668
|
+
<s:element minOccurs="1" maxOccurs="1" name="QtyPacked" type="s:decimal" />
|
669
|
+
<s:element minOccurs="1" maxOccurs="1" name="QtyToBePacked" type="s:decimal" />
|
670
|
+
</s:sequence>
|
671
|
+
</s:extension>
|
672
|
+
</s:complexContent>
|
673
|
+
</s:complexType>
|
674
|
+
<s:simpleType name="WarehouseTransactionFreightRateStatus">
|
675
|
+
<s:restriction base="s:string">
|
676
|
+
<s:enumeration value="Unknown" />
|
677
|
+
<s:enumeration value="None" />
|
678
|
+
<s:enumeration value="Saved" />
|
679
|
+
<s:enumeration value="Booked" />
|
680
|
+
<s:enumeration value="BookConfirmed" />
|
681
|
+
</s:restriction>
|
682
|
+
</s:simpleType>
|
683
|
+
<s:complexType name="Facility">
|
684
|
+
<s:sequence>
|
685
|
+
<s:element minOccurs="1" maxOccurs="1" name="FacilityID" type="s:int" />
|
686
|
+
<s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" />
|
687
|
+
<s:element minOccurs="0" maxOccurs="1" name="Contact" type="tns:ContactInfo" />
|
688
|
+
<s:element minOccurs="0" maxOccurs="1" name="UPSAccount" type="s:string" />
|
689
|
+
<s:element minOccurs="0" maxOccurs="1" name="FedExAccount" type="s:string" />
|
690
|
+
<s:element minOccurs="1" maxOccurs="1" name="TimeOffset" type="s:int" />
|
691
|
+
<s:element minOccurs="1" maxOccurs="1" name="UsesDaylightSavings" type="s:boolean" />
|
692
|
+
<s:element minOccurs="1" maxOccurs="1" name="TimeZoneID" type="s:int" />
|
693
|
+
<s:element minOccurs="1" maxOccurs="1" name="UsePredefinedLocations" type="s:boolean" />
|
694
|
+
<s:element minOccurs="1" maxOccurs="1" name="LocationFieldCount" type="s:int" />
|
695
|
+
<s:element minOccurs="0" maxOccurs="1" name="LastCloseDate" type="tns:I18nDateTime" />
|
696
|
+
<s:element minOccurs="1" maxOccurs="1" name="Deactivated" type="s:boolean" />
|
697
|
+
<s:element minOccurs="1" maxOccurs="1" name="MeasurementSystemDefault" type="tns:MeasurementSystemType" />
|
698
|
+
<s:element minOccurs="0" maxOccurs="1" name="Code" type="s:string" />
|
699
|
+
<s:element minOccurs="1" maxOccurs="1" name="FuelSurcharge" type="s:decimal" />
|
700
|
+
</s:sequence>
|
701
|
+
</s:complexType>
|
702
|
+
<s:simpleType name="MeasurementSystemType">
|
703
|
+
<s:restriction base="s:string">
|
704
|
+
<s:enumeration value="USImperial" />
|
705
|
+
<s:enumeration value="Metric" />
|
706
|
+
</s:restriction>
|
707
|
+
</s:simpleType>
|
708
|
+
<s:complexType name="ArrayOfPackage">
|
709
|
+
<s:sequence>
|
710
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="Package" nillable="true" type="tns:Package" />
|
711
|
+
</s:sequence>
|
712
|
+
</s:complexType>
|
713
|
+
<s:complexType name="Package">
|
714
|
+
<s:sequence>
|
715
|
+
<s:element minOccurs="1" maxOccurs="1" name="PackageID" type="s:int" />
|
716
|
+
<s:element minOccurs="1" maxOccurs="1" name="WarehouseTransactionID" type="s:int" />
|
717
|
+
<s:element minOccurs="1" maxOccurs="1" name="PackageTypeID" type="s:int" />
|
718
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackageType" type="s:string" />
|
719
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackageTypeDescription" type="s:string" />
|
720
|
+
<s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" />
|
721
|
+
<s:element minOccurs="1" maxOccurs="1" name="Length" type="s:decimal" />
|
722
|
+
<s:element minOccurs="1" maxOccurs="1" name="Width" type="s:decimal" />
|
723
|
+
<s:element minOccurs="1" maxOccurs="1" name="Height" type="s:decimal" />
|
724
|
+
<s:element minOccurs="1" maxOccurs="1" name="Oversize" type="s:unsignedByte" />
|
725
|
+
<s:element minOccurs="1" maxOccurs="1" name="Weight" type="s:decimal" />
|
726
|
+
<s:element minOccurs="1" maxOccurs="1" name="COD" type="s:boolean" />
|
727
|
+
<s:element minOccurs="1" maxOccurs="1" name="CODAmount" type="s:decimal" />
|
728
|
+
<s:element minOccurs="1" maxOccurs="1" name="InsuredAmount" type="s:decimal" />
|
729
|
+
<s:element minOccurs="0" maxOccurs="1" name="Label" type="s:base64Binary" />
|
730
|
+
<s:element minOccurs="0" maxOccurs="1" name="TrackingNumber" type="s:string" />
|
731
|
+
<s:element minOccurs="1" maxOccurs="1" name="UCC128" type="s:int" />
|
732
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackageContents" type="tns:ArrayOfPackageContent" />
|
733
|
+
</s:sequence>
|
734
|
+
</s:complexType>
|
735
|
+
<s:complexType name="ArrayOfPackageContent">
|
736
|
+
<s:sequence>
|
737
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="PackageContent" nillable="true" type="tns:PackageContent" />
|
738
|
+
</s:sequence>
|
739
|
+
</s:complexType>
|
740
|
+
<s:complexType name="PackageContent">
|
741
|
+
<s:sequence>
|
742
|
+
<s:element minOccurs="1" maxOccurs="1" name="PackageContentID" type="s:int" />
|
743
|
+
<s:element minOccurs="1" maxOccurs="1" name="PackageID" type="s:int" />
|
744
|
+
<s:element minOccurs="1" maxOccurs="1" name="OrderItemID" type="s:int" />
|
745
|
+
<s:element minOccurs="1" maxOccurs="1" name="ReceiveItemID" type="s:int" />
|
746
|
+
<s:element minOccurs="1" maxOccurs="1" name="OrderItemPickExceptionID" type="s:int" />
|
747
|
+
<s:element minOccurs="1" maxOccurs="1" name="Qty" type="s:decimal" />
|
748
|
+
<s:element minOccurs="0" maxOccurs="1" name="InventoryUnitOfMeasureType" type="tns:UnitOfMeasure" />
|
749
|
+
<s:element minOccurs="0" maxOccurs="1" name="LotNumber" type="s:string" />
|
750
|
+
<s:element minOccurs="0" maxOccurs="1" name="SerialNumber" type="s:string" />
|
751
|
+
<s:element minOccurs="0" maxOccurs="1" name="ExpirationDate" type="tns:I18nDateTime" />
|
752
|
+
<s:element minOccurs="0" maxOccurs="1" name="SKU" type="s:string" />
|
753
|
+
<s:element minOccurs="0" maxOccurs="1" name="Qualifier" type="s:string" />
|
754
|
+
<s:element minOccurs="0" maxOccurs="1" name="Supplier" type="s:string" />
|
755
|
+
<s:element minOccurs="1" maxOccurs="1" name="Cost" type="s:decimal" />
|
756
|
+
</s:sequence>
|
757
|
+
</s:complexType>
|
758
|
+
<s:complexType name="ArrayOfSmallParcelOrderItem">
|
759
|
+
<s:sequence>
|
760
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="SmallParcelOrderItem" nillable="true" type="tns:SmallParcelOrderItem" />
|
761
|
+
</s:sequence>
|
762
|
+
</s:complexType>
|
763
|
+
<s:complexType name="SmallParcelOrderItem">
|
764
|
+
<s:sequence>
|
765
|
+
<s:element minOccurs="1" maxOccurs="1" name="WarehouseTransactionId" type="s:int" />
|
766
|
+
<s:element minOccurs="1" maxOccurs="1" name="OrderItemId" type="s:int" />
|
767
|
+
<s:element minOccurs="1" maxOccurs="1" name="Qty" type="s:decimal" />
|
768
|
+
<s:element minOccurs="0" maxOccurs="1" name="SKU" type="s:string" />
|
769
|
+
<s:element minOccurs="0" maxOccurs="1" name="Location" type="s:string" />
|
770
|
+
<s:element minOccurs="0" maxOccurs="1" name="ItemDescription" type="s:string" />
|
771
|
+
<s:element minOccurs="0" maxOccurs="1" name="ItemDescription2" type="s:string" />
|
772
|
+
<s:element minOccurs="1" maxOccurs="1" name="ItemCost" type="s:decimal" />
|
773
|
+
<s:element minOccurs="1" maxOccurs="1" name="ItemPrice" type="s:decimal" />
|
774
|
+
<s:element minOccurs="0" maxOccurs="1" name="LotNumber" type="s:string" />
|
775
|
+
<s:element minOccurs="0" maxOccurs="1" name="SerialNumber" type="s:string" />
|
776
|
+
<s:element minOccurs="1" maxOccurs="1" name="ExpirationDate" type="s:dateTime" />
|
777
|
+
<s:element minOccurs="1" maxOccurs="1" name="LandedCost" type="s:decimal" />
|
778
|
+
</s:sequence>
|
779
|
+
</s:complexType>
|
780
|
+
<s:element name="notUpdated" type="tns:ArrayOfInt" />
|
781
|
+
<s:element name="spUpdateOrders" type="tns:ArrayOfSmallParcelUpdateOrder" />
|
782
|
+
<s:complexType name="ArrayOfSmallParcelUpdateOrder">
|
783
|
+
<s:sequence>
|
784
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="SmallParcelUpdateOrder" nillable="true" type="tns:SmallParcelUpdateOrder" />
|
785
|
+
</s:sequence>
|
786
|
+
</s:complexType>
|
787
|
+
<s:complexType name="SmallParcelUpdateOrder">
|
788
|
+
<s:sequence>
|
789
|
+
<s:element minOccurs="1" maxOccurs="1" name="WarehouseTransactionID" type="s:int" />
|
790
|
+
<s:element minOccurs="0" maxOccurs="1" name="TrackingNumber" type="s:string" />
|
791
|
+
<s:element minOccurs="1" maxOccurs="1" name="Freight" type="s:decimal" />
|
792
|
+
<s:element minOccurs="1" maxOccurs="1" name="Weight" type="s:decimal" />
|
793
|
+
<s:element minOccurs="1" maxOccurs="1" name="PkgCount" type="s:decimal" />
|
794
|
+
<s:element minOccurs="0" maxOccurs="1" name="Carrier" type="s:string" />
|
795
|
+
<s:element minOccurs="0" maxOccurs="1" name="Service" type="s:string" />
|
796
|
+
<s:element minOccurs="0" maxOccurs="1" name="SCACCode" type="s:string" />
|
797
|
+
<s:element minOccurs="0" maxOccurs="1" name="Packages" type="tns:ArrayOfPackage" />
|
798
|
+
</s:sequence>
|
799
|
+
</s:complexType>
|
800
|
+
<s:element name="Items" type="tns:ArrayOfItem" />
|
801
|
+
<s:complexType name="ArrayOfItem">
|
802
|
+
<s:sequence>
|
803
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="Item" nillable="true" type="tns:Item" />
|
804
|
+
</s:sequence>
|
805
|
+
</s:complexType>
|
806
|
+
<s:complexType name="Item">
|
807
|
+
<s:sequence>
|
808
|
+
<s:element minOccurs="0" maxOccurs="1" name="SKU" type="s:string" />
|
809
|
+
<s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" />
|
810
|
+
<s:element minOccurs="0" maxOccurs="1" name="Description2" type="s:string" />
|
811
|
+
<s:element minOccurs="1" maxOccurs="1" name="CustomerID" type="s:int" />
|
812
|
+
<s:element minOccurs="1" maxOccurs="1" name="Min" type="s:decimal" />
|
813
|
+
<s:element minOccurs="1" maxOccurs="1" name="Max" type="s:decimal" />
|
814
|
+
<s:element minOccurs="1" maxOccurs="1" name="ReorderQty" type="s:decimal" />
|
815
|
+
<s:element minOccurs="1" maxOccurs="1" name="CycleCount" type="s:int" />
|
816
|
+
<s:element minOccurs="1" maxOccurs="1" name="InventoryMethod" type="tns:InventoryMethod" />
|
817
|
+
<s:element minOccurs="1" maxOccurs="1" name="Cost" type="s:decimal" />
|
818
|
+
<s:element minOccurs="0" maxOccurs="1" name="UPC" type="s:string" />
|
819
|
+
<s:element minOccurs="1" maxOccurs="1" name="Temperature" type="s:decimal" />
|
820
|
+
<s:element minOccurs="1" maxOccurs="1" name="TempAllowZero" type="s:boolean" />
|
821
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsTrackLotNumber" type="s:boolean" />
|
822
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsTrackLotNumberRequired" type="s:boolean" />
|
823
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsTrackSerialNumber" type="s:boolean" />
|
824
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsTrackSerialNumberRequired" type="s:boolean" />
|
825
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsTrackSerialNumberUnique" type="s:boolean" />
|
826
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsTrackExpirationDate" type="s:boolean" />
|
827
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsTrackExpirationDateRequired" type="s:boolean" />
|
828
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsTrackCost" type="s:boolean" />
|
829
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsTrackCostRequired" type="s:boolean" />
|
830
|
+
<s:element minOccurs="0" maxOccurs="1" name="MaterialNotes" type="s:string" />
|
831
|
+
<s:element minOccurs="1" maxOccurs="1" name="Deactivated" type="s:boolean" />
|
832
|
+
<s:element minOccurs="0" maxOccurs="1" name="NMFC" type="s:string" />
|
833
|
+
<s:element minOccurs="0" maxOccurs="1" name="InventoryUnitOfMeasure" type="s:string" />
|
834
|
+
<s:element minOccurs="0" maxOccurs="1" name="LabelingUnitOfMeasure" type="s:string" />
|
835
|
+
<s:element minOccurs="1" maxOccurs="1" name="InventoryUnitsPerLabelingUnit" type="s:decimal" />
|
836
|
+
<s:element minOccurs="1" maxOccurs="1" name="MeasurementSystem" type="tns:MeasurementSystemType" />
|
837
|
+
<s:element minOccurs="1" maxOccurs="1" name="LabelingUnitLength" type="s:decimal" />
|
838
|
+
<s:element minOccurs="1" maxOccurs="1" name="LabelingUnitWidth" type="s:decimal" />
|
839
|
+
<s:element minOccurs="1" maxOccurs="1" name="LabelingUnitHeight" type="s:decimal" />
|
840
|
+
<s:element minOccurs="1" maxOccurs="1" name="LabelingUnitWeight" type="s:decimal" />
|
841
|
+
<s:element minOccurs="0" maxOccurs="1" name="SecondaryUnitOfMeasure" type="s:string" />
|
842
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsSecondaryUOMInventoryAlso" type="s:boolean" />
|
843
|
+
<s:element minOccurs="1" maxOccurs="1" name="InventoryUnitsPerSecondUnit" type="s:decimal" />
|
844
|
+
<s:element minOccurs="0" maxOccurs="1" name="MovableUnitType" type="s:string" />
|
845
|
+
<s:element minOccurs="1" maxOccurs="1" name="MovableUnitLength" type="s:decimal" />
|
846
|
+
<s:element minOccurs="1" maxOccurs="1" name="MovableUnitWidth" type="s:decimal" />
|
847
|
+
<s:element minOccurs="1" maxOccurs="1" name="MovableUnitHeight" type="s:decimal" />
|
848
|
+
<s:element minOccurs="1" maxOccurs="1" name="MovableUnitWeight" type="s:decimal" />
|
849
|
+
<s:element minOccurs="1" maxOccurs="1" name="MovableUnitTie" type="s:decimal" />
|
850
|
+
<s:element minOccurs="1" maxOccurs="1" name="MovableUnitHigh" type="s:decimal" />
|
851
|
+
<s:element minOccurs="1" maxOccurs="1" name="MovableUnitQty" type="s:decimal" />
|
852
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsHazMat" type="s:boolean" />
|
853
|
+
<s:element minOccurs="0" maxOccurs="1" name="HazMatID" type="s:string" />
|
854
|
+
<s:element minOccurs="0" maxOccurs="1" name="HazMatShippingName" type="s:string" />
|
855
|
+
<s:element minOccurs="0" maxOccurs="1" name="HazMatHazardClass" type="s:string" />
|
856
|
+
<s:element minOccurs="1" maxOccurs="1" name="HazMatPackingGroup" type="tns:HazMatPackingGroup" />
|
857
|
+
<s:element minOccurs="0" maxOccurs="1" name="HazMatFlashPoint" type="s:string" />
|
858
|
+
<s:element minOccurs="0" maxOccurs="1" name="HazMatLabelCode" type="s:string" />
|
859
|
+
<s:element minOccurs="1" maxOccurs="1" name="HazMatFlag" type="tns:HazMatFlag" />
|
860
|
+
<s:element minOccurs="0" maxOccurs="1" name="ImageUrl" type="s:string" />
|
861
|
+
<s:element minOccurs="0" maxOccurs="1" name="StorageUnitOfMeasure" type="s:string" />
|
862
|
+
<s:element minOccurs="1" maxOccurs="1" name="InventoryUnitsPerStorageUnit" type="s:decimal" />
|
863
|
+
<s:element minOccurs="1" maxOccurs="1" name="StorageCountScriptTemplateID" type="s:int" />
|
864
|
+
<s:element minOccurs="0" maxOccurs="1" name="ItemQualifiers" type="tns:ArrayOfString" />
|
865
|
+
<s:element minOccurs="0" maxOccurs="1" name="ItemMaterials" type="tns:ArrayOfItemMaterial" />
|
866
|
+
<s:element minOccurs="0" maxOccurs="1" name="ItemFacilitys" type="tns:ArrayOfItemFacility" />
|
867
|
+
<s:element minOccurs="0" maxOccurs="1" name="ItemFacilityStorageRates" type="tns:ArrayOfItemFacilityStorageRate" />
|
868
|
+
</s:sequence>
|
869
|
+
</s:complexType>
|
870
|
+
<s:simpleType name="InventoryMethod">
|
871
|
+
<s:restriction base="s:string">
|
872
|
+
<s:enumeration value="LIFO" />
|
873
|
+
<s:enumeration value="FIFO" />
|
874
|
+
<s:enumeration value="FEFO" />
|
875
|
+
</s:restriction>
|
876
|
+
</s:simpleType>
|
877
|
+
<s:simpleType name="HazMatPackingGroup">
|
878
|
+
<s:restriction base="s:string">
|
879
|
+
<s:enumeration value="Default" />
|
880
|
+
<s:enumeration value="I" />
|
881
|
+
<s:enumeration value="II" />
|
882
|
+
<s:enumeration value="III" />
|
883
|
+
</s:restriction>
|
884
|
+
</s:simpleType>
|
885
|
+
<s:simpleType name="HazMatFlag">
|
886
|
+
<s:restriction base="s:string">
|
887
|
+
<s:enumeration value="Default" />
|
888
|
+
<s:enumeration value="X" />
|
889
|
+
<s:enumeration value="RQ" />
|
890
|
+
</s:restriction>
|
891
|
+
</s:simpleType>
|
892
|
+
<s:complexType name="ArrayOfItemMaterial">
|
893
|
+
<s:sequence>
|
894
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="ItemMaterial" nillable="true" type="tns:ItemMaterial" />
|
895
|
+
</s:sequence>
|
896
|
+
</s:complexType>
|
897
|
+
<s:complexType name="ItemMaterial">
|
898
|
+
<s:sequence>
|
899
|
+
<s:element minOccurs="0" maxOccurs="1" name="SKU" type="s:string" />
|
900
|
+
<s:element minOccurs="0" maxOccurs="1" name="NonSKUMaterial" type="s:string" />
|
901
|
+
<s:element minOccurs="1" maxOccurs="1" name="Qty" type="s:decimal" />
|
902
|
+
</s:sequence>
|
903
|
+
</s:complexType>
|
904
|
+
<s:complexType name="ArrayOfItemFacility">
|
905
|
+
<s:sequence>
|
906
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="ItemFacility" nillable="true" type="tns:ItemFacility" />
|
907
|
+
</s:sequence>
|
908
|
+
</s:complexType>
|
909
|
+
<s:complexType name="ItemFacility">
|
910
|
+
<s:sequence>
|
911
|
+
<s:element minOccurs="0" maxOccurs="1" name="FacilityIdOrName" type="s:string" />
|
912
|
+
<s:element minOccurs="0" maxOccurs="1" name="StorageUnitOfMeasure" type="s:string" />
|
913
|
+
<s:element minOccurs="1" maxOccurs="1" name="InventoryUnitsPerStorageUnit" type="s:decimal" />
|
914
|
+
<s:element minOccurs="1" maxOccurs="1" name="RcvHandlingRate" type="s:decimal" />
|
915
|
+
<s:element minOccurs="1" maxOccurs="1" name="OrdHandlingRate" type="s:decimal" />
|
916
|
+
<s:element minOccurs="1" maxOccurs="1" name="StorageSplitHalfRate" type="s:decimal" />
|
917
|
+
<s:element minOccurs="1" maxOccurs="1" name="StorageSplitFullRate" type="s:decimal" />
|
918
|
+
<s:element minOccurs="1" maxOccurs="1" name="StorageFreeDays" type="s:int" />
|
919
|
+
</s:sequence>
|
920
|
+
</s:complexType>
|
921
|
+
<s:complexType name="ArrayOfItemFacilityStorageRate">
|
922
|
+
<s:sequence>
|
923
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="ItemFacilityStorageRate" nillable="true" type="tns:ItemFacilityStorageRate" />
|
924
|
+
</s:sequence>
|
925
|
+
</s:complexType>
|
926
|
+
<s:complexType name="ItemFacilityStorageRate">
|
927
|
+
<s:sequence>
|
928
|
+
<s:element minOccurs="0" maxOccurs="1" name="FacilityIdOrName" type="s:string" />
|
929
|
+
<s:element minOccurs="0" maxOccurs="1" name="CountUnit" type="s:string" />
|
930
|
+
<s:element minOccurs="1" maxOccurs="1" name="Rate" type="s:decimal" />
|
931
|
+
</s:sequence>
|
932
|
+
</s:complexType>
|
933
|
+
<s:element name="CreateItemsResult" type="tns:ArrayOfInt1" />
|
934
|
+
<s:complexType name="ArrayOfInt1">
|
935
|
+
<s:sequence>
|
936
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="ItemID" type="s:int" />
|
937
|
+
</s:sequence>
|
938
|
+
</s:complexType>
|
939
|
+
</s:schema>
|
940
|
+
</wsdl:types>
|
941
|
+
<wsdl:message name="CreateOrdersSoapIn">
|
942
|
+
<wsdl:part name="extLoginData" element="tns:extLoginData" />
|
943
|
+
<wsdl:part name="orders" element="tns:orders" />
|
944
|
+
<wsdl:part name="warnings" element="tns:warnings" />
|
945
|
+
</wsdl:message>
|
946
|
+
<wsdl:message name="CreateOrdersSoapOut">
|
947
|
+
<wsdl:part name="CreateOrdersResult" element="tns:Int32" />
|
948
|
+
<wsdl:part name="warnings" element="tns:warnings" />
|
949
|
+
</wsdl:message>
|
950
|
+
<wsdl:message name="UpdateOrdersSoapIn">
|
951
|
+
<wsdl:part name="extLoginData" element="tns:extLoginData" />
|
952
|
+
<wsdl:part name="updateOrders" element="tns:updateOrders" />
|
953
|
+
<wsdl:part name="warnings" element="tns:warnings" />
|
954
|
+
</wsdl:message>
|
955
|
+
<wsdl:message name="UpdateOrdersSoapOut">
|
956
|
+
<wsdl:part name="UpdateOrdersResult" element="tns:Int32" />
|
957
|
+
<wsdl:part name="warnings" element="tns:warnings" />
|
958
|
+
</wsdl:message>
|
959
|
+
<wsdl:message name="CancelOrdersSoapIn">
|
960
|
+
<wsdl:part name="extLoginData" element="tns:extLoginData" />
|
961
|
+
<wsdl:part name="cancelOrders" element="tns:cancelOrders" />
|
962
|
+
</wsdl:message>
|
963
|
+
<wsdl:message name="CancelOrdersSoapOut">
|
964
|
+
<wsdl:part name="CancelOrdersResult" element="tns:Int32" />
|
965
|
+
</wsdl:message>
|
966
|
+
<wsdl:message name="ReportRetailersSoapIn">
|
967
|
+
<wsdl:part name="userLoginData" element="tns:userLoginData" />
|
968
|
+
</wsdl:message>
|
969
|
+
<wsdl:message name="ReportRetailersSoapOut">
|
970
|
+
<wsdl:part name="ReportRetailersResult" element="tns:ReportRetailersResult" />
|
971
|
+
</wsdl:message>
|
972
|
+
<wsdl:message name="FindOrdersSoapIn">
|
973
|
+
<wsdl:part name="userLoginData" element="tns:userLoginData" />
|
974
|
+
<wsdl:part name="focr" element="tns:focr" />
|
975
|
+
<wsdl:part name="limitCount" element="tns:limitCount" />
|
976
|
+
</wsdl:message>
|
977
|
+
<wsdl:message name="FindOrdersSoapOut">
|
978
|
+
<wsdl:part name="FindOrdersResult" element="tns:FindOrders" />
|
979
|
+
<wsdl:part name="totalOrders" element="tns:totalOrders" />
|
980
|
+
</wsdl:message>
|
981
|
+
<wsdl:message name="ReportStockStatusSoapIn">
|
982
|
+
<wsdl:part name="userLoginData" element="tns:userLoginData" />
|
983
|
+
</wsdl:message>
|
984
|
+
<wsdl:message name="ReportStockStatusSoapOut">
|
985
|
+
<wsdl:part name="ReportStockStatusResult" element="tns:string" />
|
986
|
+
</wsdl:message>
|
987
|
+
<wsdl:message name="SmallParcelOrdersSoapIn">
|
988
|
+
<wsdl:part name="userLoginData" element="tns:userLoginData" />
|
989
|
+
<wsdl:part name="focr" element="tns:focr" />
|
990
|
+
<wsdl:part name="limitCount" element="tns:limitCount" />
|
991
|
+
</wsdl:message>
|
992
|
+
<wsdl:message name="SmallParcelOrdersSoapOut">
|
993
|
+
<wsdl:part name="SmallParcelOrdersResult" element="tns:SmallParcelOrdersResult" />
|
994
|
+
<wsdl:part name="totalOrders" element="tns:totalOrders" />
|
995
|
+
</wsdl:message>
|
996
|
+
<wsdl:message name="SmallParcelUpdateTrackingNumbersSoapIn">
|
997
|
+
<wsdl:part name="extLoginData" element="tns:extLoginData" />
|
998
|
+
<wsdl:part name="updateOrders" element="tns:updateOrders" />
|
999
|
+
</wsdl:message>
|
1000
|
+
<wsdl:message name="SmallParcelUpdateTrackingNumbersSoapOut">
|
1001
|
+
<wsdl:part name="SmallParcelUpdateTrackingNumbersResult" element="tns:Int32" />
|
1002
|
+
<wsdl:part name="notUpdated" element="tns:notUpdated" />
|
1003
|
+
</wsdl:message>
|
1004
|
+
<wsdl:message name="SmallParcelUpdateOrdersSoapIn">
|
1005
|
+
<wsdl:part name="extLoginData" element="tns:extLoginData" />
|
1006
|
+
<wsdl:part name="spUpdateOrders" element="tns:spUpdateOrders" />
|
1007
|
+
</wsdl:message>
|
1008
|
+
<wsdl:message name="SmallParcelUpdateOrdersSoapOut">
|
1009
|
+
<wsdl:part name="SmallParcelUpdateOrdersResult" element="tns:Int32" />
|
1010
|
+
<wsdl:part name="notUpdated" element="tns:notUpdated" />
|
1011
|
+
</wsdl:message>
|
1012
|
+
<wsdl:message name="CreateItemsSoapIn">
|
1013
|
+
<wsdl:part name="extLoginData" element="tns:extLoginData" />
|
1014
|
+
<wsdl:part name="Items" element="tns:Items" />
|
1015
|
+
<wsdl:part name="warnings" element="tns:warnings" />
|
1016
|
+
</wsdl:message>
|
1017
|
+
<wsdl:message name="CreateItemsSoapOut">
|
1018
|
+
<wsdl:part name="CreateItemsResult" element="tns:CreateItemsResult" />
|
1019
|
+
<wsdl:part name="warnings" element="tns:warnings" />
|
1020
|
+
</wsdl:message>
|
1021
|
+
<wsdl:portType name="ServiceExternalSoap">
|
1022
|
+
<wsdl:operation name="CreateOrders">
|
1023
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Create Orders</wsdl:documentation>
|
1024
|
+
<wsdl:input message="tns:CreateOrdersSoapIn" />
|
1025
|
+
<wsdl:output message="tns:CreateOrdersSoapOut" />
|
1026
|
+
</wsdl:operation>
|
1027
|
+
<wsdl:operation name="UpdateOrders">
|
1028
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Update Orders</wsdl:documentation>
|
1029
|
+
<wsdl:input message="tns:UpdateOrdersSoapIn" />
|
1030
|
+
<wsdl:output message="tns:UpdateOrdersSoapOut" />
|
1031
|
+
</wsdl:operation>
|
1032
|
+
<wsdl:operation name="CancelOrders">
|
1033
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Cancel Orders</wsdl:documentation>
|
1034
|
+
<wsdl:input message="tns:CancelOrdersSoapIn" />
|
1035
|
+
<wsdl:output message="tns:CancelOrdersSoapOut" />
|
1036
|
+
</wsdl:operation>
|
1037
|
+
<wsdl:operation name="ReportRetailers">
|
1038
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Report all Retailers for a customer</wsdl:documentation>
|
1039
|
+
<wsdl:input message="tns:ReportRetailersSoapIn" />
|
1040
|
+
<wsdl:output message="tns:ReportRetailersSoapOut" />
|
1041
|
+
</wsdl:operation>
|
1042
|
+
<wsdl:operation name="FindOrders">
|
1043
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Find Order records for given 'find' parameters</wsdl:documentation>
|
1044
|
+
<wsdl:input message="tns:FindOrdersSoapIn" />
|
1045
|
+
<wsdl:output message="tns:FindOrdersSoapOut" />
|
1046
|
+
</wsdl:operation>
|
1047
|
+
<wsdl:operation name="ReportStockStatus">
|
1048
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Report stockstatus for a customer</wsdl:documentation>
|
1049
|
+
<wsdl:input message="tns:ReportStockStatusSoapIn" />
|
1050
|
+
<wsdl:output message="tns:ReportStockStatusSoapOut" />
|
1051
|
+
</wsdl:operation>
|
1052
|
+
<wsdl:operation name="SmallParcelOrders">
|
1053
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Get Small Parcel Order records for given 'find' parameters</wsdl:documentation>
|
1054
|
+
<wsdl:input message="tns:SmallParcelOrdersSoapIn" />
|
1055
|
+
<wsdl:output message="tns:SmallParcelOrdersSoapOut" />
|
1056
|
+
</wsdl:operation>
|
1057
|
+
<wsdl:operation name="SmallParcelUpdateTrackingNumbers">
|
1058
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Update Tracking Numbers</wsdl:documentation>
|
1059
|
+
<wsdl:input message="tns:SmallParcelUpdateTrackingNumbersSoapIn" />
|
1060
|
+
<wsdl:output message="tns:SmallParcelUpdateTrackingNumbersSoapOut" />
|
1061
|
+
</wsdl:operation>
|
1062
|
+
<wsdl:operation name="SmallParcelUpdateOrders">
|
1063
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Update Tracking Numbers</wsdl:documentation>
|
1064
|
+
<wsdl:input message="tns:SmallParcelUpdateOrdersSoapIn" />
|
1065
|
+
<wsdl:output message="tns:SmallParcelUpdateOrdersSoapOut" />
|
1066
|
+
</wsdl:operation>
|
1067
|
+
<wsdl:operation name="CreateItems">
|
1068
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Create Items</wsdl:documentation>
|
1069
|
+
<wsdl:input message="tns:CreateItemsSoapIn" />
|
1070
|
+
<wsdl:output message="tns:CreateItemsSoapOut" />
|
1071
|
+
</wsdl:operation>
|
1072
|
+
</wsdl:portType>
|
1073
|
+
<wsdl:binding name="ServiceExternalSoap" type="tns:ServiceExternalSoap">
|
1074
|
+
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
1075
|
+
<wsdl:operation name="CreateOrders">
|
1076
|
+
<soap:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/CreateOrders" style="document" />
|
1077
|
+
<wsdl:input>
|
1078
|
+
<soap:body use="literal" />
|
1079
|
+
</wsdl:input>
|
1080
|
+
<wsdl:output>
|
1081
|
+
<soap:body use="literal" />
|
1082
|
+
</wsdl:output>
|
1083
|
+
</wsdl:operation>
|
1084
|
+
<wsdl:operation name="UpdateOrders">
|
1085
|
+
<soap:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/UpdateOrders" style="document" />
|
1086
|
+
<wsdl:input>
|
1087
|
+
<soap:body use="literal" />
|
1088
|
+
</wsdl:input>
|
1089
|
+
<wsdl:output>
|
1090
|
+
<soap:body use="literal" />
|
1091
|
+
</wsdl:output>
|
1092
|
+
</wsdl:operation>
|
1093
|
+
<wsdl:operation name="CancelOrders">
|
1094
|
+
<soap:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/CancelOrders" style="document" />
|
1095
|
+
<wsdl:input>
|
1096
|
+
<soap:body use="literal" />
|
1097
|
+
</wsdl:input>
|
1098
|
+
<wsdl:output>
|
1099
|
+
<soap:body use="literal" />
|
1100
|
+
</wsdl:output>
|
1101
|
+
</wsdl:operation>
|
1102
|
+
<wsdl:operation name="ReportRetailers">
|
1103
|
+
<soap:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/ReportRetailers" style="document" />
|
1104
|
+
<wsdl:input>
|
1105
|
+
<soap:body use="literal" />
|
1106
|
+
</wsdl:input>
|
1107
|
+
<wsdl:output>
|
1108
|
+
<soap:body use="literal" />
|
1109
|
+
</wsdl:output>
|
1110
|
+
</wsdl:operation>
|
1111
|
+
<wsdl:operation name="FindOrders">
|
1112
|
+
<soap:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/FindOrders" style="document" />
|
1113
|
+
<wsdl:input>
|
1114
|
+
<soap:body use="literal" />
|
1115
|
+
</wsdl:input>
|
1116
|
+
<wsdl:output>
|
1117
|
+
<soap:body use="literal" />
|
1118
|
+
</wsdl:output>
|
1119
|
+
</wsdl:operation>
|
1120
|
+
<wsdl:operation name="ReportStockStatus">
|
1121
|
+
<soap:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/ReportStockStatus" style="document" />
|
1122
|
+
<wsdl:input>
|
1123
|
+
<soap:body use="literal" />
|
1124
|
+
</wsdl:input>
|
1125
|
+
<wsdl:output>
|
1126
|
+
<soap:body use="literal" />
|
1127
|
+
</wsdl:output>
|
1128
|
+
</wsdl:operation>
|
1129
|
+
<wsdl:operation name="SmallParcelOrders">
|
1130
|
+
<soap:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/SmallParcelOrders" style="document" />
|
1131
|
+
<wsdl:input>
|
1132
|
+
<soap:body use="literal" />
|
1133
|
+
</wsdl:input>
|
1134
|
+
<wsdl:output>
|
1135
|
+
<soap:body use="literal" />
|
1136
|
+
</wsdl:output>
|
1137
|
+
</wsdl:operation>
|
1138
|
+
<wsdl:operation name="SmallParcelUpdateTrackingNumbers">
|
1139
|
+
<soap:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/SmallParcelUpdateTrackingNumbers" style="document" />
|
1140
|
+
<wsdl:input>
|
1141
|
+
<soap:body use="literal" />
|
1142
|
+
</wsdl:input>
|
1143
|
+
<wsdl:output>
|
1144
|
+
<soap:body use="literal" />
|
1145
|
+
</wsdl:output>
|
1146
|
+
</wsdl:operation>
|
1147
|
+
<wsdl:operation name="SmallParcelUpdateOrders">
|
1148
|
+
<soap:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/SmallParcelUpdateOrders" style="document" />
|
1149
|
+
<wsdl:input>
|
1150
|
+
<soap:body use="literal" />
|
1151
|
+
</wsdl:input>
|
1152
|
+
<wsdl:output>
|
1153
|
+
<soap:body use="literal" />
|
1154
|
+
</wsdl:output>
|
1155
|
+
</wsdl:operation>
|
1156
|
+
<wsdl:operation name="CreateItems">
|
1157
|
+
<soap:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/CreateItems" style="document" />
|
1158
|
+
<wsdl:input>
|
1159
|
+
<soap:body use="literal" />
|
1160
|
+
</wsdl:input>
|
1161
|
+
<wsdl:output>
|
1162
|
+
<soap:body use="literal" />
|
1163
|
+
</wsdl:output>
|
1164
|
+
</wsdl:operation>
|
1165
|
+
</wsdl:binding>
|
1166
|
+
<wsdl:binding name="ServiceExternalSoap12" type="tns:ServiceExternalSoap">
|
1167
|
+
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
1168
|
+
<wsdl:operation name="CreateOrders">
|
1169
|
+
<soap12:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/CreateOrders" style="document" soapActionRequired="true" />
|
1170
|
+
<wsdl:input>
|
1171
|
+
<soap12:body use="literal" />
|
1172
|
+
</wsdl:input>
|
1173
|
+
<wsdl:output>
|
1174
|
+
<soap12:body use="literal" />
|
1175
|
+
</wsdl:output>
|
1176
|
+
</wsdl:operation>
|
1177
|
+
<wsdl:operation name="UpdateOrders">
|
1178
|
+
<soap12:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/UpdateOrders" style="document" soapActionRequired="true" />
|
1179
|
+
<wsdl:input>
|
1180
|
+
<soap12:body use="literal" />
|
1181
|
+
</wsdl:input>
|
1182
|
+
<wsdl:output>
|
1183
|
+
<soap12:body use="literal" />
|
1184
|
+
</wsdl:output>
|
1185
|
+
</wsdl:operation>
|
1186
|
+
<wsdl:operation name="CancelOrders">
|
1187
|
+
<soap12:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/CancelOrders" style="document" soapActionRequired="true" />
|
1188
|
+
<wsdl:input>
|
1189
|
+
<soap12:body use="literal" />
|
1190
|
+
</wsdl:input>
|
1191
|
+
<wsdl:output>
|
1192
|
+
<soap12:body use="literal" />
|
1193
|
+
</wsdl:output>
|
1194
|
+
</wsdl:operation>
|
1195
|
+
<wsdl:operation name="ReportRetailers">
|
1196
|
+
<soap12:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/ReportRetailers" style="document" soapActionRequired="true" />
|
1197
|
+
<wsdl:input>
|
1198
|
+
<soap12:body use="literal" />
|
1199
|
+
</wsdl:input>
|
1200
|
+
<wsdl:output>
|
1201
|
+
<soap12:body use="literal" />
|
1202
|
+
</wsdl:output>
|
1203
|
+
</wsdl:operation>
|
1204
|
+
<wsdl:operation name="FindOrders">
|
1205
|
+
<soap12:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/FindOrders" style="document" soapActionRequired="true" />
|
1206
|
+
<wsdl:input>
|
1207
|
+
<soap12:body use="literal" />
|
1208
|
+
</wsdl:input>
|
1209
|
+
<wsdl:output>
|
1210
|
+
<soap12:body use="literal" />
|
1211
|
+
</wsdl:output>
|
1212
|
+
</wsdl:operation>
|
1213
|
+
<wsdl:operation name="ReportStockStatus">
|
1214
|
+
<soap12:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/ReportStockStatus" style="document" soapActionRequired="true" />
|
1215
|
+
<wsdl:input>
|
1216
|
+
<soap12:body use="literal" />
|
1217
|
+
</wsdl:input>
|
1218
|
+
<wsdl:output>
|
1219
|
+
<soap12:body use="literal" />
|
1220
|
+
</wsdl:output>
|
1221
|
+
</wsdl:operation>
|
1222
|
+
<wsdl:operation name="SmallParcelOrders">
|
1223
|
+
<soap12:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/SmallParcelOrders" style="document" soapActionRequired="true" />
|
1224
|
+
<wsdl:input>
|
1225
|
+
<soap12:body use="literal" />
|
1226
|
+
</wsdl:input>
|
1227
|
+
<wsdl:output>
|
1228
|
+
<soap12:body use="literal" />
|
1229
|
+
</wsdl:output>
|
1230
|
+
</wsdl:operation>
|
1231
|
+
<wsdl:operation name="SmallParcelUpdateTrackingNumbers">
|
1232
|
+
<soap12:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/SmallParcelUpdateTrackingNumbers" style="document" soapActionRequired="true" />
|
1233
|
+
<wsdl:input>
|
1234
|
+
<soap12:body use="literal" />
|
1235
|
+
</wsdl:input>
|
1236
|
+
<wsdl:output>
|
1237
|
+
<soap12:body use="literal" />
|
1238
|
+
</wsdl:output>
|
1239
|
+
</wsdl:operation>
|
1240
|
+
<wsdl:operation name="SmallParcelUpdateOrders">
|
1241
|
+
<soap12:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/SmallParcelUpdateOrders" style="document" soapActionRequired="true" />
|
1242
|
+
<wsdl:input>
|
1243
|
+
<soap12:body use="literal" />
|
1244
|
+
</wsdl:input>
|
1245
|
+
<wsdl:output>
|
1246
|
+
<soap12:body use="literal" />
|
1247
|
+
</wsdl:output>
|
1248
|
+
</wsdl:operation>
|
1249
|
+
<wsdl:operation name="CreateItems">
|
1250
|
+
<soap12:operation soapAction="http://www.JOI.com/schemas/ViaSub.WMS/CreateItems" style="document" soapActionRequired="true" />
|
1251
|
+
<wsdl:input>
|
1252
|
+
<soap12:body use="literal" />
|
1253
|
+
</wsdl:input>
|
1254
|
+
<wsdl:output>
|
1255
|
+
<soap12:body use="literal" />
|
1256
|
+
</wsdl:output>
|
1257
|
+
</wsdl:operation>
|
1258
|
+
</wsdl:binding>
|
1259
|
+
<wsdl:service name="ServiceExternal">
|
1260
|
+
<wsdl:port name="ServiceExternalSoap" binding="tns:ServiceExternalSoap">
|
1261
|
+
<soap:address location="https://secure-wms.com/webserviceexternal/contracts.asmx" />
|
1262
|
+
</wsdl:port>
|
1263
|
+
<wsdl:port name="ServiceExternalSoap12" binding="tns:ServiceExternalSoap12">
|
1264
|
+
<soap12:address location="https://secure-wms.com/webserviceexternal/contracts.asmx" />
|
1265
|
+
</wsdl:port>
|
1266
|
+
</wsdl:service>
|
1267
|
+
</wsdl:definitions>
|