feat: separate fusion field service and LTC into standalone modules, update core modules
- fusion_claims: separated field service logic, updated controllers/views - fusion_tasks: updated task views and map integration - fusion_authorizer_portal: added page 11 signing, schedule booking, migrations - fusion_shipping: new standalone shipping module (Canada Post, FedEx, DHL, Purolator) - fusion_ltc_management: new standalone LTC management module
This commit is contained in:
1
fusion_shipping/api/ups/__init__.py
Normal file
1
fusion_shipping/api/ups/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import request
|
||||
637
fusion_shipping/api/ups/request.py
Normal file
637
fusion_shipping/api/ups/request.py
Normal file
@@ -0,0 +1,637 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
import base64
|
||||
import binascii
|
||||
import io
|
||||
import PIL.PdfImagePlugin # activate PDF support in PIL
|
||||
from PIL import Image
|
||||
import logging
|
||||
import os
|
||||
import re
|
||||
|
||||
from odoo.tools.zeep import Client, Plugin
|
||||
from odoo.tools.zeep.exceptions import Fault
|
||||
from odoo.tools.zeep.wsdl.utils import etree_to_string
|
||||
|
||||
from odoo.tools import _, LazyTranslate
|
||||
from odoo.tools.float_utils import float_repr
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
_lt = LazyTranslate(__name__)
|
||||
_logger = logging.getLogger(__name__)
|
||||
# uncomment to enable logging of SOAP requests and responses
|
||||
# logging.getLogger('zeep.transports').setLevel(logging.DEBUG)
|
||||
|
||||
|
||||
UPS_ERROR_MAP = {
|
||||
'110002': _lt("Please provide at least one item to ship."),
|
||||
'110208': _lt("Please set a valid country in the recipient address."),
|
||||
'110308': _lt("Please set a valid country in the warehouse address."),
|
||||
'110548': _lt("A shipment cannot have a KGS/IN or LBS/CM as its unit of measurements. Configure it from the delivery method."),
|
||||
'111057': _lt("This measurement system is not valid for the selected country. Please switch from LBS/IN to KGS/CM (or vice versa). Configure it from the delivery method."),
|
||||
'111091': _lt("The selected service is not possible from your warehouse to the recipient address, please choose another service."),
|
||||
'111100': _lt("The selected service is invalid from the requested warehouse, please choose another service."),
|
||||
'111107': _lt("Please provide a valid zip code in the warehouse address."),
|
||||
'111210': _lt("The selected service is invalid to the recipient address, please choose another service."),
|
||||
'111212': _lt("Please provide a valid package type available for service and selected locations."),
|
||||
'111500': _lt("The selected service is not valid with the selected packaging."),
|
||||
'112111': _lt("Please provide a valid shipper number/Carrier Account."),
|
||||
'113020': _lt("Please provide a valid zip code in the warehouse address."),
|
||||
'113021': _lt("Please provide a valid zip code in the recipient address."),
|
||||
'120031': _lt("Exceeds Total Number of allowed pieces per World Wide Express Shipment."),
|
||||
'120100': _lt("Please provide a valid shipper number/Carrier Account."),
|
||||
'120102': _lt("Please provide a valid street in shipper's address."),
|
||||
'120105': _lt("Please provide a valid city in the shipper's address."),
|
||||
'120106': _lt("Please provide a valid state in the shipper's address."),
|
||||
'120107': _lt("Please provide a valid zip code in the shipper's address."),
|
||||
'120108': _lt("Please provide a valid country in the shipper's address."),
|
||||
'120109': _lt("Please provide a valid shipper phone number."),
|
||||
'120113': _lt("Shipper number must contain alphanumeric characters only."),
|
||||
'120114': _lt("Shipper phone extension cannot exceed the length of 4."),
|
||||
'120115': _lt("Shipper Phone must be at least 10 alphanumeric characters."),
|
||||
'120116': _lt("Shipper phone extension must contain only numbers."),
|
||||
'120122': _lt("Please provide a valid shipper Number/Carrier Account."),
|
||||
'120124': _lt("The requested service is unavailable between the selected locations."),
|
||||
'120202': _lt("Please provide a valid street in the recipient address."),
|
||||
'120205': _lt("Please provide a valid city in the recipient address."),
|
||||
'120206': _lt("Please provide a valid state in the recipient address."),
|
||||
'120207': _lt("Please provide a valid zipcode in the recipient address."),
|
||||
'120208': _lt("Please provide a valid Country in recipient's address."),
|
||||
'120209': _lt("Please provide a valid phone number for the recipient."),
|
||||
'120212': _lt("Recipient PhoneExtension cannot exceed the length of 4."),
|
||||
'120213': _lt("Recipient Phone must be at least 10 alphanumeric characters."),
|
||||
'120214': _lt("Recipient PhoneExtension must contain only numbers."),
|
||||
'120302': _lt("Please provide a valid street in the warehouse address."),
|
||||
'120305': _lt("Please provide a valid City in the warehouse address."),
|
||||
'120306': _lt("Please provide a valid State in the warehouse address."),
|
||||
'120307': _lt("Please provide a valid Zip in the warehouse address."),
|
||||
'120308': _lt("Please provide a valid Country in the warehouse address."),
|
||||
'120309': _lt("Please provide a valid warehouse Phone Number"),
|
||||
'120312': _lt("Warehouse PhoneExtension cannot exceed the length of 4."),
|
||||
'120313': _lt("Warehouse Phone must be at least 10 alphanumeric characters."),
|
||||
'120314': _lt("Warehouse Phone must contain only numbers."),
|
||||
'120412': _lt("Please provide a valid shipper Number/Carrier Account."),
|
||||
'121057': _lt("This measurement system is not valid for the selected country. Please switch from LBS/IN to KGS/CM (or vice versa). Configure it from delivery method"),
|
||||
'121210': _lt("The requested service is unavailable between the selected locations."),
|
||||
'128089': _lt("Access License number is Invalid. Provide a valid number (Length should be 0-35 alphanumeric characters)"),
|
||||
'190001': _lt("Cancel shipment not available at this time , Please try again Later."),
|
||||
'190100': _lt("Provided Tracking Ref. Number is invalid."),
|
||||
'190109': _lt("Provided Tracking Ref. Number is invalid."),
|
||||
'250001': _lt("Access License number is invalid for this provider.Please re-license."),
|
||||
'250002': _lt("Username/Password is invalid for this delivery provider."),
|
||||
'250003': _lt("Access License number is invalid for this delivery provider."),
|
||||
'250004': _lt("Username/Password is invalid for this delivery provider."),
|
||||
'250006': _lt("The maximum number of user access attempts was exceeded. So please try again later"),
|
||||
'250007': _lt("The UserId is currently locked out; please try again in 24 hours."),
|
||||
'250009': _lt("Provided Access License Number not found in the UPS database"),
|
||||
'250038': _lt("Please provide a valid shipper number/Carrier Account."),
|
||||
'250047': _lt("Access License number is revoked contact UPS to get access."),
|
||||
'250052': _lt("Authorization system is currently unavailable , try again later."),
|
||||
'250053': _lt("UPS Server Not Found"),
|
||||
'9120200': _lt("Please provide at least one item to ship")
|
||||
}
|
||||
|
||||
|
||||
class LogPlugin(Plugin):
|
||||
""" Small plugin for zeep that catches out/ingoing XML requests and logs them"""
|
||||
def __init__(self, debug_logger):
|
||||
self.debug_logger = debug_logger
|
||||
|
||||
def egress(self, envelope, http_headers, operation, binding_options):
|
||||
self.debug_logger(etree_to_string(envelope).decode(), 'ups_request')
|
||||
return envelope, http_headers
|
||||
|
||||
def ingress(self, envelope, http_headers, operation):
|
||||
self.debug_logger(etree_to_string(envelope).decode(), 'ups_response')
|
||||
return envelope, http_headers
|
||||
|
||||
|
||||
class FixRequestNamespacePlug(Plugin):
|
||||
def __init__(self, root):
|
||||
self.root = root
|
||||
|
||||
def marshalled(self, context):
|
||||
context.envelope = context.envelope.prune()
|
||||
|
||||
|
||||
class UPSRequest():
|
||||
def __init__(self, debug_logger, username, password, shipper_number, access_number, prod_environment):
|
||||
self.debug_logger = debug_logger
|
||||
# Product and Testing url
|
||||
self.endurl = "https://onlinetools.ups.com/webservices/"
|
||||
if not prod_environment:
|
||||
self.endurl = "https://wwwcie.ups.com/webservices/"
|
||||
|
||||
# Basic detail require to authenticate
|
||||
self.username = username
|
||||
self.password = password
|
||||
self.shipper_number = shipper_number
|
||||
self.access_number = access_number
|
||||
|
||||
self.rate_wsdl = '../wsdl/RateWS.wsdl'
|
||||
self.ship_wsdl = '../wsdl/Ship.wsdl'
|
||||
self.void_wsdl = '../wsdl/Void.wsdl'
|
||||
self.ns = {'err': "http://www.ups.com/XMLSchema/XOLTWS/Error/v1.1"}
|
||||
|
||||
def _add_security_header(self, client, api):
|
||||
# set the detail which require to authenticate
|
||||
user_token = {'Username': self.username, 'Password': self.password}
|
||||
access_token = {'AccessLicenseNumber': self.access_number}
|
||||
security = client._Client__obj.get_element('ns0:UPSSecurity')(UsernameToken=user_token, ServiceAccessToken=access_token)
|
||||
client._Client__obj.set_default_soapheaders([security])
|
||||
|
||||
def _set_service(self, client, api):
|
||||
service = client.create_service(
|
||||
next(iter(client._Client__obj.wsdl.bindings)),
|
||||
'%s%s' % (self.endurl, api))
|
||||
return service
|
||||
|
||||
def _set_client(self, wsdl, api, root):
|
||||
wsdl_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), wsdl)
|
||||
client = Client(wsdl_path, plugins=[FixRequestNamespacePlug(root), LogPlugin(self.debug_logger)])
|
||||
self.factory_ns2 = client.type_factory('ns2')
|
||||
self.factory_ns3 = client.type_factory('ns3')
|
||||
# ns4 only exists for Ship API - we only use it for the invoice
|
||||
self.factory_ns4 = client.type_factory('ns4') if api == 'Ship' else self.factory_ns3
|
||||
self._add_security_header(client, api)
|
||||
return client
|
||||
|
||||
def _clean_phone_number(self, phone):
|
||||
return re.sub('[^0-9]','', phone)
|
||||
|
||||
def check_required_value(self, shipper, ship_from, ship_to, order=False, picking=False):
|
||||
required_field = {'city': 'City', 'country_id': 'Country', 'phone': 'Phone'}
|
||||
# Check required field for shipper
|
||||
res = [required_field[field] for field in required_field if not shipper[field]]
|
||||
if shipper.country_id.code in ('US', 'CA', 'IE') and not shipper.state_id.code:
|
||||
res.append('State')
|
||||
if not shipper.street and not shipper.street2:
|
||||
res.append('Street')
|
||||
if shipper.country_id.code != 'HK' and not shipper.zip:
|
||||
res.append('ZIP code')
|
||||
if res:
|
||||
return _("The address of your company is missing or wrong.\n(Missing field(s) : %s)", ",".join(res))
|
||||
if len(self._clean_phone_number(shipper.phone)) < 10:
|
||||
return str(UPS_ERROR_MAP.get('120115'))
|
||||
# Check required field for warehouse address
|
||||
res = [required_field[field] for field in required_field if not ship_from[field]]
|
||||
if ship_from.country_id.code in ('US', 'CA', 'IE') and not ship_from.state_id.code:
|
||||
res.append('State')
|
||||
if not ship_from.street and not ship_from.street2:
|
||||
res.append('Street')
|
||||
if ship_from.country_id.code != 'HK' and not ship_from.zip:
|
||||
res.append('ZIP code')
|
||||
if res:
|
||||
return _("The address of your warehouse is missing or wrong.\n(Missing field(s) : %s)", ",".join(res))
|
||||
if len(self._clean_phone_number(ship_from.phone)) < 10:
|
||||
return str(UPS_ERROR_MAP.get('120313'))
|
||||
# Check required field for recipient address
|
||||
res = [required_field[field] for field in required_field if field != 'phone' and not ship_to[field]]
|
||||
if ship_to.country_id.code in ('US', 'CA', 'IE') and not ship_to.state_id.code:
|
||||
res.append('State')
|
||||
# The street isn't required if we compute the rate with a partial delivery address in the
|
||||
# express checkout flow.
|
||||
if not ship_to.street and not ship_to.street2 and not ship_to.env.context.get(
|
||||
'express_checkout_partial_delivery_address', False
|
||||
):
|
||||
res.append('Street')
|
||||
if ship_to.country_id.code != 'HK' and not ship_to.zip:
|
||||
res.append('ZIP code')
|
||||
if len(ship_to.street or '') > 35 or len(ship_to.street2 or '') > 35:
|
||||
return _("UPS address lines can only contain a maximum of 35 characters. You can split the contacts addresses on multiple lines to try to avoid this limitation.")
|
||||
if picking and not order:
|
||||
order = picking.sale_id
|
||||
phone = ship_to.phone
|
||||
if order and not phone:
|
||||
phone = order.partner_id.phone
|
||||
if order:
|
||||
if not order.order_line:
|
||||
return _("Please provide at least one item to ship.")
|
||||
error_lines = order.order_line._get_invalid_delivery_weight_lines()
|
||||
if error_lines:
|
||||
return _("The estimated shipping price cannot be computed because the weight is missing for the following product(s): \n %s", ", ".join(error_lines.product_id.mapped('name')))
|
||||
if picking:
|
||||
if not all(ml.result_package_id or ml.product_id.weight for ml in picking.move_line_ids):
|
||||
return _("The delivery cannot be done because the weight of your product is missing.")
|
||||
packages_without_weight = picking.move_line_ids.mapped('result_package_id').filtered(lambda p: not p.shipping_weight)
|
||||
if packages_without_weight:
|
||||
return _('Packages %s do not have a positive shipping weight.', ', '.join(packages_without_weight.mapped('display_name')))
|
||||
# The phone isn't required if we compute the rate with a partial delivery address in the
|
||||
# express checkout flow.
|
||||
if not phone and not ship_to.env.context.get(
|
||||
'express_checkout_partial_delivery_address', False
|
||||
):
|
||||
res.append('Phone')
|
||||
if res:
|
||||
return _("The recipient address is missing or wrong.\n(Missing field(s) : %s)", ",".join(res))
|
||||
# The phone isn't required if we compute the rate with a partial delivery address in the
|
||||
# express checkout flow.
|
||||
if not ship_to.env.context.get(
|
||||
'express_checkout_partial_delivery_address', False
|
||||
) and len(self._clean_phone_number(phone)) < 10:
|
||||
return str(UPS_ERROR_MAP.get('120213'))
|
||||
return False
|
||||
|
||||
def get_error_message(self, error_code, description):
|
||||
result = {}
|
||||
result['error_message'] = str(UPS_ERROR_MAP.get(error_code))
|
||||
if result['error_message'] == "None":
|
||||
result['error_message'] = description
|
||||
return result
|
||||
|
||||
def save_label(self, image64, label_file_type='GIF'):
|
||||
img_decoded = base64.decodebytes(image64.encode('utf-8'))
|
||||
if label_file_type == 'GIF':
|
||||
# Label format is GIF, so need to rotate and convert as PDF
|
||||
image_string = io.BytesIO(img_decoded)
|
||||
im = Image.open(image_string)
|
||||
label_result = io.BytesIO()
|
||||
im.save(label_result, 'pdf')
|
||||
return label_result.getvalue()
|
||||
else:
|
||||
return img_decoded
|
||||
|
||||
def set_package_detail(self, carrier, client, packages, ship_from, ship_to, cod_info, request_type):
|
||||
Packages = []
|
||||
if request_type == "rating":
|
||||
MeasurementType = self.factory_ns2.CodeDescriptionType
|
||||
elif request_type == "shipping":
|
||||
MeasurementType = self.factory_ns2.ShipUnitOfMeasurementType
|
||||
for p in packages:
|
||||
package = self.factory_ns2.PackageType()
|
||||
if hasattr(package, 'Packaging'):
|
||||
package.Packaging = self.factory_ns2.PackagingType()
|
||||
package.Packaging.Code = p.packaging_type or ''
|
||||
elif hasattr(package, 'PackagingType'):
|
||||
package.PackagingType = self.factory_ns2.CodeDescriptionType()
|
||||
package.PackagingType.Code = p.packaging_type or ''
|
||||
|
||||
package.Dimensions = self.factory_ns2.DimensionsType()
|
||||
package.Dimensions.UnitOfMeasurement = MeasurementType()
|
||||
package.Dimensions.UnitOfMeasurement.Code = carrier.ups_package_dimension_unit
|
||||
package.Dimensions.Length = p.dimension['length']
|
||||
package.Dimensions.Width = p.dimension['width']
|
||||
package.Dimensions.Height = p.dimension['height']
|
||||
|
||||
package.PackageServiceOptions = self.factory_ns2.PackageServiceOptionsType()
|
||||
if cod_info:
|
||||
package.PackageServiceOptions.COD = self.factory_ns2.CODType()
|
||||
package.PackageServiceOptions.COD.CODFundsCode = str(cod_info['funds_code'])
|
||||
package.PackageServiceOptions.COD.CODAmount = self.factory_ns2.CODAmountType() if request_type == 'rating' else self.factory_ns2.CurrencyMonetaryType()
|
||||
package.PackageServiceOptions.COD.CODAmount.MonetaryValue = cod_info['monetary_value']
|
||||
package.PackageServiceOptions.COD.CODAmount.CurrencyCode = cod_info['currency']
|
||||
|
||||
if p.currency_id:
|
||||
package.PackageServiceOptions.DeclaredValue = self.factory_ns2.InsuredValueType() if request_type == 'rating' else self.factory_ns2.PackageDeclaredValueType()
|
||||
package.PackageServiceOptions.DeclaredValue.CurrencyCode = p.currency_id.name
|
||||
package.PackageServiceOptions.DeclaredValue.MonetaryValue = float_repr(p.total_cost * carrier.shipping_insurance / 100, 2)
|
||||
if request_type == "shipping":
|
||||
package.PackageServiceOptions.DeclaredValue.Type = self.factory_ns2.DeclaredValueType()
|
||||
package.PackageServiceOptions.DeclaredValue.Type.Code = '01' # EVS
|
||||
|
||||
package.PackageWeight = self.factory_ns2.PackageWeightType()
|
||||
package.PackageWeight.UnitOfMeasurement = MeasurementType()
|
||||
package.PackageWeight.UnitOfMeasurement.Code = carrier.ups_package_weight_unit
|
||||
package.PackageWeight.Weight = carrier._ups_convert_weight(p.weight, carrier.ups_package_weight_unit)
|
||||
|
||||
# Package and shipment reference text is only allowed for shipments within
|
||||
# the USA and within Puerto Rico. This is a UPS limitation.
|
||||
if (p.name and not ' ' in p.name and ship_from.country_id.code in ('US') and ship_to.country_id.code in ('US')):
|
||||
reference_number = self.factory_ns2.ReferenceNumberType()
|
||||
reference_number.Code = 'PM'
|
||||
reference_number.Value = p.name
|
||||
reference_number.BarCodeIndicator = p.name
|
||||
package.ReferenceNumber = reference_number
|
||||
|
||||
Packages.append(package)
|
||||
return Packages
|
||||
|
||||
def set_invoice(self, shipment_info, commodities, ship_to):
|
||||
|
||||
invoice_products = []
|
||||
for commodity in commodities:
|
||||
uom_type = self.factory_ns4.UnitOfMeasurementType()
|
||||
uom_type.Code = 'PC' if commodity.qty == 1 else 'PCS'
|
||||
|
||||
unit_type = self.factory_ns4.UnitType()
|
||||
unit_type.Number = int(commodity.qty)
|
||||
unit_type.Value = float_repr(commodity.monetary_value, 2)
|
||||
unit_type.UnitOfMeasurement = uom_type
|
||||
|
||||
product = self.factory_ns4.ProductType()
|
||||
# split the name of the product to maximum 3 substrings of length 35
|
||||
name = commodity.product_id.name
|
||||
product.Description = [line for line in [name[35 * i:35 * (i + 1)] for i in range(3)] if line]
|
||||
product.Unit = unit_type
|
||||
product.OriginCountryCode = commodity.country_of_origin
|
||||
product.CommodityCode = commodity.product_id.hs_code or ''
|
||||
|
||||
invoice_products.append(product)
|
||||
|
||||
address_sold_to = self.factory_ns4.AddressType()
|
||||
address_sold_to.AddressLine = [line for line in (ship_to.street, ship_to.street2) if line]
|
||||
address_sold_to.City = ship_to.city or ''
|
||||
address_sold_to.PostalCode = ship_to.zip or ''
|
||||
address_sold_to.CountryCode = ship_to.country_id.code or ''
|
||||
if ship_to.country_id.code in ('US', 'CA', 'IE'):
|
||||
address_sold_to.StateProvinceCode = ship_to.state_id.code or ''
|
||||
|
||||
sold_to = self.factory_ns4.SoldToType()
|
||||
if len(ship_to.commercial_partner_id.name) > 35:
|
||||
raise UserError(_('The name of the customer should be no more than 35 characters.'))
|
||||
sold_to.Name = ship_to.commercial_partner_id.name
|
||||
sold_to.AttentionName = ship_to.name
|
||||
sold_to.Address = address_sold_to
|
||||
|
||||
contact = self.factory_ns4.ContactType()
|
||||
contact.SoldTo = sold_to
|
||||
|
||||
invoice = self.factory_ns4.InternationalFormType()
|
||||
invoice.FormType = '01' # Invoice
|
||||
invoice.Product = invoice_products
|
||||
invoice.CurrencyCode = shipment_info.get('itl_currency_code')
|
||||
invoice.InvoiceDate = shipment_info.get('invoice_date')
|
||||
invoice.ReasonForExport = 'RETURN' if shipment_info.get('is_return', False) else 'SALE'
|
||||
invoice.Contacts = contact
|
||||
return invoice
|
||||
|
||||
def get_shipping_price(self, carrier, shipment_info, packages, shipper, ship_from, ship_to, service_type, saturday_delivery, cod_info):
|
||||
client = self._set_client(self.rate_wsdl, 'Rate', 'RateRequest')
|
||||
service = self._set_service(client, 'Rate')
|
||||
request = self.factory_ns3.RequestType()
|
||||
request.RequestOption = 'Rate'
|
||||
|
||||
classification = self.factory_ns2.CodeDescriptionType()
|
||||
classification.Code = '00' # Get rates for the shipper account
|
||||
classification.Description = 'Get rates for the shipper account'
|
||||
|
||||
request_type = "rating"
|
||||
shipment = self.factory_ns2.ShipmentType()
|
||||
|
||||
for package in self.set_package_detail(carrier, client, packages, ship_from, ship_to, cod_info, request_type):
|
||||
shipment.Package.append(package)
|
||||
|
||||
shipment.Shipper = self.factory_ns2.ShipperType()
|
||||
shipment.Shipper.Name = shipper.name or ''
|
||||
shipment.Shipper.Address = self.factory_ns2.AddressType()
|
||||
shipment.Shipper.Address.AddressLine = [shipper.street or '', shipper.street2 or '']
|
||||
shipment.Shipper.Address.City = shipper.city or ''
|
||||
shipment.Shipper.Address.PostalCode = shipper.zip or ''
|
||||
shipment.Shipper.Address.CountryCode = shipper.country_id.code or ''
|
||||
if shipper.country_id.code in ('US', 'CA', 'IE'):
|
||||
shipment.Shipper.Address.StateProvinceCode = shipper.state_id.code or ''
|
||||
shipment.Shipper.ShipperNumber = self.shipper_number or ''
|
||||
# shipment.Shipper.Phone.Number = shipper.phone or ''
|
||||
|
||||
shipment.ShipFrom = self.factory_ns2.ShipFromType()
|
||||
shipment.ShipFrom.Name = ship_from.name or ''
|
||||
shipment.ShipFrom.Address = self.factory_ns2.AddressType()
|
||||
shipment.ShipFrom.Address.AddressLine = [ship_from.street or '', ship_from.street2 or '']
|
||||
shipment.ShipFrom.Address.City = ship_from.city or ''
|
||||
shipment.ShipFrom.Address.PostalCode = ship_from.zip or ''
|
||||
shipment.ShipFrom.Address.CountryCode = ship_from.country_id.code or ''
|
||||
if ship_from.country_id.code in ('US', 'CA', 'IE'):
|
||||
shipment.ShipFrom.Address.StateProvinceCode = ship_from.state_id.code or ''
|
||||
# shipment.ShipFrom.Phone.Number = ship_from.phone or ''
|
||||
|
||||
shipment.ShipTo = self.factory_ns2.ShipToType()
|
||||
shipment.ShipTo.Name = ship_to.name or ''
|
||||
shipment.ShipTo.Address = self.factory_ns2.AddressType()
|
||||
shipment.ShipTo.Address.AddressLine = [ship_to.street or '', ship_to.street2 or '']
|
||||
shipment.ShipTo.Address.City = ship_to.city or ''
|
||||
shipment.ShipTo.Address.PostalCode = ship_to.zip or ''
|
||||
shipment.ShipTo.Address.CountryCode = ship_to.country_id.code or ''
|
||||
if ship_to.country_id.code in ('US', 'CA', 'IE'):
|
||||
shipment.ShipTo.Address.StateProvinceCode = ship_to.state_id.code or ''
|
||||
# shipment.ShipTo.Phone.Number = ship_to.phone or ''
|
||||
if not ship_to.commercial_partner_id.is_company:
|
||||
shipment.ShipTo.Address.ResidentialAddressIndicator = None
|
||||
|
||||
shipment.Service = self.factory_ns2.CodeDescriptionType()
|
||||
shipment.Service.Code = service_type or ''
|
||||
shipment.Service.Description = 'Service Code'
|
||||
if service_type == "96":
|
||||
shipment.NumOfPieces = int(shipment_info.get('total_qty'))
|
||||
|
||||
if saturday_delivery:
|
||||
shipment.ShipmentServiceOptions = self.factory_ns2.ShipmentServiceOptionsType()
|
||||
shipment.ShipmentServiceOptions.SaturdayDeliveryIndicator = saturday_delivery
|
||||
else:
|
||||
shipment.ShipmentServiceOptions = ''
|
||||
|
||||
shipment.ShipmentRatingOptions = self.factory_ns2.ShipmentRatingOptionsType()
|
||||
shipment.ShipmentRatingOptions.NegotiatedRatesIndicator = 1
|
||||
|
||||
try:
|
||||
# Get rate using for provided detail
|
||||
response = service.ProcessRate(Request=request, CustomerClassification=classification, Shipment=shipment)
|
||||
|
||||
# Check if ProcessRate is not success then return reason for that
|
||||
if response.Response.ResponseStatus.Code != "1":
|
||||
return self.get_error_message(response.Response.ResponseStatus.Code, response.Response.ResponseStatus.Description)
|
||||
|
||||
rate = response.RatedShipment[0]
|
||||
charge = rate.TotalCharges
|
||||
|
||||
# Some users are qualified to receive negotiated rates
|
||||
if 'NegotiatedRateCharges' in rate and rate.NegotiatedRateCharges and rate.NegotiatedRateCharges.TotalCharge.MonetaryValue:
|
||||
charge = rate.NegotiatedRateCharges.TotalCharge
|
||||
|
||||
return {
|
||||
'currency_code': charge.CurrencyCode,
|
||||
'price': charge.MonetaryValue,
|
||||
}
|
||||
|
||||
except Fault as e:
|
||||
code = e.detail.xpath("//err:PrimaryErrorCode/err:Code", namespaces=self.ns)[0].text
|
||||
description = e.detail.xpath("//err:PrimaryErrorCode/err:Description", namespaces=self.ns)[0].text
|
||||
return self.get_error_message(code, description)
|
||||
except IOError as e:
|
||||
return self.get_error_message('0', 'UPS Server Not Found:\n%s' % e)
|
||||
|
||||
def send_shipping(self, carrier, shipment_info, packages, shipper, ship_from, ship_to, service_type, saturday_delivery, duty_payment, cod_info=None, label_file_type='GIF', ups_carrier_account=False):
|
||||
client = self._set_client(self.ship_wsdl, 'Ship', 'ShipmentRequest')
|
||||
request = self.factory_ns3.RequestType()
|
||||
request.RequestOption = 'nonvalidate'
|
||||
|
||||
request_type = "shipping"
|
||||
label = self.factory_ns2.LabelSpecificationType()
|
||||
label.LabelImageFormat = self.factory_ns2.LabelImageFormatType()
|
||||
label.LabelImageFormat.Code = label_file_type
|
||||
label.LabelImageFormat.Description = label_file_type
|
||||
if label_file_type != 'GIF':
|
||||
label.LabelStockSize = self.factory_ns2.LabelStockSizeType()
|
||||
label.LabelStockSize.Height = '6'
|
||||
label.LabelStockSize.Width = '4'
|
||||
|
||||
shipment = self.factory_ns2.ShipmentType()
|
||||
shipment.Description = shipment_info.get('description')
|
||||
|
||||
for package in self.set_package_detail(carrier, client, packages, ship_from, ship_to, cod_info, request_type):
|
||||
shipment.Package.append(package)
|
||||
|
||||
shipment.Shipper = self.factory_ns2.ShipperType()
|
||||
shipment.Shipper.Address = self.factory_ns2.ShipAddressType()
|
||||
shipment.Shipper.AttentionName = (shipper.name or '')[:35]
|
||||
shipment.Shipper.Name = (shipper.parent_id.name or shipper.name or '')[:35]
|
||||
shipment.Shipper.Address.AddressLine = [l for l in [shipper.street or '', shipper.street2 or ''] if l]
|
||||
shipment.Shipper.Address.City = shipper.city or ''
|
||||
shipment.Shipper.Address.PostalCode = shipper.zip or ''
|
||||
shipment.Shipper.Address.CountryCode = shipper.country_id.code or ''
|
||||
if shipper.country_id.code in ('US', 'CA', 'IE'):
|
||||
shipment.Shipper.Address.StateProvinceCode = shipper.state_id.code or ''
|
||||
shipment.Shipper.ShipperNumber = self.shipper_number or ''
|
||||
shipment.Shipper.Phone = self.factory_ns2.ShipPhoneType()
|
||||
shipment.Shipper.Phone.Number = self._clean_phone_number(shipper.phone)
|
||||
shipment.Shipper.EMailAddress = shipper.email or ''
|
||||
|
||||
shipment.ShipFrom = self.factory_ns2.ShipFromType()
|
||||
shipment.ShipFrom.Address = self.factory_ns2.ShipAddressType()
|
||||
shipment.ShipFrom.AttentionName = (ship_from.name or '')[:35]
|
||||
shipment.ShipFrom.Name = (ship_from.parent_id.name or ship_from.name or '')[:35]
|
||||
shipment.ShipFrom.Address.AddressLine = [l for l in [ship_from.street or '', ship_from.street2 or ''] if l]
|
||||
shipment.ShipFrom.Address.City = ship_from.city or ''
|
||||
shipment.ShipFrom.Address.PostalCode = ship_from.zip or ''
|
||||
shipment.ShipFrom.Address.CountryCode = ship_from.country_id.code or ''
|
||||
if ship_from.country_id.code in ('US', 'CA', 'IE'):
|
||||
shipment.ShipFrom.Address.StateProvinceCode = ship_from.state_id.code or ''
|
||||
shipment.ShipFrom.Phone = self.factory_ns2.ShipPhoneType()
|
||||
shipment.ShipFrom.Phone.Number = self._clean_phone_number(ship_from.phone)
|
||||
shipment.ShipFrom.EMailAddress = ship_from.email or ''
|
||||
|
||||
shipment.ShipTo = self.factory_ns2.ShipToType()
|
||||
shipment.ShipTo.Address = self.factory_ns2.ShipToAddressType()
|
||||
shipment.ShipTo.AttentionName = (ship_to.name or '')[:35]
|
||||
shipment.ShipTo.Name = (ship_to.parent_id.name or ship_to.name or '')[:35]
|
||||
shipment.ShipTo.Address.AddressLine = [l for l in [ship_to.street or '', ship_to.street2 or ''] if l]
|
||||
shipment.ShipTo.Address.City = ship_to.city or ''
|
||||
shipment.ShipTo.Address.PostalCode = ship_to.zip or ''
|
||||
shipment.ShipTo.Address.CountryCode = ship_to.country_id.code or ''
|
||||
if ship_to.country_id.code in ('US', 'CA', 'IE'):
|
||||
shipment.ShipTo.Address.StateProvinceCode = ship_to.state_id.code or ''
|
||||
shipment.ShipTo.Phone = self.factory_ns2.ShipPhoneType()
|
||||
shipment.ShipTo.Phone.Number = self._clean_phone_number(shipment_info['phone'])
|
||||
shipment.ShipTo.EMailAddress = ship_to.email or ''
|
||||
if not ship_to.commercial_partner_id.is_company:
|
||||
shipment.ShipTo.Address.ResidentialAddressIndicator = None
|
||||
|
||||
shipment.Service = self.factory_ns2.ServiceType()
|
||||
shipment.Service.Code = service_type or ''
|
||||
shipment.Service.Description = 'Service Code'
|
||||
if service_type == "96":
|
||||
shipment.NumOfPiecesInShipment = int(shipment_info.get('total_qty'))
|
||||
shipment.ShipmentRatingOptions = self.factory_ns2.RateInfoType()
|
||||
shipment.ShipmentRatingOptions.NegotiatedRatesIndicator = 1
|
||||
|
||||
# Shipments from US to CA or PR require extra info
|
||||
if ship_from.country_id.code == 'US' and ship_to.country_id.code in ['CA', 'PR']:
|
||||
shipment.InvoiceLineTotal = self.factory_ns2.CurrencyMonetaryType()
|
||||
shipment.InvoiceLineTotal.CurrencyCode = shipment_info.get('itl_currency_code')
|
||||
shipment.InvoiceLineTotal.MonetaryValue = shipment_info.get('ilt_monetary_value')
|
||||
|
||||
# set the default method for payment using shipper account
|
||||
payment_info = self.factory_ns2.PaymentInfoType()
|
||||
shipcharge = self.factory_ns2.ShipmentChargeType()
|
||||
shipcharge.Type = '01'
|
||||
|
||||
# Bill Recevier 'Bill My Account'
|
||||
if ups_carrier_account:
|
||||
shipcharge.BillReceiver = self.factory_ns2.BillReceiverType()
|
||||
shipcharge.BillReceiver.Address = self.factory_ns2.BillReceiverAddressType()
|
||||
shipcharge.BillReceiver.AccountNumber = ups_carrier_account
|
||||
shipcharge.BillReceiver.Address.PostalCode = ship_to.zip
|
||||
else:
|
||||
shipcharge.BillShipper = self.factory_ns2.BillShipperType()
|
||||
shipcharge.BillShipper.AccountNumber = self.shipper_number or ''
|
||||
|
||||
payment_info.ShipmentCharge = [shipcharge]
|
||||
|
||||
if duty_payment == 'SENDER':
|
||||
duty_charge = self.factory_ns2.ShipmentChargeType()
|
||||
duty_charge.Type = '02'
|
||||
duty_charge.BillShipper = self.factory_ns2.BillShipperType()
|
||||
duty_charge.BillShipper.AccountNumber = self.shipper_number or ''
|
||||
payment_info.ShipmentCharge.append(duty_charge)
|
||||
|
||||
shipment.PaymentInformation = payment_info
|
||||
|
||||
sso = self.factory_ns2.ShipmentServiceOptionsType()
|
||||
if shipment_info.get('require_invoice'):
|
||||
sso.InternationalForms = self.set_invoice(shipment_info, [c for pkg in packages for c in pkg.commodities], ship_to)
|
||||
sso.InternationalForms.TermsOfShipment = shipment_info.get('terms_of_shipment')
|
||||
sso.InternationalForms.PurchaseOrderNumber = shipment_info.get('purchase_order_number')
|
||||
if saturday_delivery:
|
||||
sso.SaturdayDeliveryIndicator = saturday_delivery
|
||||
shipment.ShipmentServiceOptions = sso
|
||||
|
||||
self.shipment = shipment
|
||||
self.label = label
|
||||
self.request = request
|
||||
self.label_file_type = label_file_type
|
||||
|
||||
def return_label(self):
|
||||
return_service = self.factory_ns2.ReturnServiceType()
|
||||
return_service.Code = "9"
|
||||
self.shipment.ReturnService = return_service
|
||||
for p in self.shipment.Package:
|
||||
p.Description = "Return of courtesy"
|
||||
|
||||
|
||||
def process_shipment(self):
|
||||
client = self._set_client(self.ship_wsdl, 'Ship', 'ShipmentRequest')
|
||||
service = self._set_service(client, 'Ship')
|
||||
try:
|
||||
response = service.ProcessShipment(
|
||||
Request=self.request, Shipment=self.shipment,
|
||||
LabelSpecification=self.label)
|
||||
|
||||
# Check if shipment is not success then return reason for that
|
||||
if response.Response.ResponseStatus.Code != "1":
|
||||
return self.get_error_message(response.Response.ResponseStatus.Code, response.Response.ResponseStatus.Description)
|
||||
|
||||
result = {}
|
||||
result['label_binary_data'] = {}
|
||||
for package in response.ShipmentResults.PackageResults:
|
||||
result['label_binary_data'][package.TrackingNumber] = self.save_label(package.ShippingLabel.GraphicImage, label_file_type=self.label_file_type)
|
||||
if response.ShipmentResults.Form:
|
||||
result['invoice_binary_data'] = self.save_label(response.ShipmentResults.Form.Image.GraphicImage, label_file_type='pdf') # only pdf supported currently
|
||||
result['tracking_ref'] = response.ShipmentResults.ShipmentIdentificationNumber
|
||||
result['currency_code'] = response.ShipmentResults.ShipmentCharges.TotalCharges.CurrencyCode
|
||||
|
||||
# Some users are qualified to receive negotiated rates
|
||||
negotiated_rate = 'NegotiatedRateCharges' in response.ShipmentResults and response.ShipmentResults.NegotiatedRateCharges and response.ShipmentResults.NegotiatedRateCharges.TotalCharge.MonetaryValue or None
|
||||
|
||||
result['price'] = negotiated_rate or response.ShipmentResults.ShipmentCharges.TotalCharges.MonetaryValue
|
||||
return result
|
||||
|
||||
except Fault as e:
|
||||
code = e.detail.xpath("//err:PrimaryErrorCode/err:Code", namespaces=self.ns)[0].text
|
||||
description = e.detail.xpath("//err:PrimaryErrorCode/err:Description", namespaces=self.ns)[0].text
|
||||
return self.get_error_message(code, description)
|
||||
except IOError as e:
|
||||
return self.get_error_message('0', 'UPS Server Not Found:\n%s' % e)
|
||||
|
||||
def cancel_shipment(self, tracking_number):
|
||||
client = self._set_client(self.void_wsdl, 'Void', 'VoidShipmentRequest')
|
||||
service = self._set_service(client, 'Void')
|
||||
|
||||
request = self.factory_ns3.RequestType()
|
||||
request.TransactionReference = self.factory_ns3.TransactionReferenceType()
|
||||
request.TransactionReference.CustomerContext = "Cancle shipment"
|
||||
voidshipment = {'ShipmentIdentificationNumber': tracking_number or ''}
|
||||
|
||||
result = {}
|
||||
try:
|
||||
response = service.ProcessVoid(
|
||||
Request=request, VoidShipment=voidshipment
|
||||
)
|
||||
if response.Response.ResponseStatus.Code == "1":
|
||||
return result
|
||||
return self.get_error_message(response.Response.ResponseStatus.Code, response.Response.ResponseStatus.Description)
|
||||
|
||||
except Fault as e:
|
||||
code = e.detail.xpath("//err:PrimaryErrorCode/err:Code", namespaces=self.ns)[0].text
|
||||
description = e.detail.xpath("//err:PrimaryErrorCode/err:Description", namespaces=self.ns)[0].text
|
||||
return self.get_error_message(code, description)
|
||||
except IOError as e:
|
||||
return self.get_error_message('0', 'UPS Server Not Found:\n%s' % e)
|
||||
59
fusion_shipping/api/ups/wsdl/Error1.1.xsd
Normal file
59
fusion_shipping/api/ups/wsdl/Error1.1.xsd
Normal file
@@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xsd:schema targetNamespace="http://www.ups.com/XMLSchema/XOLTWS/Error/v1.1" xmlns:error="http://www.ups.com/XMLSchema/XOLTWS/Error/v1.1" xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="201707">
|
||||
<xsd:element name="Errors">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ErrorDetail" type="error:ErrorDetailType" maxOccurs="unbounded"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:complexType name="ErrorDetailType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Severity" type="xsd:string"/>
|
||||
<xsd:element name="PrimaryErrorCode" type="error:CodeType"/>
|
||||
<xsd:element name="MinimumRetrySeconds" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Location" type="error:LocationType" minOccurs="0"/>
|
||||
<xsd:element name="SubErrorCode" type="error:CodeType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="AdditionalInformation" type="error:AdditionalInfoType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="ElementLevelInformation" type="error:ElementLevelInformationType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ElementLevelInformationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Level" type="xsd:string"/>
|
||||
<xsd:element name="ElementIdentifier" type="error:ElementIdentifierType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ElementIdentifierType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Value" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CodeType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string"/>
|
||||
<xsd:element name="Digest" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="AdditionalInfoType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Type" type="xsd:string"/>
|
||||
<xsd:element name="Value" type="error:AdditionalCodeDescType" maxOccurs="unbounded"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="AdditionalCodeDescType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="LocationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="LocationElementName" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="XPathOfElement" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="OriginalValue" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:schema>
|
||||
318
fusion_shipping/api/ups/wsdl/IFWS.xsd
Normal file
318
fusion_shipping/api/ups/wsdl/IFWS.xsd
Normal file
@@ -0,0 +1,318 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xsd:schema targetNamespace="http://www.ups.com/XMLSchema/XOLTWS/IF/v1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ups="http://www.ups.com/XMLSchema" xmlns:IF="http://www.ups.com/XMLSchema/XOLTWS/IF/v1.0" elementFormDefault="qualified">
|
||||
<xsd:complexType name="InternationalFormType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="FormType" type="xsd:string" maxOccurs="6"/>
|
||||
<xsd:element name="UserCreatedForm" type="IF:UserCreatedFormType" minOccurs="0"/>
|
||||
<xsd:element name="CN22Form" type="IF:CN22FormType" minOccurs="0"/>
|
||||
<xsd:element name="UPSPremiumCareForm" type="IF:UPSPremiumCareFormType" minOccurs="0"/>
|
||||
<xsd:element name="AdditionalDocumentIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="FormGroupIdName" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="SEDFilingOption" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="EEIFilingOption" type="IF:EEIFilingOptionType" minOccurs="0"/>
|
||||
<xsd:element name="Contacts" type="IF:ContactType" minOccurs="0"/>
|
||||
<xsd:element name="Product" type="IF:ProductType" maxOccurs="50"/>
|
||||
<xsd:element name="InvoiceNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="InvoiceDate" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PurchaseOrderNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TermsOfShipment" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ReasonForExport" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Comments" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="DeclarationStatement" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Discount" type="IF:IFChargesType" minOccurs="0"/>
|
||||
<xsd:element name="FreightCharges" type="IF:IFChargesType" minOccurs="0"/>
|
||||
<xsd:element name="InsuranceCharges" type="IF:IFChargesType" minOccurs="0"/>
|
||||
<xsd:element name="OtherCharges" type="IF:OtherChargesType" minOccurs="0"/>
|
||||
<xsd:element name="CurrencyCode" type="xsd:string"/>
|
||||
<xsd:element name="BlanketPeriod" type="IF:BlanketPeriodType" minOccurs="0"/>
|
||||
<xsd:element name="ExportDate" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ExportingCarrier" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CarrierID" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="InBondCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="EntryNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PointOfOrigin" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PointOfOriginType" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ModeOfTransport" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PortOfExport" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PortOfUnloading" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="LoadingPier" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PartiesToTransaction" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="RoutedExportTransactionIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ContainerizedIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="License" type="IF:LicenseType" minOccurs="0"/>
|
||||
<xsd:element name="ECCNNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="OverridePaperlessIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ShipperMemo" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="MultiCurrencyInvoiceLineTotal" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="HazardousMaterialsIndicator" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="UPSPremiumCareFormType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ShipmentDate" type="xsd:string"/>
|
||||
<xsd:element name="PageSize" type="xsd:string"/>
|
||||
<xsd:element name="PrintType" type="xsd:string"/>
|
||||
<xsd:element name="NumOfCopies" type="xsd:string"/>
|
||||
<xsd:element name="LanguageForUPSPremiumCare" type="IF:LanguageForUPSPremiumCareType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="LanguageForUPSPremiumCareType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Language" type="xsd:string" maxOccurs="2"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="UserCreatedFormType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="DocumentID" type="xsd:string" maxOccurs="unbounded"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CN22FormType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="LabelSize" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PrintsPerPage" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="LabelPrintType" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CN22Type" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CN22OtherDescription" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="FoldHereText" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CN22Content" type="IF:CN22ContentType" minOccurs="0" maxOccurs="3"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CN22ContentType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CN22ContentQuantity" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CN22ContentDescription" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CN22ContentWeight" type="IF:ProductWeightType" minOccurs="0"/>
|
||||
<xsd:element name="CN22ContentTotalValue" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CN22ContentCurrencyCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CN22ContentCountryOfOrigin" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CN22ContentTariffNumber" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ContactType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ForwardAgent" type="IF:ForwardAgentType" minOccurs="0"/>
|
||||
<xsd:element name="UltimateConsignee" type="IF:UltimateConsigneeType" minOccurs="0"/>
|
||||
<xsd:element name="IntermediateConsignee" type="IF:IntermediateConsigneeType" minOccurs="0"/>
|
||||
<xsd:element name="Producer" type="IF:ProducerType" minOccurs="0"/>
|
||||
<xsd:element name="SoldTo" type="IF:SoldToType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ForwardAgentType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CompanyName" type="xsd:string"/>
|
||||
<xsd:element name="TaxIdentificationNumber" type="xsd:string"/>
|
||||
<xsd:element name="Address" type="IF:AddressType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="AddressType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="AddressLine" type="xsd:string" maxOccurs="3"/>
|
||||
<xsd:element name="City" type="xsd:string"/>
|
||||
<xsd:element name="StateProvinceCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Town" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PostalCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CountryCode" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="UltimateConsigneeType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CompanyName" type="xsd:string"/>
|
||||
<xsd:element name="Address" type="IF:AddressType"/>
|
||||
<xsd:element name="UltimateConsigneeType" type="IF:UltimateConsigneeTypeType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="IntermediateConsigneeType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CompanyName" type="xsd:string"/>
|
||||
<xsd:element name="Address" type="IF:AddressType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ProducerType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Option" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CompanyName" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TaxIdentificationNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Address" type="IF:AddressType" minOccurs="0"/>
|
||||
<xsd:element name="AttentionName" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Phone" type="IF:PhoneType" minOccurs="0"/>
|
||||
<xsd:element name="EMailAddress" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ProductType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Description" type="xsd:string" maxOccurs="3"/>
|
||||
<xsd:element name="Unit" type="IF:UnitType" minOccurs="0"/>
|
||||
<xsd:element name="CommodityCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PartNumber" type="xsd:string" minOccurs="0" ups:usage="notused"/>
|
||||
<xsd:element name="OriginCountryCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="JointProductionIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="NetCostCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="NetCostDateRange" type="IF:NetCostDateType" minOccurs="0"/>
|
||||
<xsd:element name="PreferenceCriteria" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ProducerInfo" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="MarksAndNumbers" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="NumberOfPackagesPerCommodity" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ProductWeight" type="IF:ProductWeightType" minOccurs="0"/>
|
||||
<xsd:element name="VehicleID" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ScheduleB" type="IF:ScheduleBType" minOccurs="0"/>
|
||||
<xsd:element name="ExportType" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="SEDTotalValue" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ExcludeFromForm" type="IF:ExcludeFromFormType" minOccurs="0"/>
|
||||
<xsd:element name="ProductCurrencyCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PackingListInfo" type="IF:PackingListInfoType" minOccurs="0"/>
|
||||
<xsd:element name="EEIInformation" type="IF:EEIInformationType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ExcludeFromFormType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="FormType" type="xsd:string" maxOccurs="unbounded"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="UnitType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Number" type="xsd:string"/>
|
||||
<xsd:element name="UnitOfMeasurement" type="IF:UnitOfMeasurementType"/>
|
||||
<xsd:element name="Value" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PackingListInfoType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PackageAssociated" type="IF:PackageAssociatedType" maxOccurs="unbounded"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PackageAssociatedType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PackageNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ProductAmount" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="UnitOfMeasurementType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="NetCostDateType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="BeginDate" type="xsd:string"/>
|
||||
<xsd:element name="EndDate" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ProductWeightType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="UnitOfMeasurement" type="IF:UnitOfMeasurementType"/>
|
||||
<xsd:element name="Weight" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ScheduleBType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Number" type="xsd:string"/>
|
||||
<xsd:element name="Quantity" type="xsd:string" minOccurs="0" maxOccurs="2"/>
|
||||
<xsd:element name="UnitOfMeasurement" type="IF:UnitOfMeasurementType" maxOccurs="2"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="IFChargesType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="MonetaryValue" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="OtherChargesType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="MonetaryValue" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="BlanketPeriodType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="BeginDate" type="xsd:string"/>
|
||||
<xsd:element name="EndDate" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="LicenseType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Number" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Date" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ExceptionCode" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="SoldToType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Name" type="xsd:string"/>
|
||||
<xsd:element name="AttentionName" type="xsd:string"/>
|
||||
<xsd:element name="TaxIdentificationNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Phone" type="IF:PhoneType" minOccurs="0"/>
|
||||
<xsd:element name="Option" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Address" type="IF:AddressType"/>
|
||||
<xsd:element name="EMailAddress" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
|
||||
<xsd:complexType name="PhoneType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Number" type="xsd:string"/>
|
||||
<xsd:element name="Extension" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="DDTCInformationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ITARExemptionNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="USMLCategoryCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="EligiblePartyIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="RegistrationNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Quantity" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="UnitOfMeasurement" type="IF:UnitOfMeasurementType"/>
|
||||
<xsd:element name="SignificantMilitaryEquipmentIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ACMNumber" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="EEILicenseType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Number" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Code" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="LicenseLineValue" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ECCNNumber" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="EEIFilingOptionType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="EMailAddress" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="UPSFiled" type="IF:UPSFiledType" minOccurs="0"/>
|
||||
<xsd:element name="ShipperFiled" type="IF:ShipperFiledType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="UPSFiledType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="POA" type="IF:POAType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipperFiledType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PreDepartureITNNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ExemptionLegend" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="EEIShipmentReferenceNumber" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="EEIInformationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ExportInformation" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="License" type="IF:EEILicenseType" minOccurs="0"/>
|
||||
<xsd:element name="DDTCInformation" type="IF:DDTCInformationType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="POAType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="UltimateConsigneeTypeType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:schema>
|
||||
58
fusion_shipping/api/ups/wsdl/RateWS.wsdl
Normal file
58
fusion_shipping/api/ups/wsdl/RateWS.wsdl
Normal file
@@ -0,0 +1,58 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- UPS Rate Service WSDL Release Date Dec 29, 2007 -->
|
||||
<!-- Copyright 2007-2008 United Parcel Service of America, Inc. All rights reserved. -->
|
||||
<wsdl:definitions name="RateWS" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:error="http://www.ups.com/XMLSchema/XOLTWS/Error/v1.1" xmlns:upss="http://www.ups.com/XMLSchema/XOLTWS/UPSS/v1.0" xmlns:rate="http://www.ups.com/XMLSchema/XOLTWS/Rate/v1.1" xmlns:tns="http://www.ups.com/WSDL/XOLTWS/Rate/v1.1" targetNamespace="http://www.ups.com/WSDL/XOLTWS/Rate/v1.1">
|
||||
<wsdl:types>
|
||||
<xsd:schema>
|
||||
<!-- This schema defines the UPS Security header used for authorization purposes -->
|
||||
<xsd:import namespace="http://www.ups.com/XMLSchema/XOLTWS/UPSS/v1.0" schemaLocation="UPSSecurity.xsd"/>
|
||||
<!-- This schema defines the error detail data types returned within SOAPFaults to provide more specific information pertaining to the problem. -->
|
||||
<xsd:import namespace="http://www.ups.com/XMLSchema/XOLTWS/Error/v1.1" schemaLocation="Error1.1.xsd"/>
|
||||
<!-- This schema defines the Rate service data types -->
|
||||
<xsd:import namespace="http://www.ups.com/XMLSchema/XOLTWS/Rate/v1.1" schemaLocation="RateWebServiceSchema.xsd"/>
|
||||
</xsd:schema>
|
||||
</wsdl:types>
|
||||
<wsdl:message name="RateRequestMessage">
|
||||
<wsdl:part name="Body" element="rate:RateRequest"/>
|
||||
<wsdl:part name="UPSSecurity" element="upss:UPSSecurity"/>
|
||||
</wsdl:message>
|
||||
<wsdl:message name="RateResponseMessage">
|
||||
<wsdl:part name="Body" element="rate:RateResponse"/>
|
||||
</wsdl:message>
|
||||
<wsdl:message name="RateErrorMessage">
|
||||
<wsdl:part name="RateError" element="error:Errors"/>
|
||||
</wsdl:message>
|
||||
<wsdl:portType name="RatePortType">
|
||||
<wsdl:operation name="ProcessRate">
|
||||
<wsdl:input name="RateRequest" message="tns:RateRequestMessage"/>
|
||||
<wsdl:output name="RateResponse" message="tns:RateResponseMessage"/>
|
||||
<wsdl:fault name="RateError" message="tns:RateErrorMessage"/>
|
||||
</wsdl:operation>
|
||||
</wsdl:portType>
|
||||
<wsdl:binding name="RateBinding" type="tns:RatePortType">
|
||||
<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
|
||||
<wsdl:operation name="ProcessRate">
|
||||
<soap:operation soapAction="http://onlinetools.ups.com/webservices/RateBinding/v1.1" style="document"/>
|
||||
<wsdl:input name="RateRequest">
|
||||
<soap:body parts="Body" use="literal"/>
|
||||
<soap:header message="tns:RateRequestMessage" part="UPSSecurity" use="literal">
|
||||
<soap:headerfault message="tns:RateErrorMessage" part="RateError" use="literal"/>
|
||||
</soap:header>
|
||||
</wsdl:input>
|
||||
<wsdl:output name="RateResponse">
|
||||
<soap:body parts="Body" use="literal"/>
|
||||
</wsdl:output>
|
||||
<wsdl:fault name="RateError">
|
||||
<soap:fault name="RateError" use="literal"/>
|
||||
</wsdl:fault>
|
||||
</wsdl:operation>
|
||||
</wsdl:binding>
|
||||
<wsdl:service name="RateService">
|
||||
<wsdl:port name="RatePort" binding="tns:RateBinding">
|
||||
<!-- Production URL -->
|
||||
<!-- <soap:address location="https://onlinetools.ups.com/webservices/Rate"/> -->
|
||||
<!-- CIE (Customer Integration Environment) URL -->
|
||||
<soap:address location="https://wwwcie.ups.com/webservices/Rate"/>
|
||||
</wsdl:port>
|
||||
</wsdl:service>
|
||||
</wsdl:definitions>
|
||||
619
fusion_shipping/api/ups/wsdl/RateWebServiceSchema.xsd
Normal file
619
fusion_shipping/api/ups/wsdl/RateWebServiceSchema.xsd
Normal file
@@ -0,0 +1,619 @@
|
||||
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:common="http://www.ups.com/XMLSchema/XOLTWS/Common/v1.0" xmlns:rate="http://www.ups.com/XMLSchema/XOLTWS/Rate/v1.1" xmlns:ups="http://www.ups.com/XMLSchema" elementFormDefault="qualified" targetNamespace="http://www.ups.com/XMLSchema/XOLTWS/Rate/v1.1" version="201701">
|
||||
<xsd:import namespace="http://www.ups.com/XMLSchema/XOLTWS/Common/v1.0" schemaLocation="common.xsd"/>
|
||||
<xsd:element name="RateRequest">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element ref="common:Request"/>
|
||||
<xsd:element name="PickupType" type="rate:CodeDescriptionType" minOccurs="0"/>
|
||||
<xsd:element minOccurs="0" name="CustomerClassification" type="rate:CodeDescriptionType"/>
|
||||
<xsd:element name="Shipment" type="rate:ShipmentType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="RateResponse">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element ref="common:Response"/>
|
||||
<xsd:element maxOccurs="unbounded" name="RatedShipment" type="rate:RatedShipmentType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:complexType name="BillingWeightType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="UnitOfMeasurement" type="rate:CodeDescriptionType"/>
|
||||
<xsd:element name="Weight" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="RatedPackageType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="TransportationCharges" type="rate:ChargesType"/>
|
||||
<xsd:element name="BaseServiceCharge" type="rate:ChargesType" minOccurs="0"/>
|
||||
<xsd:element minOccurs="0" name="ServiceOptionsCharges" type="rate:ChargesType"/>
|
||||
<xsd:element minOccurs="0" name="TotalCharges" type="rate:ChargesType"/>
|
||||
<xsd:element minOccurs="0" name="Weight" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="BillingWeight" type="rate:BillingWeightType"/>
|
||||
<xsd:element maxOccurs="unbounded" minOccurs="0" name="Accessorial" type="rate:AccessorialType"/>
|
||||
<xsd:element maxOccurs="unbounded" minOccurs="0" name="ItemizedCharges" type="rate:ChargesType"/>
|
||||
<xsd:element minOccurs="0" name="NegotiatedCharges" type="rate:NegotiatedChargesType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="AccessorialType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="Description" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="NegotiatedChargesType">
|
||||
<xsd:sequence>
|
||||
<xsd:element maxOccurs="unbounded" minOccurs="0" name="ItemizedCharges" type="rate:ChargesType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="RatedShipmentType">
|
||||
<xsd:sequence>
|
||||
<xsd:element maxOccurs="unbounded" minOccurs="0" name="Disclaimer" type="rate:DisclaimerType"/>
|
||||
<xsd:element name="Service" type="rate:CodeDescriptionType"/>
|
||||
<xsd:element minOccurs="0" name="RateChart" type="xsd:string"/>
|
||||
<xsd:element maxOccurs="unbounded" minOccurs="0" name="RatedShipmentAlert" type="rate:RatedShipmentInfoType"/>
|
||||
<xsd:element minOccurs="0" name="BillableWeightCalculationMethod" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="RatingMethod" type="xsd:string"/>
|
||||
<xsd:element name="BillingWeight" type="rate:BillingWeightType"/>
|
||||
<xsd:element name="TransportationCharges" type="rate:ChargesType"/>
|
||||
<xsd:element name="BaseServiceCharge" type="rate:ChargesType" minOccurs="0"/>
|
||||
<xsd:element maxOccurs="unbounded" minOccurs="0" name="ItemizedCharges" type="rate:ChargesType"/>
|
||||
<xsd:element minOccurs="0" name="FRSShipmentData" type="rate:FRSShipmentType"/>
|
||||
<xsd:element name="ServiceOptionsCharges" type="rate:ChargesType"/>
|
||||
<xsd:element maxOccurs="unbounded" minOccurs="0" name="TaxCharges" type="rate:TaxChargeType"/>
|
||||
<xsd:element name="TotalCharges" type="rate:ChargesType"/>
|
||||
<xsd:element minOccurs="0" name="TotalChargesWithTaxes" type="rate:ChargesType"/>
|
||||
<xsd:element minOccurs="0" name="NegotiatedRateCharges" type="rate:TotalChargeType"/>
|
||||
<xsd:element minOccurs="0" name="GuaranteedDelivery" type="rate:GuaranteedDeliveryType"/>
|
||||
<xsd:element maxOccurs="unbounded" name="RatedPackage" type="rate:RatedPackageType"/>
|
||||
<xsd:element name="TimeInTransit" type="rate:TimeInTransitResponseType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="TimeInTransitResponseType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PickupDate" type="xsd:string"/>
|
||||
<xsd:element name="DocumentsOnlyIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PackageBillType" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ServiceSummary" type="rate:ServiceSummaryType" maxOccurs="unbounded"/>
|
||||
<xsd:element name="AutoDutyCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Disclaimer" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ServiceSummaryType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Service" type="rate:CodeDescriptionType"/>
|
||||
<xsd:element name="GuaranteedIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Disclaimer" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="EstimatedArrival" type="rate:EstimatedArrivalType"/>
|
||||
<xsd:element name="SaturdayDelivery" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="SaturdayDeliveryDisclaimer" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="EstimatedArrivalType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Arrival" type="rate:PickupType"/>
|
||||
<xsd:element name="BusinessDaysInTransit" type="xsd:string"/>
|
||||
<xsd:element name="Pickup" type="rate:PickupType"/>
|
||||
<xsd:element name="DayOfWeek" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CustomerCenterCutoff" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="DelayCount" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="HolidayCount" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="RestDays" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TotalTransitDays" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="DisclaimerType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="TaxChargeType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Type" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="MonetaryValue" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="TotalChargeType">
|
||||
<xsd:sequence>
|
||||
<xsd:element maxOccurs="unbounded" minOccurs="0" name="ItemizedCharges" type="rate:ChargesType"/>
|
||||
<xsd:element maxOccurs="unbounded" minOccurs="0" name="TaxCharges" type="rate:TaxChargeType"/>
|
||||
<xsd:element name="TotalCharge" type="rate:ChargesType"/>
|
||||
<xsd:element minOccurs="0" name="TotalChargesWithTaxes" type="rate:ChargesType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="RatedShipmentInfoType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ChargesType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="Code" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="Description" type="xsd:string"/>
|
||||
<xsd:element name="CurrencyCode" type="xsd:string"/>
|
||||
<xsd:element name="MonetaryValue" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="SubType" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="TransportationChargesType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="GrossCharge" type="rate:ChargesType"/>
|
||||
<xsd:element name="DiscountAmount" type="rate:ChargesType"/>
|
||||
<xsd:element name="DiscountPercentage" type="xsd:string"/>
|
||||
<xsd:element name="NetCharge" type="rate:ChargesType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="FRSShipmentType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="TransportationCharges" type="rate:TransportationChargesType"/>
|
||||
<xsd:element minOccurs="0" name="FreightDensityRate" type="rate:FreightDensityRateType"/>
|
||||
<xsd:element maxOccurs="unbounded" minOccurs="0" name="HandlingUnits" type="rate:HandlingUnitsResponseType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="FreightDensityRateType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Density" type="xsd:string"/>
|
||||
<xsd:element name="TotalCubicFeet" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="HandlingUnitsResponseType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Quantity" type="xsd:string"/>
|
||||
<xsd:element name="Type" type="rate:CodeDescriptionType"/>
|
||||
<xsd:element name="Dimensions" type="rate:HandlingUnitsDimensionsType"/>
|
||||
<xsd:element minOccurs="0" name="AdjustedHeight" type="rate:AdjustedHeightType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="AddressType">
|
||||
<xsd:sequence>
|
||||
<xsd:element maxOccurs="3" minOccurs="0" name="AddressLine" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="City" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="StateProvinceCode" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="PostalCode" type="xsd:string"/>
|
||||
<xsd:element name="CountryCode" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipToAddressType">
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="rate:AddressType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="ResidentialAddressIndicator" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipAddressType">
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="rate:AddressType">
|
||||
<xsd:sequence>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CODType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CODFundsCode" type="xsd:string"/>
|
||||
<xsd:element name="CODAmount" type="rate:CODAmountType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CODAmountType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CurrencyCode" type="xsd:string"/>
|
||||
<xsd:element name="MonetaryValue" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="DeliveryConfirmationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="DCISType" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="DimensionsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="UnitOfMeasurement" type="rate:CodeDescriptionType"/>
|
||||
<xsd:element minOccurs="0" name="Length" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="Width" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="Height" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="InsuredValueType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CurrencyCode" type="xsd:string"/>
|
||||
<xsd:element name="MonetaryValue" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PackageType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="PackagingType" type="rate:CodeDescriptionType"/>
|
||||
<xsd:element minOccurs="0" name="Dimensions" type="rate:DimensionsType"/>
|
||||
<xsd:element name="DimWeight" type="rate:PackageWeightType" minOccurs="0"/>
|
||||
<xsd:element minOccurs="0" name="PackageWeight" type="rate:PackageWeightType"/>
|
||||
<xsd:element minOccurs="0" name="Commodity" type="rate:CommodityType"/>
|
||||
<xsd:element minOccurs="0" name="LargePackageIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="PackageServiceOptions" type="rate:PackageServiceOptionsType"/>
|
||||
<xsd:element minOccurs="0" name="AdditionalHandlingIndicator" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CommodityType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="FreightClass" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="NMFC" type="rate:NMFCCommodityType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="NMFCCommodityType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PrimeCode" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="SubCode" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PackageServiceOptionsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="DeliveryConfirmation" type="rate:DeliveryConfirmationType"/>
|
||||
<xsd:element minOccurs="0" name="AccessPointCOD" type="rate:PackageServiceOptionsAccessPointCODType"/>
|
||||
<xsd:element minOccurs="0" name="COD" type="rate:CODType"/>
|
||||
<xsd:element minOccurs="0" name="DeclaredValue" type="rate:InsuredValueType"/>
|
||||
<xsd:element minOccurs="0" name="ShipperDeclaredValue" type="rate:ShipperDeclaredValueType"/>
|
||||
<xsd:element minOccurs="0" name="ProactiveIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="Insurance" type="rate:InsuranceType"/>
|
||||
<xsd:element minOccurs="0" name="VerbalConfirmationIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="UPSPremiumCareIndicator" type="xsd:string"/>
|
||||
<xsd:element name="HazMat" type="rate:HazMatType" minOccurs="0"/>
|
||||
<xsd:element minOccurs="0" name="DryIce" type="rate:DryIceType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="HazMatType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PackageIdentifier" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="QValue" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="OverPackedIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="AllPackedInOneIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="HazMatChemicalRecord" type="rate:HazMatChemicalRecordType" maxOccurs="3"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="HazMatChemicalRecordType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ChemicalRecordIdentifier" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ClassDivisionNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="IDNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TransportationMode" type="xsd:string"/>
|
||||
<xsd:element name="RegulationSet" type="xsd:string"/>
|
||||
<xsd:element name="EmergencyPhone" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="EmergencyContact" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ReportableQuantity" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="SubRiskClass" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PackagingGroupType" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Quantity" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="UOM" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PackagingInstructionCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ProperShippingName" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TechnicalName" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="AdditionalDescription" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PackagingType" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="HazardLabelRequired" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PackagingTypeQuantity" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CommodityRegulatedLevelCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TransportCategory" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TunnelRestrictionCode" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PackageServiceOptionsAccessPointCODType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CurrencyCode" type="xsd:string"/>
|
||||
<xsd:element name="MonetaryValue" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="DryIceType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="RegulationSet" type="xsd:string"/>
|
||||
<xsd:element name="DryIceWeight" type="rate:DryIceWeightType"/>
|
||||
<xsd:element minOccurs="0" name="MedicalUseIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="AuditRequired" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="DryIceWeightType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="UnitOfMeasurement" type="rate:CodeDescriptionType"/>
|
||||
<xsd:element name="Weight" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipperDeclaredValueType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CurrencyCode" type="xsd:string"/>
|
||||
<xsd:element name="MonetaryValue" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="InsuranceType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="BasicFlexibleParcelIndicator" type="rate:InsuranceValueType"/>
|
||||
<xsd:element minOccurs="0" name="ExtendedFlexibleParcelIndicator" type="rate:InsuranceValueType"/>
|
||||
<xsd:element minOccurs="0" name="TimeInTransitFlexibleParcelIndicator" type="rate:InsuranceValueType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="InsuranceValueType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CurrencyCode" type="xsd:string"/>
|
||||
<xsd:element name="MonetaryValue" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PackageWeightType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="UnitOfMeasurement" type="rate:CodeDescriptionType"/>
|
||||
<xsd:element name="Weight" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="UOMCodeDescriptionType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="Code" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="Description" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CodeDescriptionType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="Description" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipmentRatingOptionsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="NegotiatedRatesIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="FRSShipmentIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="RateChartIndicator" type="xsd:string"/>
|
||||
<xsd:element name="UserLevelDiscountIndicator" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipFromType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="Name" type="xsd:string"/>
|
||||
<xsd:element name="Address" type="rate:ShipAddressType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipToType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="Name" type="xsd:string"/>
|
||||
<xsd:element name="Address" type="rate:ShipToAddressType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipmentType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="OriginRecordTransactionTimestamp" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Shipper" type="rate:ShipperType"/>
|
||||
<xsd:element name="ShipTo" type="rate:ShipToType"/>
|
||||
<xsd:element minOccurs="0" name="ShipFrom" type="rate:ShipFromType"/>
|
||||
<xsd:element minOccurs="0" name="AlternateDeliveryAddress" type="rate:AlternateDeliveryAddressType"/>
|
||||
<xsd:element maxOccurs="unbounded" minOccurs="0" name="ShipmentIndicationType" type="rate:IndicationType"/>
|
||||
<xsd:element name="PaymentDetails" type="rate:PaymentDetailsType" minOccurs="0"/>
|
||||
<xsd:element minOccurs="0" name="FRSPaymentInformation" type="rate:FRSPaymentInfoType"/>
|
||||
<xsd:element minOccurs="0" name="FreightShipmentInformation" type="rate:FreightShipmentInformationType"/>
|
||||
<xsd:element name="GoodsNotInFreeCirculationIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element minOccurs="0" name="Service" type="rate:CodeDescriptionType"/>
|
||||
<xsd:element minOccurs="0" name="NumOfPieces" type="xsd:string"/>
|
||||
<xsd:element name="ShipmentTotalWeight" type="rate:ShipmentWeightType" minOccurs="0"/>
|
||||
<xsd:element minOccurs="0" name="DocumentsOnlyIndicator" type="xsd:string"/>
|
||||
<xsd:element maxOccurs="unbounded" name="Package" type="rate:PackageType"/>
|
||||
<xsd:element minOccurs="0" name="ShipmentServiceOptions" type="rate:ShipmentServiceOptionsType"/>
|
||||
<xsd:element minOccurs="0" name="ShipmentRatingOptions" type="rate:ShipmentRatingOptionsType"/>
|
||||
<xsd:element minOccurs="0" name="InvoiceLineTotal" type="rate:InvoiceLineTotalType"/>
|
||||
<xsd:element minOccurs="0" name="RatingMethodRequestedIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="TaxInformationIndicator" type="xsd:string"/>
|
||||
<xsd:element name="PromotionalDiscountInformation" type="rate:PromotionalDiscountInformationType" minOccurs="0"/>
|
||||
<xsd:element name="DeliveryTimeInformation" type="rate:TimeInTransitRequestType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="TimeInTransitRequestType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PackageBillType" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Pickup" type="rate:PickupType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PickupType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Date" type="xsd:string"/>
|
||||
<xsd:element name="Time" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PromotionalDiscountInformationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PromoCode" type="xsd:string"/>
|
||||
<xsd:element name="PromoAliasCode" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipmentWeightType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="UnitOfMeasurement" type="rate:CodeDescriptionType"/>
|
||||
<xsd:element name="Weight" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PaymentDetailsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ShipmentCharge" type="rate:ShipmentChargeType" minOccurs="0" maxOccurs="2"/>
|
||||
<xsd:element name="SplitDutyVATIndicator" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipmentChargeType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Type" type="xsd:string"/>
|
||||
<xsd:element name="BillShipper" type="rate:BillShipperChargeType" minOccurs="0"/>
|
||||
<xsd:element name="BillReceiver" type="rate:BillReceiverChargeType" minOccurs="0"/>
|
||||
<xsd:element name="BillThirdParty" type="rate:BillThirdPartyChargeType" minOccurs="0"/>
|
||||
<xsd:element name="ConsigneeBilledIndicator" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="BillShipperChargeType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="AccountNumber" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="BillReceiverChargeType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="AccountNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Address" type="rate:BillReceiverAddressType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="BillThirdPartyChargeType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="AccountNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Address" type="rate:AddressType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="BillReceiverAddressType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PostalCode" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="AlternateDeliveryAddressType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="Name" type="xsd:string"/>
|
||||
<xsd:element name="Address" type="rate:ADRType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ADRType">
|
||||
<xsd:sequence>
|
||||
<xsd:element maxOccurs="3" minOccurs="0" name="AddressLine" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="City" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="StateProvinceCode" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="PostalCode" type="xsd:string"/>
|
||||
<xsd:element name="CountryCode" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="ResidentialAddressIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="POBoxIndicator" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="IndicationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="Description" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipmentServiceOptionsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="SaturdayPickupIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="SaturdayDeliveryIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="AccessPointCOD" type="rate:ShipmentServiceOptionsAccessPointCODType"/>
|
||||
<xsd:element minOccurs="0" name="DeliverToAddresseeOnlyIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="DirectDeliveryOnlyIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="COD" type="rate:CODType"/>
|
||||
<xsd:element minOccurs="0" name="DeliveryConfirmation" type="rate:DeliveryConfirmationType"/>
|
||||
<xsd:element minOccurs="0" name="ReturnOfDocumentIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="UPScarbonneutralIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="CertificateOfOriginIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="PickupOptions" type="rate:PickupOptionsType"/>
|
||||
<xsd:element minOccurs="0" name="DeliveryOptions" type="rate:DeliveryOptionsType"/>
|
||||
<xsd:element minOccurs="0" name="RestrictedArticles" type="rate:RestrictedArticlesType"/>
|
||||
<xsd:element minOccurs="0" name="ShipperExportDeclarationIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="CommercialInvoiceRemovalIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="ImportControl" type="rate:ImportControlType"/>
|
||||
<xsd:element minOccurs="0" name="ReturnService" type="rate:ReturnServiceType"/>
|
||||
<xsd:element minOccurs="0" name="SDLShipmentIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="EPRAIndicator" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipmentServiceOptionsAccessPointCODType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CurrencyCode" type="xsd:string"/>
|
||||
<xsd:element name="MonetaryValue" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ReturnServiceType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="Description" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ImportControlType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="Description" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="RestrictedArticlesType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="AlcoholicBeveragesIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="DiagnosticSpecimensIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="PerishablesIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="PlantsIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="SeedsIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="SpecialExceptionsIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="TobaccoIndicator" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PickupOptionsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="LiftGateAtPickupIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="HoldForPickupIndicator" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="DeliveryOptionsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="LiftGateAtDeliveryIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="DropOffAtUPSFacilityIndicator" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipperType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="Name" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="ShipperNumber" type="xsd:string"/>
|
||||
<xsd:element name="Address" type="rate:AddressType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="GuaranteedDeliveryType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="BusinessDaysInTransit" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="DeliveryByTime" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="FRSPaymentInfoType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Type" type="rate:CodeDescriptionType"/>
|
||||
<xsd:element minOccurs="0" name="AccountNumber" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="Address" type="rate:PayerAddressType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="FreightShipmentInformationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="FreightDensityInfo" type="rate:FreightDensityInfoType"/>
|
||||
<xsd:element minOccurs="0" name="DensityEligibleIndicator" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PayerAddressType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="PostalCode" type="xsd:string"/>
|
||||
<xsd:element name="CountryCode" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="FreightDensityInfoType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="AdjustedHeightIndicator" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" name="AdjustedHeight" type="rate:AdjustedHeightType"/>
|
||||
<xsd:element maxOccurs="unbounded" name="HandlingUnits" type="rate:HandlingUnitsType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="AdjustedHeightType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Value" type="xsd:string"/>
|
||||
<xsd:element name="UnitOfMeasurement" type="rate:CodeDescriptionType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="HandlingUnitsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Quantity" type="xsd:string"/>
|
||||
<xsd:element name="Type" type="rate:CodeDescriptionType"/>
|
||||
<xsd:element name="Dimensions" type="rate:HandlingUnitsDimensionsType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="HandlingUnitsDimensionsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="UnitOfMeasurement" type="rate:CodeDescriptionType"/>
|
||||
<xsd:element name="Length" type="xsd:string"/>
|
||||
<xsd:element name="Width" type="xsd:string"/>
|
||||
<xsd:element name="Height" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="InvoiceLineTotalType">
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="CurrencyCode" type="xsd:string"/>
|
||||
<xsd:element name="MonetaryValue" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:schema>
|
||||
123
fusion_shipping/api/ups/wsdl/Ship.wsdl
Normal file
123
fusion_shipping/api/ups/wsdl/Ship.wsdl
Normal file
@@ -0,0 +1,123 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- UPS Ship Service WSDL Release Date Dec 29, 2007 -->
|
||||
<!-- Copyright 2007-2008 United Parcel Service of America, Inc. All rights reserved. -->
|
||||
<wsdl:definitions name="Ship" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:error="http://www.ups.com/XMLSchema/XOLTWS/Error/v1.1" xmlns:upss="http://www.ups.com/XMLSchema/XOLTWS/UPSS/v1.0" xmlns:ship="http://www.ups.com/XMLSchema/XOLTWS/Ship/v1.0" xmlns:tns="http://www.ups.com/WSDL/XOLTWS/Ship/v1.0" targetNamespace="http://www.ups.com/WSDL/XOLTWS/Ship/v1.0">
|
||||
<wsdl:types>
|
||||
<xsd:schema>
|
||||
<!-- This schema defines the UPS Security header used for authorization purposes -->
|
||||
<xsd:import namespace="http://www.ups.com/XMLSchema/XOLTWS/UPSS/v1.0" schemaLocation="UPSSecurity.xsd"/>
|
||||
<!-- This schema defines the error detail data types returned within SOAPFaults to provide more specific information pertaining to the problem. -->
|
||||
<xsd:import namespace="http://www.ups.com/XMLSchema/XOLTWS/Error/v1.1" schemaLocation="Error1.1.xsd"/>
|
||||
<!-- This schema defines the Ship service data types -->
|
||||
<xsd:import namespace="http://www.ups.com/XMLSchema/XOLTWS/Ship/v1.0" schemaLocation="ShipWebServiceSchema.xsd"/>
|
||||
</xsd:schema>
|
||||
</wsdl:types>
|
||||
<!-- Ship request/response Message Calls -->
|
||||
<wsdl:message name="ShipmentRequestMessage">
|
||||
<wsdl:part name="Body" element="ship:ShipmentRequest"/>
|
||||
<wsdl:part name="UPSSecurity" element="upss:UPSSecurity"/>
|
||||
</wsdl:message>
|
||||
<wsdl:message name="ShipmentResponseMessage">
|
||||
<wsdl:part name="Body" element="ship:ShipmentResponse"/>
|
||||
</wsdl:message>
|
||||
<wsdl:message name="ShipmentErrorMessage">
|
||||
<wsdl:part name="ShipmentError" element="error:Errors"/>
|
||||
</wsdl:message>
|
||||
<wsdl:message name="ShipConfirmRequestMessage">
|
||||
<wsdl:part name="Body" element="ship:ShipConfirmRequest"/>
|
||||
<wsdl:part name="UPSSecurity" element="upss:UPSSecurity"/>
|
||||
</wsdl:message>
|
||||
<wsdl:message name="ShipConfirmResponseMessage">
|
||||
<wsdl:part name="Body" element="ship:ShipConfirmResponse"/>
|
||||
</wsdl:message>
|
||||
<wsdl:message name="ShipConfirmErrorMessage">
|
||||
<wsdl:part name="ShipConfirmError" element="error:Errors"/>
|
||||
</wsdl:message>
|
||||
<wsdl:message name="ShipAcceptRequestMessage">
|
||||
<wsdl:part name="Body" element="ship:ShipAcceptRequest"/>
|
||||
<wsdl:part name="UPSSecurity" element="upss:UPSSecurity"/>
|
||||
</wsdl:message>
|
||||
<wsdl:message name="ShipAcceptResponseMessage">
|
||||
<wsdl:part name="Body" element="ship:ShipAcceptResponse"/>
|
||||
</wsdl:message>
|
||||
<wsdl:message name="ShipAcceptErrorMessage">
|
||||
<wsdl:part name="ShipAcceptError" element="error:Errors"/>
|
||||
</wsdl:message>
|
||||
<!-- -->
|
||||
<!-- Ship Web Service port declaration -->
|
||||
<wsdl:portType name="ShipPortType">
|
||||
<wsdl:operation name="ProcessShipment">
|
||||
<wsdl:input name="ShipmentRequest" message="tns:ShipmentRequestMessage"/>
|
||||
<wsdl:output name="ShipmentResponse" message="tns:ShipmentResponseMessage"/>
|
||||
<wsdl:fault name="ShipmentError" message="tns:ShipmentErrorMessage"/>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="ProcessShipConfirm">
|
||||
<wsdl:input name="ShipConfirmRequest" message="tns:ShipConfirmRequestMessage"/>
|
||||
<wsdl:output name="ShipConfirmResponse" message="tns:ShipConfirmResponseMessage"/>
|
||||
<wsdl:fault name="ShipConfirmError" message="tns:ShipConfirmErrorMessage"/>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="ProcessShipAccept">
|
||||
<wsdl:input name="ShipAcceptRequest" message="tns:ShipAcceptRequestMessage"/>
|
||||
<wsdl:output name="ShipAcceptResponse" message="tns:ShipAcceptResponseMessage"/>
|
||||
<wsdl:fault name="ShipAcceptError" message="tns:ShipAcceptErrorMessage"/>
|
||||
</wsdl:operation>
|
||||
</wsdl:portType>
|
||||
<!-- Ship Web Service binding -->
|
||||
<wsdl:binding name="ShipBinding" type="tns:ShipPortType">
|
||||
<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
|
||||
<wsdl:operation name="ProcessShipment">
|
||||
<soap:operation soapAction="http://onlinetools.ups.com/webservices/ShipBinding/v1.0" style="document"/>
|
||||
<wsdl:input name="ShipmentRequest">
|
||||
<soap:body parts="Body" use="literal"/>
|
||||
<soap:header message="tns:ShipmentRequestMessage" part="UPSSecurity" use="literal">
|
||||
<soap:headerfault message="tns:ShipmentErrorMessage" part="ShipmentError" use="literal"/>
|
||||
</soap:header>
|
||||
</wsdl:input>
|
||||
<wsdl:output name="ShipmentResponse">
|
||||
<soap:body parts="Body" use="literal"/>
|
||||
</wsdl:output>
|
||||
<wsdl:fault name="ShipmentError">
|
||||
<soap:fault name="ShipmentError" use="literal"/>
|
||||
</wsdl:fault>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="ProcessShipConfirm">
|
||||
<soap:operation soapAction="http://onlinetools.ups.com/webservices/ShipBinding/v1.0" style="document"/>
|
||||
<wsdl:input name="ShipConfirmRequest">
|
||||
<soap:body parts="Body" use="literal"/>
|
||||
<soap:header message="tns:ShipConfirmRequestMessage" part="UPSSecurity" use="literal">
|
||||
<soap:headerfault message="tns:ShipConfirmErrorMessage" part="ShipConfirmError" use="literal"/>
|
||||
</soap:header>
|
||||
</wsdl:input>
|
||||
<wsdl:output name="ShipConfirmResponse">
|
||||
<soap:body parts="Body" use="literal"/>
|
||||
</wsdl:output>
|
||||
<wsdl:fault name="ShipConfirmError">
|
||||
<soap:fault name="ShipConfirmError" use="literal"/>
|
||||
</wsdl:fault>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="ProcessShipAccept">
|
||||
<soap:operation soapAction="http://onlinetools.ups.com/webservices/ShipBinding/v1.0" style="document"/>
|
||||
<wsdl:input name="ShipAcceptRequest">
|
||||
<soap:body parts="Body" use="literal"/>
|
||||
<soap:header message="tns:ShipAcceptRequestMessage" part="UPSSecurity" use="literal">
|
||||
<soap:headerfault message="tns:ShipAcceptErrorMessage" part="ShipAcceptError" use="literal"/>
|
||||
</soap:header>
|
||||
</wsdl:input>
|
||||
<wsdl:output name="ShipAcceptResponse">
|
||||
<soap:body parts="Body" use="literal"/>
|
||||
</wsdl:output>
|
||||
<wsdl:fault name="ShipAcceptError">
|
||||
<soap:fault name="ShipAcceptError" use="literal"/>
|
||||
</wsdl:fault>
|
||||
</wsdl:operation>
|
||||
</wsdl:binding>
|
||||
<!-- Ship Web Service-->
|
||||
<wsdl:service name="ShipService">
|
||||
<wsdl:port name="ShipPort" binding="tns:ShipBinding">
|
||||
<!-- Production URL -->
|
||||
<!-- <soap:address location="https://onlinetools.ups.com/webservices/Ship"/> -->
|
||||
<!-- CIE (Customer Integration Environment) URL -->
|
||||
<soap:address location="https://wwwcie.ups.com/webservices/Ship"/>
|
||||
</wsdl:port>
|
||||
</wsdl:service>
|
||||
</wsdl:definitions>
|
||||
865
fusion_shipping/api/ups/wsdl/ShipWebServiceSchema.xsd
Normal file
865
fusion_shipping/api/ups/wsdl/ShipWebServiceSchema.xsd
Normal file
@@ -0,0 +1,865 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<xsd:schema targetNamespace="http://www.ups.com/XMLSchema/XOLTWS/Ship/v1.0" xmlns:ups="http://www.ups.com/XMLSchema" xmlns:ship="http://www.ups.com/XMLSchema/XOLTWS/Ship/v1.0" xmlns:ifs="http://www.ups.com/XMLSchema/XOLTWS/IF/v1.0" xmlns:common="http://www.ups.com/XMLSchema/XOLTWS/Common/v1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="201707">
|
||||
<xsd:import namespace="http://www.ups.com/XMLSchema/XOLTWS/Common/v1.0" schemaLocation="common.xsd"/>
|
||||
<xsd:import namespace="http://www.ups.com/XMLSchema/XOLTWS/IF/v1.0" schemaLocation="IFWS.xsd"/>
|
||||
<xsd:element name="ShipmentRequest">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element ref="common:Request"/>
|
||||
<xsd:element name="Shipment" type="ship:ShipmentType"/>
|
||||
<xsd:element name="LabelSpecification" type="ship:LabelSpecificationType" minOccurs="0"/>
|
||||
<xsd:element name="ReceiptSpecification" type="ship:ReceiptSpecificationType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="ShipConfirmRequest">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element ref="common:Request"/>
|
||||
<xsd:element name="Shipment" type="ship:ShipmentType"/>
|
||||
<xsd:element name="LabelSpecification" type="ship:LabelSpecificationType" minOccurs="0"/>
|
||||
<xsd:element name="ReceiptSpecification" type="ship:ReceiptSpecificationType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="ShipAcceptRequest">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element ref="common:Request"/>
|
||||
<xsd:element name="ShipmentDigest" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="ShipmentResponse">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element ref="common:Response"/>
|
||||
<xsd:element name="ShipmentResults" type="ship:ShipmentResultsType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="ShipConfirmResponse">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element ref="common:Response"/>
|
||||
<xsd:element name="ShipmentResults" type="ship:ShipmentResultsType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="ShipAcceptResponse">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element ref="common:Response"/>
|
||||
<xsd:element name="ShipmentResults" type="ship:ShipmentResultsType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:complexType name="ShipmentType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ReturnService" type="ship:ReturnServiceType" minOccurs="0"/>
|
||||
<xsd:element name="DocumentsOnlyIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Shipper" type="ship:ShipperType"/>
|
||||
<xsd:element name="ShipTo" type="ship:ShipToType"/>
|
||||
<xsd:element name="AlternateDeliveryAddress" type="ship:AlternateDeliveryAddressType" minOccurs="0"/>
|
||||
<xsd:element name="ShipFrom" type="ship:ShipFromType" minOccurs="0"/>
|
||||
<xsd:element name="PaymentInformation" type="ship:PaymentInfoType" minOccurs="0"/>
|
||||
<xsd:element name="FRSPaymentInformation" type="ship:FRSPaymentInfoType" minOccurs="0"/>
|
||||
<xsd:element name="FreightShipmentInformation" type="ship:FreightShipmentInformationType" minOccurs="0"/>
|
||||
<xsd:element name="GoodsNotInFreeCirculationIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ShipmentRatingOptions" type="ship:RateInfoType" minOccurs="0"/>
|
||||
<xsd:element name="MovementReferenceNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ReferenceNumber" type="ship:ReferenceNumberType" minOccurs="0" maxOccurs="2"/>
|
||||
<xsd:element name="Service" type="ship:ServiceType"/>
|
||||
<xsd:element name="InvoiceLineTotal" type="ship:CurrencyMonetaryType" minOccurs="0"/>
|
||||
<xsd:element name="NumOfPiecesInShipment" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="USPSEndorsement" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="MILabelCN22Indicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="SubClassification" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CostCenter" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PackageID" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="IrregularIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ShipmentIndicationType" type="ship:IndicationType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="MIDualReturnShipmentKey" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="MIDualReturnShipmentIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="RatingMethodRequestedIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TaxInformationIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PromotionalDiscountInformation" type="ship:PromotionalDiscountInformationType" minOccurs="0"/>
|
||||
<xsd:element name="ShipmentServiceOptions" minOccurs="0">
|
||||
<xsd:complexType>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ship:ShipmentServiceOptionsType"/>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="Package" type="ship:PackageType" maxOccurs="unbounded"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PromotionalDiscountInformationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PromoCode" type="xsd:string"/>
|
||||
<xsd:element name="PromoAliasCode" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ReturnServiceType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipperType">
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ship:CompanyInfoType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ShipperNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="FaxNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="EMailAddress" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Address" type="ship:ShipAddressType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CompanyInfoType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Name" type="xsd:string"/>
|
||||
<xsd:element name="AttentionName" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CompanyDisplayableName" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TaxIdentificationNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TaxIDType" type="ship:TaxIDCodeDescType" minOccurs="0"/>
|
||||
<xsd:element name="Phone" type="ship:ShipPhoneType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipPhoneType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Number" type="xsd:string"/>
|
||||
<xsd:element name="Extension" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipAddressType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="AddressLine" type="xsd:string" maxOccurs="3"/>
|
||||
<xsd:element name="City" type="xsd:string"/>
|
||||
<xsd:element name="StateProvinceCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PostalCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CountryCode" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipToType">
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ship:CompanyInfoType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="FaxNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="EMailAddress" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Address" type="ship:ShipToAddressType"/>
|
||||
<xsd:element name="LocationID" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipToAddressType">
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ship:ShipAddressType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ResidentialAddressIndicator" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipFromType">
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ship:CompanyInfoType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="FaxNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Address" type="ship:ShipAddressType"/>
|
||||
<xsd:element name="EMailAddress" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PrepaidType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="BillShipper" type="ship:BillShipperType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="BillShipperType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="AccountNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CreditCard" type="ship:CreditCardType" minOccurs="0"/>
|
||||
<xsd:element name="AlternatePaymentMethod" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CreditCardType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Type" type="xsd:string"/>
|
||||
<xsd:element name="Number" type="xsd:string"/>
|
||||
<xsd:element name="ExpirationDate" type="xsd:string"/>
|
||||
<xsd:element name="SecurityCode" type="xsd:string"/>
|
||||
<xsd:element name="Address" type="ship:CreditCardAddressType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CreditCardAddressType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="AddressLine" type="xsd:string" maxOccurs="3"/>
|
||||
<xsd:element name="City" type="xsd:string"/>
|
||||
<xsd:element name="StateProvinceCode" type="xsd:string"/>
|
||||
<xsd:element name="PostalCode" type="xsd:string"/>
|
||||
<xsd:element name="CountryCode" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="BillThirdPartyChargeType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="AccountNumber" type="xsd:string"/>
|
||||
<xsd:element name="Address" type="ship:AccountAddressType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="AccountAddressType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PostalCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CountryCode" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="FreightCollectType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="BillReceiver" type="ship:BillReceiverType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="BillReceiverType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="AccountNumber" type="xsd:string"/>
|
||||
<xsd:element name="Address" type="ship:BillReceiverAddressType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="BillReceiverAddressType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PostalCode" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PaymentInfoType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ShipmentCharge" type="ship:ShipmentChargeType" maxOccurs="2"/>
|
||||
<xsd:element name="SplitDutyVATIndicator" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipmentChargeType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Type" type="xsd:string"/>
|
||||
<xsd:element name="BillShipper" type="ship:BillShipperType" minOccurs="0"/>
|
||||
<xsd:element name="BillReceiver" type="ship:BillReceiverType" minOccurs="0"/>
|
||||
<xsd:element name="BillThirdParty" type="ship:BillThirdPartyChargeType" minOccurs="0"/>
|
||||
<xsd:element name="ConsigneeBilledIndicator" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="FRSPaymentInfoType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Type" type="ship:PaymentType"/>
|
||||
<xsd:element name="AccountNumber" type="xsd:string"/>
|
||||
<xsd:element name="Address" type="ship:AccountAddressType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PaymentType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="RateInfoType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="NegotiatedRatesIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="FRSShipmentIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="RateChartIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TPFCNegotiatedRatesIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="UserLevelDiscountIndicator" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ReferenceNumberType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="BarCodeIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Code" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Value" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ServiceType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CurrencyMonetaryType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CurrencyCode" type="xsd:string"/>
|
||||
<xsd:element name="MonetaryValue" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipmentServiceOptionsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="SaturdayDeliveryIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="SaturdayPickupIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="COD" type="ship:CODType" minOccurs="0"/>
|
||||
<xsd:element name="AccessPointCOD" type="ship:ShipmentServiceOptionsAccessPointCODType" minOccurs="0"/>
|
||||
<xsd:element name="DeliverToAddresseeOnlyIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="DirectDeliveryOnlyIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Notification" type="ship:NotificationType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="LabelDelivery" type="ship:LabelDeliveryType" minOccurs="0"/>
|
||||
<xsd:element name="InternationalForms" type="ifs:InternationalFormType" minOccurs="0"/>
|
||||
<xsd:element name="DeliveryConfirmation" type="ship:DeliveryConfirmationType" minOccurs="0"/>
|
||||
<xsd:element name="ReturnOfDocumentIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ImportControlIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="LabelMethod" type="ship:LabelMethodType" minOccurs="0"/>
|
||||
<xsd:element name="CommercialInvoiceRemovalIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="UPScarbonneutralIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PreAlertNotification" type="ship:PreAlertNotificationType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="ExchangeForwardIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="HoldForPickupIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="DropoffAtUPSFacilityIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="LiftGateForPickUpIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="LiftGateForDeliveryIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="SDLShipmentIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="EPRAReleaseCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="RestrictedArticles" type="ship:RestrictedArticlesType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="RestrictedArticlesType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="DiagnosticSpecimensIndicator" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PreAlertNotificationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="EMailMessage" type="ship:PreAlertEMailMessageType" minOccurs="0"/>
|
||||
<xsd:element name="VoiceMessage" type="ship:PreAlertVoiceMessageType" minOccurs="0"/>
|
||||
<xsd:element name="TextMessage" type="ship:PreAlertTextMessageType" minOccurs="0"/>
|
||||
<xsd:element name="Locale" type="ship:LocaleType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PreAlertEMailMessageType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="EMailAddress" type="xsd:string"/>
|
||||
<xsd:element name="UndeliverableEMailAddress" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="LocaleType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Language" type="xsd:string"/>
|
||||
<xsd:element name="Dialect" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PreAlertVoiceMessageType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PhoneNumber" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PreAlertTextMessageType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PhoneNumber" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ContactInfoType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Name" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Phone" type="ship:ShipPhoneType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CODType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CODFundsCode" type="xsd:string"/>
|
||||
<xsd:element name="CODAmount" type="ship:CurrencyMonetaryType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipmentServiceOptionsAccessPointCODType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CurrencyCode" type="xsd:string"/>
|
||||
<xsd:element name="MonetaryValue" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="NotificationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="NotificationCode" type="xsd:string"/>
|
||||
<xsd:element name="EMail" type="ship:EmailDetailsType"/>
|
||||
<xsd:element name="VoiceMessage" type="ship:ShipmentServiceOptionsNotificationVoiceMessageType" minOccurs="0"/>
|
||||
<xsd:element name="TextMessage" type="ship:ShipmentServiceOptionsNotificationTextMessageType" minOccurs="0"/>
|
||||
<xsd:element name="Locale" type="ship:LocaleType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="LabelDeliveryType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="EMail" type="ship:EmailDetailsType" minOccurs="0"/>
|
||||
<xsd:element name="LabelLinksIndicator" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="EmailDetailsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="EMailAddress" type="xsd:string" maxOccurs="unbounded"/>
|
||||
<xsd:element name="UndeliverableEMailAddress" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="FromEMailAddress" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="FromName" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Memo" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Subject" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="SubjectCode" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PackageType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Packaging" type="ship:PackagingType" minOccurs="0"/>
|
||||
<xsd:element name="Dimensions" type="ship:DimensionsType" minOccurs="0"/>
|
||||
<xsd:element name="DimWeight" type="ship:PackageWeightType" minOccurs="0"/>
|
||||
<xsd:element name="PackageWeight" type="ship:PackageWeightType" minOccurs="0"/>
|
||||
<xsd:element name="LargePackageIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ReferenceNumber" type="ship:ReferenceNumberType" minOccurs="0" maxOccurs="2"/>
|
||||
<xsd:element name="AdditionalHandlingIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PackageServiceOptions" type="ship:PackageServiceOptionsType" minOccurs="0"/>
|
||||
<xsd:element name="Commodity" type="ship:CommodityType" minOccurs="0"/>
|
||||
<xsd:element name="HazMatPackageInformation" type="ship:HazMatPackageInformationType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PackagingType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="DimensionsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="UnitOfMeasurement" type="ship:ShipUnitOfMeasurementType"/>
|
||||
<xsd:element name="Length" type="xsd:string"/>
|
||||
<xsd:element name="Width" type="xsd:string"/>
|
||||
<xsd:element name="Height" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipUnitOfMeasurementType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PackageWeightType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="UnitOfMeasurement" type="ship:ShipUnitOfMeasurementType"/>
|
||||
<xsd:element name="Weight" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PackageServiceOptionsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="DeliveryConfirmation" type="ship:DeliveryConfirmationType" minOccurs="0"/>
|
||||
<xsd:element name="DeclaredValue" type="ship:PackageDeclaredValueType" minOccurs="0"/>
|
||||
<xsd:element name="COD" type="ship:PSOCODType" minOccurs="0"/>
|
||||
<xsd:element name="AccessPointCOD" type="ship:PackageServiceOptionsAccessPointCODType" minOccurs="0"/>
|
||||
<xsd:element name="VerbalConfirmation" type="ship:VerbalConfirmationType" minOccurs="0"/>
|
||||
<xsd:element name="ShipperReleaseIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Notification" type="ship:PSONotificationType" minOccurs="0"/>
|
||||
<xsd:element name="HazMat" type="ship:HazMatType" minOccurs="0" maxOccurs="3"/>
|
||||
<xsd:element name="DryIce" type="ship:DryIceType" minOccurs="0"/>
|
||||
<xsd:element name="UPSPremiumCareIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ProactiveIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PackageIdentifier" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ClinicalTrialsID" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PackageDeclaredValueType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Type" type="ship:DeclaredValueType" minOccurs="0"/>
|
||||
<xsd:element name="CurrencyCode" type="xsd:string"/>
|
||||
<xsd:element name="MonetaryValue" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="DeclaredValueType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="DeliveryConfirmationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="DCISType" type="xsd:string"/>
|
||||
<xsd:element name="DCISNumber" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="LabelMethodType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="VerbalConfirmationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ContactInfo" type="ship:ContactInfoType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PSOCODType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CODFundsCode" type="xsd:string"/>
|
||||
<xsd:element name="CODAmount" type="ship:CurrencyMonetaryType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PackageServiceOptionsAccessPointCODType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CurrencyCode" type="xsd:string"/>
|
||||
<xsd:element name="MonetaryValue" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PSONotificationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="NotificationCode" type="xsd:string"/>
|
||||
<xsd:element name="EMail" type="ship:EmailDetailsType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="LabelSpecificationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="LabelImageFormat" type="ship:LabelImageFormatType"/>
|
||||
<xsd:element name="HTTPUserAgent" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="LabelStockSize" type="ship:LabelStockSizeType" minOccurs="0"/>
|
||||
<xsd:element name="Instruction" type="ship:InstructionCodeDescriptionType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="CharacterSet" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="InstructionCodeDescriptionType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="LabelImageFormatType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="LabelStockSizeType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Height" type="xsd:string"/>
|
||||
<xsd:element name="Width" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CommodityType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="FreightClass" type="xsd:string"/>
|
||||
<xsd:element name="NMFC" type="ship:NMFCType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="NMFCType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PrimeCode" type="xsd:string"/>
|
||||
<xsd:element name="SubCode" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipmentResultsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Disclaimer" type="ship:DisclaimerType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="ShipmentCharges" type="ship:ShipmentChargesType" minOccurs="0"/>
|
||||
<xsd:element name="NegotiatedRateCharges" type="ship:NegotiatedRateChargesType" minOccurs="0"/>
|
||||
<xsd:element name="FRSShipmentData" type="ship:FRSShipmentDataType" minOccurs="0"/>
|
||||
<xsd:element name="RatingMethod" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="BillableWeightCalculationMethod" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="BillingWeight" type="ship:BillingWeightType"/>
|
||||
<xsd:element name="ShipmentIdentificationNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="MIDualReturnShipmentKey" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ShipmentDigest" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PackageResults" type="ship:PackageResultsType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="ControlLogReceipt" type="ship:ImageType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="Form" type="ship:FormType" minOccurs="0"/>
|
||||
<xsd:element name="CODTurnInPage" type="ship:SCReportType" minOccurs="0"/>
|
||||
<xsd:element name="HighValueReport" type="ship:HighValueReportType" minOccurs="0"/>
|
||||
<xsd:element name="LabelURL" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="LocalLanguageLabelURL" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ReceiptURL" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="LocalLanguageReceiptURL" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="DisclaimerType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipmentChargesType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="RateChart" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="BaseServiceCharge" type="ship:ShipChargeType" minOccurs="0"/>
|
||||
<xsd:element name="TransportationCharges" type="ship:ShipChargeType"/>
|
||||
<xsd:element name="ItemizedCharges" type="ship:ShipChargeType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="ServiceOptionsCharges" type="ship:ShipChargeType"/>
|
||||
<xsd:element name="TaxCharges" type="ship:TaxChargeType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="TotalCharges" type="ship:ShipChargeType"/>
|
||||
<xsd:element name="TotalChargesWithTaxes" type="ship:ShipChargeType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="NegotiatedRateChargesType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ItemizedCharges" type="ship:ShipChargeType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="TaxCharges" type="ship:TaxChargeType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="TotalCharge" type="ship:ShipChargeType" minOccurs="0"/>
|
||||
<xsd:element name="TotalChargesWithTaxes" type="ship:ShipChargeType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipChargeType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CurrencyCode" type="xsd:string"/>
|
||||
<xsd:element name="MonetaryValue" type="xsd:string"/>
|
||||
<xsd:element name="SubType" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="TaxChargeType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Type" type="xsd:string"/>
|
||||
<xsd:element name="MonetaryValue" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="FRSShipmentDataType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="TransportationCharges" type="ship:TransportationChargeType"/>
|
||||
<xsd:element name="FreightDensityRate" type="ship:FreightDensityRateType" minOccurs="0"/>
|
||||
<xsd:element name="HandlingUnits" type="ship:HandlingUnitsResponseType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="TransportationChargeType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="GrossCharge" type="ship:ShipChargeType"/>
|
||||
<xsd:element name="DiscountAmount" type="ship:ShipChargeType"/>
|
||||
<xsd:element name="DiscountPercentage" type="xsd:string"/>
|
||||
<xsd:element name="NetCharge" type="ship:ShipChargeType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="BillingWeightType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="UnitOfMeasurement" type="ship:BillingUnitOfMeasurementType"/>
|
||||
<xsd:element name="Weight" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="BillingUnitOfMeasurementType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="PackageResultsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="TrackingNumber" type="xsd:string"/>
|
||||
<xsd:element name="BaseServiceCharge" type="ship:ShipChargeType" minOccurs="0"/>
|
||||
<xsd:element name="ServiceOptionsCharges" type="ship:ShipChargeType" minOccurs="0"/>
|
||||
<xsd:element name="ShippingLabel" type="ship:LabelType" minOccurs="0"/>
|
||||
<xsd:element name="ShippingReceipt" type="ship:ReceiptType" minOccurs="0"/>
|
||||
<xsd:element name="USPSPICNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CN22Number" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Accessorial" type="ship:AccessorialType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="Form" type="ship:FormType" minOccurs="0"/>
|
||||
<xsd:element name="ItemizedCharges" type="ship:ShipChargeType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="NegotiatedCharges" type="ship:NegotiatedChargesType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="AccessorialType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="LabelType">
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ship:ImageType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="InternationalSignatureGraphicImage" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="HTMLImage" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PDF417" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ReceiptType">
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ship:ImageType"/>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ImageType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ImageFormat" type="ship:ImageFormatType"/>
|
||||
<xsd:element name="GraphicImage" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="FormType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string"/>
|
||||
<xsd:element name="Image" type="ship:FormImageType" minOccurs="0"/>
|
||||
<xsd:element name="FormGroupId" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="FormGroupIdName" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="FormImageType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ImageFormat" type="ship:ImageFormatType" minOccurs="0"/>
|
||||
<xsd:element name="GraphicImage" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ImageFormatType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="SCReportType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Image" type="ship:ImageType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="HighValueReportType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Image" type="ship:ImageType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="HazMatPackageInformationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="AllPackedInOneIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="OverPackedIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="QValue" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="HazMatType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PackagingTypeQuantity" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="RecordIdentifier1" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="RecordIdentifier2" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="RecordIdentifier3" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="SubRiskClass" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="aDRItemNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="aDRPackingGroupLetter" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TechnicalName" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="HazardLabelRequired" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ClassDivisionNumber" type="xsd:string"/>
|
||||
<xsd:element name="ReferenceNumber" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Quantity" type="xsd:string"/>
|
||||
<xsd:element name="UOM" type="xsd:string"/>
|
||||
<xsd:element name="PackagingType" type="xsd:string"/>
|
||||
<xsd:element name="IDNumber" type="xsd:string"/>
|
||||
<xsd:element name="ProperShippingName" type="xsd:string"/>
|
||||
<xsd:element name="AdditionalDescription" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PackagingGroupType" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PackagingInstructionCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="EmergencyPhone" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="EmergencyContact" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ReportableQuantity" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="RegulationSet" type="xsd:string"/>
|
||||
<xsd:element name="TransportationMode" type="xsd:string"/>
|
||||
<xsd:element name="CommodityRegulatedLevelCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TransportCategory" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TunnelRestrictionCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="ChemicalRecordIdentifier" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="DryIceType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="RegulationSet" type="xsd:string"/>
|
||||
<xsd:element name="DryIceWeight" type="ship:DryIceWeightType"/>
|
||||
<xsd:element name="MedicalUseIndicator" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="DryIceWeightType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="UnitOfMeasurement" type="ship:ShipUnitOfMeasurementType"/>
|
||||
<xsd:element name="Weight" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ReceiptSpecificationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ImageFormat" type="ship:ReceiptImageFormatType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ReceiptImageFormatType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="TaxIDCodeDescType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="IndicationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="AlternateDeliveryAddressType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Name" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="AttentionName" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="UPSAccessPointID" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Address" type="ship:ADLAddressType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipmentServiceOptionsNotificationVoiceMessageType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PhoneNumber" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ShipmentServiceOptionsNotificationTextMessageType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="PhoneNumber" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ADLAddressType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="AddressLine" type="xsd:string" maxOccurs="3"/>
|
||||
<xsd:element name="City" type="xsd:string"/>
|
||||
<xsd:element name="StateProvinceCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="PostalCode" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="CountryCode" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="FreightShipmentInformationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="FreightDensityInfo" type="ship:FreightDensityInfoType" minOccurs="0"/>
|
||||
<xsd:element name="DensityEligibleIndicator" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="HandlingUnitsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Quantity" type="xsd:string"/>
|
||||
<xsd:element name="Type" type="ship:ShipUnitOfMeasurementType"/>
|
||||
<xsd:element name="Dimensions" type="ship:HandlingUnitsDimensionsType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="HandlingUnitsResponseType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Quantity" type="xsd:string"/>
|
||||
<xsd:element name="Type" type="ship:ShipUnitOfMeasurementType"/>
|
||||
<xsd:element name="Dimensions" type="ship:HandlingUnitsDimensionsType"/>
|
||||
<xsd:element name="AdjustedHeight" type="ship:AdjustedHeightType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="HandlingUnitsDimensionsType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="UnitOfMeasurement" type="ship:ShipUnitOfMeasurementType"/>
|
||||
<xsd:element name="Length" type="xsd:string"/>
|
||||
<xsd:element name="Width" type="xsd:string"/>
|
||||
<xsd:element name="Height" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="FreightDensityRateType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Density" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TotalCubicFeet" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="FreightDensityInfoType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="AdjustedHeightIndicator" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="AdjustedHeight" type="ship:AdjustedHeightType" minOccurs="0"/>
|
||||
<xsd:element name="HandlingUnits" type="ship:HandlingUnitsType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="AdjustedHeightType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Value" type="xsd:string"/>
|
||||
<xsd:element name="UnitOfMeasurement" type="ship:ShipUnitOfMeasurementType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="NegotiatedChargesType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ItemizedCharges" type="ship:ShipChargeType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:schema>
|
||||
23
fusion_shipping/api/ups/wsdl/UPSSecurity.xsd
Normal file
23
fusion_shipping/api/ups/wsdl/UPSSecurity.xsd
Normal file
@@ -0,0 +1,23 @@
|
||||
<xsd:schema targetNamespace="http://www.ups.com/XMLSchema/XOLTWS/UPSS/v1.0" xmlns:upss="http://www.ups.com/XMLSchema/XOLTWS/UPSS/v1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
|
||||
<xsd:element name="UPSSecurity">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="UsernameToken">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Username" type="xsd:string"/>
|
||||
<xsd:element name="Password" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="ServiceAccessToken">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="AccessLicenseNumber" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
58
fusion_shipping/api/ups/wsdl/Void.wsdl
Normal file
58
fusion_shipping/api/ups/wsdl/Void.wsdl
Normal file
@@ -0,0 +1,58 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- UPS Void Shipment Service WSDL Release Date Mar 11, 2008 -->
|
||||
<!-- Copyright 2007-2008 United Parcel Service of America, Inc. All rights reserved. -->
|
||||
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:error="http://www.ups.com/XMLSchema/XOLTWS/Error/v1.1" xmlns:upss="http://www.ups.com/XMLSchema/XOLTWS/UPSS/v1.0" xmlns:common="http://www.ups.com/XMLSchema/XOLTWS/Common/v1.0" xmlns:void="http://www.ups.com/XMLSchema/XOLTWS/Void/v1.1" xmlns:tns="http://www.ups.com/WSDL/XOLTWS/Void/v1.1" targetNamespace="http://www.ups.com/WSDL/XOLTWS/Void/v1.1">
|
||||
<wsdl:types>
|
||||
<xsd:schema>
|
||||
<!-- This schema defines the UPS Security header used for authorization purposes -->
|
||||
<xsd:import namespace="http://www.ups.com/XMLSchema/XOLTWS/UPSS/v1.0" schemaLocation="UPSSecurity.xsd"/>
|
||||
<!-- This schema defines the error detail data types returned within SOAPFaults to provide more specific information pertaining to the problem. -->
|
||||
<xsd:import namespace="http://www.ups.com/XMLSchema/XOLTWS/Error/v1.1" schemaLocation="Error1.1.xsd"/>
|
||||
<!-- This schema defines the Void Shipment service data types -->
|
||||
<xsd:import namespace="http://www.ups.com/XMLSchema/XOLTWS/Void/v1.1" schemaLocation="VoidWebServiceSchema.xsd"/>
|
||||
</xsd:schema>
|
||||
</wsdl:types>
|
||||
<wsdl:message name="VoidRequestMessage">
|
||||
<wsdl:part name="Body" element="void:VoidShipmentRequest"/>
|
||||
<wsdl:part name="UPSSecurity" element="upss:UPSSecurity"/>
|
||||
</wsdl:message>
|
||||
<wsdl:message name="VoidResponseMessage">
|
||||
<wsdl:part name="Body" element="void:VoidShipmentResponse"/>
|
||||
</wsdl:message>
|
||||
<wsdl:message name="VoidErrorMessage">
|
||||
<wsdl:part name="VoidError" element="error:Errors"/>
|
||||
</wsdl:message>
|
||||
<wsdl:portType name="VoidPortType">
|
||||
<wsdl:operation name="ProcessVoid">
|
||||
<wsdl:input name="VoidShipmentRequest" message="tns:VoidRequestMessage"/>
|
||||
<wsdl:output name="VoidShipmentResponse" message="tns:VoidResponseMessage"/>
|
||||
<wsdl:fault name="VoidError" message="tns:VoidErrorMessage"/>
|
||||
</wsdl:operation>
|
||||
</wsdl:portType>
|
||||
<wsdl:binding name="VoidBinding" type="tns:VoidPortType">
|
||||
<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
|
||||
<wsdl:operation name="ProcessVoid">
|
||||
<soap:operation soapAction="http://onlinetools.ups.com/webservices/VoidBinding/v1.1" style="document"/>
|
||||
<wsdl:input name="VoidShipmentRequest">
|
||||
<soap:body parts="Body" use="literal"/>
|
||||
<soap:header message="tns:VoidRequestMessage" part="UPSSecurity" use="literal">
|
||||
<soap:headerfault message="tns:VoidErrorMessage" part="VoidError" use="literal"/>
|
||||
</soap:header>
|
||||
</wsdl:input>
|
||||
<wsdl:output name="VoidShipmentResponse">
|
||||
<soap:body parts="Body" use="literal"/>
|
||||
</wsdl:output>
|
||||
<wsdl:fault name="VoidError">
|
||||
<soap:fault name="VoidError" use="literal"/>
|
||||
</wsdl:fault>
|
||||
</wsdl:operation>
|
||||
</wsdl:binding>
|
||||
<wsdl:service name="VoidService">
|
||||
<wsdl:port name="VoidPort" binding="tns:VoidBinding">
|
||||
<!-- Production URL -->
|
||||
<!-- <soap:address location="https://onlinetools.ups.com/webservices/Void"/> -->
|
||||
<!-- CIE (Customer Integration Environment) URL -->
|
||||
<soap:address location="https://wwwcie.ups.com/webservices/Void"/>
|
||||
</wsdl:port>
|
||||
</wsdl:service>
|
||||
</wsdl:definitions>
|
||||
45
fusion_shipping/api/ups/wsdl/VoidWebServiceSchema.xsd
Normal file
45
fusion_shipping/api/ups/wsdl/VoidWebServiceSchema.xsd
Normal file
@@ -0,0 +1,45 @@
|
||||
<xsd:schema targetNamespace="http://www.ups.com/XMLSchema/XOLTWS/Void/v1.1" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:void="http://www.ups.com/XMLSchema/XOLTWS/Void/v1.1" xmlns:common="http://www.ups.com/XMLSchema/XOLTWS/Common/v1.0" elementFormDefault="qualified" version="201601">
|
||||
<xsd:import namespace="http://www.ups.com/XMLSchema/XOLTWS/Common/v1.0" schemaLocation="common.xsd"/>
|
||||
<xsd:element name="VoidShipmentRequest">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element ref="common:Request"/>
|
||||
<xsd:element name="VoidShipment">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ShipmentIdentificationNumber" type="xsd:string"/>
|
||||
<xsd:element name="TrackingNumber" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="VoidShipmentResponse">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element ref="common:Response"/>
|
||||
<xsd:element name="SummaryResult">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Status" type="void:CodeDescriptionType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="PackageLevelResult" type="void:PackageLevelResult" minOccurs="0" maxOccurs="unbounded"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:complexType name="PackageLevelResult">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="TrackingNumber" type="xsd:string"/>
|
||||
<xsd:element name="Status" type="void:CodeDescriptionType"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CodeDescriptionType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:schema>
|
||||
65
fusion_shipping/api/ups/wsdl/common.xsd
Normal file
65
fusion_shipping/api/ups/wsdl/common.xsd
Normal file
@@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xsd:schema targetNamespace="http://www.ups.com/XMLSchema/XOLTWS/Common/v1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ups="http://www.ups.com/XMLSchema" xmlns:common="http://www.ups.com/XMLSchema/XOLTWS/Common/v1.0" elementFormDefault="qualified" version="201707">
|
||||
<xsd:element name="Request" type="common:RequestType"/>
|
||||
<xsd:element name="Response" type="common:ResponseType"/>
|
||||
<xsd:element name="ClientInformation" type="common:ClientInformationType"/>
|
||||
<xsd:complexType name="ClientInformationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Property" minOccurs="0" maxOccurs="unbounded">
|
||||
<xsd:complexType>
|
||||
<xsd:simpleContent>
|
||||
<xsd:extension base="xsd:string">
|
||||
<xsd:attribute name="Key" type="xsd:string" use="required"/>
|
||||
</xsd:extension>
|
||||
</xsd:simpleContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="RequestType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="RequestOption" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="SubVersion" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TransactionReference" type="common:TransactionReferenceType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="TransactionReferenceType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="CustomerContext" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="TransactionIdentifier" type="xsd:string" minOccurs="0" ups:usage="notused"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ResponseType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ResponseStatus" type="common:CodeDescriptionType"/>
|
||||
<xsd:element name="Alert" type="common:CodeDescriptionType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="AlertDetail" type="common:DetailType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="TransactionReference" type="common:TransactionReferenceType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CodeDescriptionType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="DetailType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Description" type="xsd:string"/>
|
||||
<xsd:element name="ElementLevelInformation" type="common:ElementLevelInformationType" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ElementLevelInformationType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Level" type="xsd:string"/>
|
||||
<xsd:element name="ElementIdentifier" type="common:ElementIdentifierType" minOccurs="0" maxOccurs="unbounded"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ElementIdentifierType">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Code" type="xsd:string"/>
|
||||
<xsd:element name="Value" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:schema>
|
||||
Reference in New Issue
Block a user