Last active
September 30, 2016 02:52
-
-
Save MaxMorais/55458cdebce54d36e568a169f6ee95a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
import string | |
DEFAULT_SEPARATOR = '/' | |
def is_loc_valid(loc, separator=DEFAULT_SEPARATOR): | |
if loc == separator: | |
return True | |
array = loc.split(separator)[int(loc.startswith(separator)):] | |
if not array: | |
return False | |
for item in array: | |
if len(item) == 0: | |
return False | |
return True | |
def is_sub_loc(parent, child, separator=DEFAULT_SEPARATOR): | |
return child.startswith(parent) and child[len(parent)]==separator | |
def get_obj_at_loc(obj, loc, separator=DEFAULT_SEPARATOR): | |
if loc == separator: | |
return obj | |
array = loc.split(separator)[int(loc.startswith(separator)):] | |
p = array.pop() | |
nav = obj | |
for item in array: | |
if item in nav: | |
nav = nav[item] | |
else: | |
nav = None | |
break | |
return nav[p] if nav and p else None | |
def set_obj_at_loc(obj, loc, new_obj, separator=DEFAULT_SEPARATOR): | |
if loc == separator: | |
return obj | |
array = loc.split(separator)[int(loc.startswith(separator)):] | |
p = array.pop() | |
nav = obj | |
for item in array: | |
if item in nav: | |
nav = nav[item] | |
else: | |
nav = None | |
break | |
if nav and p: | |
nav[p] = new_obj | |
return obj | |
def delete_abj_at_loc(obj, loc, separator=DEFAULT_SEPARATOR): | |
if loc == separator: | |
return False | |
array = loc.split(separator)[int(loc.startswith(separator)):] | |
p = array.pop() | |
nav = obj | |
for item in array: | |
if item in nav: | |
nav = nav[item] | |
else: | |
nav = None | |
break | |
if nav and p and p in nav: | |
del nav[p] | |
return True | |
return False | |
def opAdd(obj, loc, new_obj, separator=DEFAULT_SEPARATOR): | |
if not is_loc_valid(loc, separator=separator): | |
return obj | |
return set_obj_at_loc(obj, loc, new_obj, separator) | |
def opDel(obj, loc, separator=DEFAULT_SEPARATOR): | |
if not is_loc_valid(loc, separator=separator): | |
return obj | |
delete_abj_at_loc(obj, loc, separator=separator) | |
return obj | |
def opCopy(obj, source, dest, separator=DEFAULT_SEPARATOR): | |
if not all(map(lambda x, s=separator: is_loc_valid(x, separator=s), [source, dest])): | |
return obj | |
if source == dest: | |
return obj | |
if is_sub_loc(source, dest): | |
return obj | |
val = get_obj_at_loc(obj, source, separator=separator) | |
if val: | |
if dest == separator: | |
return val | |
obj = set_obj_at_loc(obj, dest, val, separator=separator) | |
return obj | |
def opMove(obj, source, dest, separator=DEFAULT_SEPARATOR): | |
if not all(map(lambda x, s=separator: is_loc_valid(x, separator=s), [source, dest])): | |
return obj | |
if source == dest: | |
return obj | |
if is_sub_loc(source, dest): | |
return obj | |
val = get_obj_at_loc(obj, source, separator=separator) | |
if val: | |
if source == separator: | |
obj = set_obj_at_loc({}, dest, val, separator=separator) | |
return obj | |
elif dest == separator: | |
if isinstance(val, (dict, list, tuple, set)): | |
return val | |
return obj | |
delete_abj_at_loc(obj, source, separator=separator) | |
obj = set_obj_at_loc(obj, dest, val) | |
return obj | |
def opToString(obj, loc, separator=DEFAULT_SEPARATOR): | |
if not is_loc_valid(loc, separator=separator): | |
return obj | |
val = get_obj_at_loc(obj, loc, separator=separator) | |
if val: | |
val = str(val) | |
obj = set_obj_at_loc(obj, loc, val, separator=separator) | |
return obj | |
def opToFloat(obj, loc, separator=DEFAULT_SEPARATOR): | |
if not is_loc_valid(loc, separator=separator): | |
return obj | |
val = get_obj_at_loc(obj, loc, separator=separator) | |
if val: | |
val = string.atof(val) | |
obj = set_obj_at_loc(obj, loc, val, separator=separator) | |
return obj | |
def opToInt(obj, loc, separator=DEFAULT_SEPARATOR): | |
if not is_loc_valid(loc, separator): | |
return obj | |
val = get_obj_at_loc(obj, loc, separator=separator) | |
if val: | |
val = string.atoi(val) | |
obj = set_obj_at_loc(obj, loc, val, separator=separator) | |
return obj | |
def opToLong(obj, loc, separator=DEFAULT_SEPARATOR): | |
if not is_loc_valid(loc, separator): | |
return obj | |
val = get_obj_at_loc(obj, loc, separator=separator) | |
if val: | |
val = string.atol(val) | |
obj = set_obj_at_loc(obj, loc, val, separator=separator) | |
return obj | |
def opStringify(obj, loc, separator=DEFAULT_SEPARATOR): | |
if not is_loc_valid(loc, separator=DEFAULT_SEPARATOR): | |
return obj | |
val = get_obj_at_loc(obj, loc, separator=separator) | |
if val: | |
val = json.dumps(val) | |
obj = set_obj_at_loc(obj, loc, val) | |
return obj | |
def opMakeArray(obj, loc, separator=DEFAULT_SEPARATOR): | |
if is_loc_valid(loc, separator=separator): | |
return obj | |
val = get_obj_at_loc(obj, loc, separator=separator) | |
if not val: | |
obj = set_obj_at_loc(obj, loc, [], separator=separator) | |
elif isinstance(val, (list, tuple, set)): | |
pass | |
elif isinstance(val, dict): | |
obj = set_obj_at_loc(obj, loc, [val], separator=separator) | |
else: | |
obj = set_obj_at_loc(obj, loc, [val], separator=separator) | |
return obj | |
def opMap1(obj, loc, opMap, separator=DEFAULT_SEPARATOR): | |
if not is_loc_valid(loc, separator) or not isinstance(opMap, (list, tuple, set, dict)): | |
return obj | |
val = get_obj_at_loc(obj, loc, separator=separator) | |
if val: | |
if not isinstance(opMap, (list, tuple, set)): | |
opMap = [opMap] | |
val = doMap(val, opMap) | |
obj = set_obj_at_loc(obj, loc, val, separator=separator) | |
return obj | |
def opMapEach(obj, loc, opMap, separator=DEFAULT_SEPARATOR): | |
if not is_loc_valid(loc, separator) or not isinstance(opMap, (list, tuple, set, dict)): | |
return obj | |
array = get_obj_at_loc(obj, loc, separator=DEFAULT_SEPARATOR) | |
if isinstance(array, (list, tuple, set)): | |
if not isinstance(opMap, (list, tuple, set)): | |
opMap = [opMap] | |
for i, val in enumerate(array): | |
if val: | |
array[i] = doMap(val, opMap) | |
obj = set_obj_at_loc(obj, loc, array, separator=separator) | |
return obj | |
def opGroupAndSumBy(obj, group_by, sum_by, separator=DEFAULT_SEPARATOR): | |
if (not is_loc_valid(group_by, separator) | |
or not is_loc_valid(sum_by, separator)): | |
return obj | |
if isinstance(obj, (list, tuple, set)): | |
ret_array = [] | |
old_val = Ellipsis | |
i, j = 0, len(obj) | |
_item, s = None, 0 | |
while i < j: | |
item = obj[i] | |
if _item is None: | |
_item = item | |
cur_val = get_obj_at_loc(item, group_by, separator=separator) | |
if old_val is Ellipsis: | |
old_val = cur_val | |
s = float(get_obj_at_loc(item, sum_by, separator=separator)) | |
else: | |
while old_val == cur_val and i < j: | |
i += 1 | |
s += float(get_obj_at_loc(item, sum_by, separator)) | |
if i < j: | |
item = obj[i] | |
cur_val = get_obj_at_loc(item, group_by, separator=separator) | |
_item = set_obj_at_loc(_item, sum_by, s, separator=separator) | |
if i < j: | |
old_val = cur_val | |
s = 0 | |
ret_array.append(_item) | |
_item = None | |
return ret_array | |
return obj | |
def opFunc1(obj, loc, fn, args, kwargs, separator=DEFAULT_SEPARATOR): | |
if not is_loc_valid(loc): | |
return obj | |
val = get_obj_at_loc(obj, loc, separator=separator) | |
if val: | |
val = fn(val, *args, **kwargs) | |
obj = set_obj_at_loc(obj, loc, val, separator=separator) | |
return obj | |
def opFuncEach(obj, loc, fn, args, kwargs, separator=DEFAULT_SEPARATOR): | |
if is_loc_valid(loc): | |
return obj | |
array = get_obj_at_loc(obj, loc, separator=separator) | |
if array and isinstance(array, (list, tuple, set)): | |
for i, val in enumerate(array): | |
array[i] = fn(val, *args, **kwargs) | |
obj = set_obj_at_loc(obj, loc, array) | |
return obj | |
def opIf(obj, condition, trueMap, falseMap, separator=DEFAULT_SEPARATOR): | |
if not all(map(lambda x: isinstance(x, (list, tuple, set, dict)), [trueMap, falseMap])): | |
return obj | |
print condition | |
print trueMap, True | |
print falseMap, False | |
if bool(condition): | |
if not isinstance(trueMap, (list, tuple, set)): | |
trueMap = [trueMap] | |
obj = doMap(obj, trueMap) | |
elif falseMap and not bool(condition): | |
if not isinstance(falseMap, (list, tuple, set)): | |
falseMap = [falseMap] | |
obj = doMap(obj, falseMap) | |
return obj | |
def opIfExists(obj, loc, trueMap, falseMap, separator=DEFAULT_SEPARATOR): | |
if not is_loc_valid(loc, separator=separator): | |
return obj | |
return opIf(obj, not (get_obj_at_loc(obj, loc) is None), trueMap, falseMap, separator=separator) | |
def opIfNotExists(obj, loc, trueMap, falseMap, separator=DEFAULT_SEPARATOR): | |
if not is_loc_valid(loc, separator=separator): | |
return obj | |
return opIf(obj, get_obj_at_loc(obj, loc) is None, trueMap, falseMap, separator=separator) | |
def opIfEqual(obj, loc, val, trueMap, falseMap, separator=DEFAULT_SEPARATOR): | |
if not is_loc_valid(loc, separator=separator): | |
return obj | |
return opIf(obj, bool(get_obj_at_loc(obj, loc, separator=separator)), trueMap, falseMap, | |
separator=separator) | |
def opIfType(obj, loc, typeStr, trueMap, falseMap, separator=DEFAULT_SEPARATOR): | |
if not is_loc_valid(loc, separator=separator): | |
return obj | |
if isinstance(loc, basestring): | |
return obj | |
loc_type = get_type_of_loc(obj, loc, separator=separator) | |
array = typeStr.split(' ') | |
wasFound = False | |
for item in array: | |
if loc_type == item: | |
wasFound = True | |
break | |
return opIf(obj, wasFound, trueMap, falseMap) | |
def opIfFunc(obj, loc, fn, args, kwargs, trueMap, falseMap, separator=DEFAULT_SEPARATOR): | |
if not is_loc_valid(loc): | |
return obj | |
val = get_obj_at_loc(obj, loc, separator=separator) | |
return opIf(obj, fn(val, *args, **kwargs)==True, trueMap, falseMap, separator=separator) | |
def doMap(obj, Map, separator=DEFAULT_SEPARATOR): | |
if not isinstance(Map, (list, tuple, set)): | |
Map = [Map] | |
for item in Map: | |
if not 'separator' in item: | |
item['separator'] = separator | |
op_name = item.get('op') | |
args = {k:v for k,v in item.items() if k not in ('op',)} | |
operator = globals().get(op_name) | |
obj = operator(obj, **args) | |
return obj | |
class Mapr(object): | |
def __init__(self, mapping=[], separator=DEFAULT_SEPARATOR): | |
self.separator = separator | |
self.map_commands = mapping | |
def set_map_commands(self, commands): | |
if isinstance(commands, (list, tuple, set)): | |
self.map_commands.extend(commands) | |
elif 'op' in commands: | |
self.map_commands.append(commands) | |
def set_separator(self, separator): | |
if separator and len(separator) == 1: | |
self.separator = separator | |
def map(self, obj): | |
return doMap(obj, self.map_commands, self.separator) | |
def main(): | |
myObj = { | |
'fName': 'John', | |
'lName': 'Doe', | |
'addresses': [ | |
{ | |
'addr': '177 Pine St', | |
'city': 'San Jose', | |
'state': 'CA', | |
'zip': 95120, | |
'addressType': 'HOME' | |
}, | |
{ | |
'addr': '10 S Almaden Blvd', | |
'city': 'San Jose', | |
'zip': 95113, | |
'addressType': 'WORK' | |
} | |
], | |
'username': 'john.doe', | |
'child': 'Ryan' | |
} | |
myMap = [ | |
{'op': 'opMove', 'source': '/fName', 'dest': '/firstName'}, | |
{'op': 'opMove', 'source': '/lName', 'dest': '/lastName'}, | |
{'op': 'opMove', 'source': '/child', 'dest': '/children'}, | |
{'op': 'opMakeArray', 'loc': '/children' }, | |
{'op': 'opMapEach', 'loc': '/addresses', 'opMap': [ | |
{'op': 'opToString', 'loc': '/zip'}, | |
{'op': 'opMove', 'source': '/addr', 'dest': '/streetAddress'}] | |
} | |
] | |
mapper = Mapr(myMap) | |
print mapper.map(myObj) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Invoice": { | |
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", | |
"@xsi:noNamespaceSchemaLocation": "AccountisXML_US_Invoice_1.1.xsd", | |
"@credit": "false", | |
"ID": "TMB*****95308", | |
"LegalTotal": { | |
"LineExtensionTotalAmount": { | |
"@amountCurrencyID": "USD", | |
"#text": "2348.74" | |
}, | |
"TaxExclusiveTotalAmount": "2348.74", | |
"TaxInclusiveTotalAmount": "2348.74" | |
}, | |
"TaxTotal": { | |
"TotalTaxAmount": "0.00" | |
}, | |
"IssueDate": "2016-09-21", | |
"PaymentMeans": { | |
"PaymentDays": "15", | |
"PaymentDueDate": "2016-10-06" | |
}, | |
"SellerParty": { | |
"Party": { | |
"PartyIdentification": { | |
"@schemeID": "" | |
}, | |
"PartyName": "DHL-US", | |
"PartyTaxScheme": { | |
"CompanyID": null | |
} | |
} | |
}, | |
"TaxCodeAdjustment": null, | |
"InvoiceType": "R", | |
"InvoiceReference": null, | |
"BuyerParty": { | |
"Party": { | |
"PartyName": { | |
"Name": "GO GO GO SHIPPING" | |
}, | |
"PartyTaxScheme": { | |
"CompanyID": "957694836" | |
} | |
}, | |
"Address": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "GO GO GO SHIPPING" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "1234 S DIXIE HWY #311" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "CORAL GABLES" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33146" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "vatNumber", | |
"#text": "957694836" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "telephone", | |
"#text": "*****85124" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JP POSSENTI" | |
} | |
} | |
] | |
}, | |
"SellerAssignedAccountID": "*********" | |
}, | |
"BillingSystem": "IBS", | |
"SalesTerritory": null, | |
"SalesManager": "D512P04", | |
"ImporterOfRecord": "US", | |
"InvoiceLine": [ | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "1" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-08-22" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "GUITAR SPARE PARTS", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "GUAYAQUIL GATEWAY", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "GYE", | |
"BuyersId": { | |
"@identificationSchemeID": "GYE. GUAYAQUIL GATEWAY", | |
"#text": "GYE. GUAYAQUIL GATEWAY" | |
} | |
}, | |
"SellersLineId": "*****11372", | |
"SellersLineId_BE": "*****11372", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "2.00", | |
"LoadWeight": "2.20", | |
"TenderVolume": "2.43", | |
"LoadVolume": "3.63", | |
"Checkpoint": { | |
"Signature": "CARLOS FALCONI", | |
"When": "2016-08-23 18:53", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "GUITAR SPARE PARTS", | |
"Dimensions": "14.00 x 3.00 x 12.00", | |
"Quantity": "2.00", | |
"ActualDeliveryDateTime": "2016-08-22", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "11022 SW 246TH ST" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HOMESTEAD" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33032" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CARLOS FALCONI CARBO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CARLOS R FALCONI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CC PLAZA QUIL LOCAL 78" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "PLATINUM TRAVEL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "AV CARLOS LUIS PLAZA DANIN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "090101" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CARLOS R FALCONI" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "32.93", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "32.93" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "2" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-08-22" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "GUAYAQUIL GATEWAY", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "GYE", | |
"BuyersId": { | |
"@identificationSchemeID": "GYE. GUAYAQUIL GATEWAY", | |
"#text": "GYE. GUAYAQUIL GATEWAY" | |
} | |
}, | |
"SellersLineId": "*****11372", | |
"SellersLineId_BE": "*****11372", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "2.00", | |
"LoadWeight": "2.20", | |
"TenderVolume": "2.43", | |
"LoadVolume": "3.63", | |
"Checkpoint": { | |
"Signature": "CARLOS FALCONI", | |
"When": "2016-08-23 18:53", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "GUITAR SPARE PARTS", | |
"Dimensions": "14.00 x 3.00 x 12.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-08-22", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "11022 SW 246TH ST" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HOMESTEAD" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33032" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CARLOS FALCONI CARBO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CARLOS R FALCONI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CC PLAZA QUIL LOCAL 78" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "PLATINUM TRAVEL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "AV CARLOS LUIS PLAZA DANIN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "090101" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CARLOS R FALCONI" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "0.82", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.82" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "3" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-08-22" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "GUAYAQUIL GATEWAY", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "GYE", | |
"BuyersId": { | |
"@identificationSchemeID": "GYE. GUAYAQUIL GATEWAY", | |
"#text": "GYE. GUAYAQUIL GATEWAY" | |
} | |
}, | |
"SellersLineId": "*****11372", | |
"SellersLineId_BE": "*****11372", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "2.00", | |
"LoadWeight": "2.20", | |
"TenderVolume": "2.43", | |
"LoadVolume": "3.63", | |
"Checkpoint": { | |
"Signature": "CARLOS FALCONI", | |
"When": "2016-08-23 18:53", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "GUITAR SPARE PARTS", | |
"Dimensions": "14.00 x 3.00 x 12.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-08-22", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "11022 SW 246TH ST" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HOMESTEAD" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33032" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CARLOS FALCONI CARBO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CARLOS R FALCONI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CC PLAZA QUIL LOCAL 78" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "PLATINUM TRAVEL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "AV CARLOS LUIS PLAZA DANIN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "090101" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CARLOS R FALCONI" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "36.75" | |
}, | |
"SurchargeLineExtensionAmount": "3.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "3.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "4" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-08-22" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "MOLDES Y LAMPARAS DNI 72884692", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "IQUITOS", | |
"DestinationCountryCode": "PE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "IQT", | |
"BuyersId": { | |
"@identificationSchemeID": "IQT. IQUITOS", | |
"#text": "IQT. IQUITOS" | |
} | |
}, | |
"SellersLineId": "*****32321", | |
"SellersLineId_BE": "*****32321", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "5.00", | |
"LoadWeight": "5.10", | |
"TenderVolume": "2.43", | |
"LoadVolume": "5.05", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "MOLDES Y LAMPARAS DNI 72884692", | |
"Dimensions": "18.00 x 13.00 x 3.00", | |
"Quantity": "5.00", | |
"ActualDeliveryDateTime": "2016-08-22", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "125 SW 26TH RD" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33129" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SAMANTA GIORDANI TREJO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "ANNY VILCHEZ RAMIREZ" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AVE CENTENARIO 4800" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "PUCALLPA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ANNY VILCHEZ RAMIRE" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "45.98", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "45.98" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "5" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-08-22" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "IQUITOS", | |
"DestinationCountryCode": "PE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "IQT", | |
"BuyersId": { | |
"@identificationSchemeID": "IQT. IQUITOS", | |
"#text": "IQT. IQUITOS" | |
} | |
}, | |
"SellersLineId": "*****32321", | |
"SellersLineId_BE": "*****32321", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "5.00", | |
"LoadWeight": "5.10", | |
"TenderVolume": "2.43", | |
"LoadVolume": "5.05", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "MOLDES Y LAMPARAS DNI 72884692", | |
"Dimensions": "18.00 x 13.00 x 3.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-08-22", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "125 SW 26TH RD" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33129" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SAMANTA GIORDANI TREJO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "ANNY VILCHEZ RAMIREZ" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AVE CENTENARIO 4800" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "PUCALLPA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ANNY VILCHEZ RAMIRE" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "1.15", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "1.15" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "6" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-08-22" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "IQUITOS", | |
"DestinationCountryCode": "PE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "IQT", | |
"BuyersId": { | |
"@identificationSchemeID": "IQT. IQUITOS", | |
"#text": "IQT. IQUITOS" | |
} | |
}, | |
"SellersLineId": "*****32321", | |
"SellersLineId_BE": "*****32321", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "5.00", | |
"LoadWeight": "5.10", | |
"TenderVolume": "2.43", | |
"LoadVolume": "5.05", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "MOLDES Y LAMPARAS DNI 72884692", | |
"Dimensions": "18.00 x 13.00 x 3.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-08-22", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "125 SW 26TH RD" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33129" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SAMANTA GIORDANI TREJO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "ANNY VILCHEZ RAMIREZ" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AVE CENTENARIO 4800" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "PUCALLPA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ANNY VILCHEZ RAMIRE" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "50.13" | |
}, | |
"SurchargeLineExtensionAmount": "3.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "3.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "7" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-08-22" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "BOOKBAG MORRAL FOR PERSONAL USE USO PERSONAL", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "QUITO", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "UIO", | |
"BuyersId": { | |
"@identificationSchemeID": "UIO. QUITO", | |
"#text": "UIO. QUITO" | |
} | |
}, | |
"SellersLineId": "*****16876", | |
"SellersLineId_BE": "*****16876", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "2.00", | |
"LoadWeight": "2.00", | |
"TenderVolume": "2.43", | |
"LoadVolume": "3.63", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "BOOKBAG MORRAL FOR PERSONAL USE USO PERSONAL", | |
"Dimensions": "14.00 x 12.00 x 3.00", | |
"Quantity": "2.00", | |
"ActualDeliveryDateTime": "2016-08-22", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "9501 FONTAINEBLEAU BLVD APT 401" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33172" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "S. DEPARTMENT" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "YEXI CAROLINA FERNANDEZ CONDE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "URB. TERRAZAS DEL MORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "EDIF 6 PISO 1 DEPT 102" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MONTESERRIN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "170201" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "YEXI CAROLINA FERNA" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "32.93", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "32.93" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "8" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-08-22" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "QUITO", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "UIO", | |
"BuyersId": { | |
"@identificationSchemeID": "UIO. QUITO", | |
"#text": "UIO. QUITO" | |
} | |
}, | |
"SellersLineId": "*****16876", | |
"SellersLineId_BE": "*****16876", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "2.00", | |
"LoadWeight": "2.00", | |
"TenderVolume": "2.43", | |
"LoadVolume": "3.63", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "BOOKBAG MORRAL FOR PERSONAL USE USO PERSONAL", | |
"Dimensions": "14.00 x 12.00 x 3.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-08-22", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "9501 FONTAINEBLEAU BLVD APT 401" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33172" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "S. DEPARTMENT" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "YEXI CAROLINA FERNANDEZ CONDE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "URB. TERRAZAS DEL MORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "EDIF 6 PISO 1 DEPT 102" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MONTESERRIN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "170201" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "YEXI CAROLINA FERNA" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "0.82", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.82" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "9" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-08-22" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "QUITO", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "UIO", | |
"BuyersId": { | |
"@identificationSchemeID": "UIO. QUITO", | |
"#text": "UIO. QUITO" | |
} | |
}, | |
"SellersLineId": "*****16876", | |
"SellersLineId_BE": "*****16876", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "2.00", | |
"LoadWeight": "2.00", | |
"TenderVolume": "2.43", | |
"LoadVolume": "3.63", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "BOOKBAG MORRAL FOR PERSONAL USE USO PERSONAL", | |
"Dimensions": "14.00 x 12.00 x 3.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-08-22", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "9501 FONTAINEBLEAU BLVD APT 401" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33172" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "S. DEPARTMENT" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "YEXI CAROLINA FERNANDEZ CONDE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "URB. TERRAZAS DEL MORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "EDIF 6 PISO 1 DEPT 102" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MONTESERRIN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "170201" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "YEXI CAROLINA FERNA" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "36.75" | |
}, | |
"SurchargeLineExtensionAmount": "3.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "3.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "10" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-08-23" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "GUAYAQUIL GATEWAY", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "GYE", | |
"BuyersId": { | |
"@identificationSchemeID": "GYE. GUAYAQUIL GATEWAY", | |
"#text": "GYE. GUAYAQUIL GATEWAY" | |
} | |
}, | |
"SellersLineId": "*****72401", | |
"SellersLineId_BE": "*****72401", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.40", | |
"TenderVolume": null, | |
"LoadVolume": "1.00", | |
"Checkpoint": { | |
"Signature": "REP CONSULAR 1", | |
"When": "2016-08-24 11:14", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-08-23", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CARDINA ALMEIDA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "14235 SW 173TH ST" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33177" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CARDINA ALMEIDA" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "UNITED STATES DOS IMMIGRANT USA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "SANTA ANA ST AND JOSE,RODRIGUEZ BORVIN AVE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "SAN EDUARDO,GUAYAQUIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "GUAYAQUIL GATEWAY" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "GUAYAQUIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "090101" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "UNITED STATES DOS IMMIGRANT USA" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "11" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-08-23" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "GUAYAQUIL GATEWAY", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "GYE", | |
"BuyersId": { | |
"@identificationSchemeID": "GYE. GUAYAQUIL GATEWAY", | |
"#text": "GYE. GUAYAQUIL GATEWAY" | |
} | |
}, | |
"SellersLineId": "*****72401", | |
"SellersLineId_BE": "*****72401", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.40", | |
"TenderVolume": null, | |
"LoadVolume": "1.00", | |
"Checkpoint": { | |
"Signature": "REP CONSULAR 1", | |
"When": "2016-08-24 11:14", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-08-23", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CARDINA ALMEIDA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "14235 SW 173TH ST" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33177" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CARDINA ALMEIDA" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "UNITED STATES DOS IMMIGRANT USA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "SANTA ANA ST AND JOSE,RODRIGUEZ BORVIN AVE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "SAN EDUARDO,GUAYAQUIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "GUAYAQUIL GATEWAY" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "GUAYAQUIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "090101" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "UNITED STATES DOS IMMIGRANT USA" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.28" | |
}, | |
"SurchargeLineExtensionAmount": "0.4", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.4" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "12" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-08-25" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "WOOD SAMPLE", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MONTREAL", | |
"DestinationCountryCode": "CA", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "YUL", | |
"BuyersId": { | |
"@identificationSchemeID": "YUL. MONTREAL", | |
"#text": "YUL. MONTREAL" | |
} | |
}, | |
"SellersLineId": "*****72353", | |
"SellersLineId_BE": "*****72353", | |
"BuyersLineId": "LOUI BOSSI BOCA/KHD" | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.90", | |
"TenderVolume": null, | |
"LoadVolume": "0.79", | |
"Checkpoint": { | |
"Signature": "M MARY", | |
"When": "2016-08-26 12:29", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "WOOD SAMPLE", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-08-25", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "THE JOHN KENNEY COMPANY" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "389 WESTWARD DRIVE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI SPRINGS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33166" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "EDMY MORENO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "PAVAR FURNITURE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "4906 RUE BOURG" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "SAINT LAURENT,QUEBEC CANADA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "QUEBEC SERVICE AREA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "QC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "H4T 1J2" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "CA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DANIEL ALLARD" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "14.47", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "14.47" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "13" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-08-25" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MONTREAL", | |
"DestinationCountryCode": "CA", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "YUL", | |
"BuyersId": { | |
"@identificationSchemeID": "YUL. MONTREAL", | |
"#text": "YUL. MONTREAL" | |
} | |
}, | |
"SellersLineId": "*****72353", | |
"SellersLineId_BE": "*****72353", | |
"BuyersLineId": "LOUI BOSSI BOCA/KHD" | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.90", | |
"TenderVolume": null, | |
"LoadVolume": "0.79", | |
"Checkpoint": { | |
"Signature": "M MARY", | |
"When": "2016-08-26 12:29", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "WOOD SAMPLE", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-08-25", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "THE JOHN KENNEY COMPANY" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "389 WESTWARD DRIVE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI SPRINGS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33166" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "EDMY MORENO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "PAVAR FURNITURE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "4906 RUE BOURG" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "SAINT LAURENT,QUEBEC CANADA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "QUEBEC SERVICE AREA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "QC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "H4T 1J2" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "CA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DANIEL ALLARD" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "14.83" | |
}, | |
"SurchargeLineExtensionAmount": "0.36", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.36" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "14" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-08" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "RAMALLAH-WEST BANK", | |
"DestinationCountryCode": "IL", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "ZDM", | |
"BuyersId": { | |
"@identificationSchemeID": "ZDM. RAMALLAH-WEST BANK", | |
"#text": "ZDM. RAMALLAH-WEST BANK" | |
} | |
}, | |
"SellersLineId": "*****29893", | |
"SellersLineId_BE": "*****29893", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.20", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-08", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "12721 SW 68TH LN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33183" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "GILBERT ATICK" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "ISSA MOBARAK" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "MANGER STREET" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "BETHLEHEM" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "99921" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "IL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ISSA MOBARAK" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "23.14", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "23.14" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "15" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-08" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "RAMALLAH-WEST BANK", | |
"DestinationCountryCode": "IL", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "ZDM", | |
"BuyersId": { | |
"@identificationSchemeID": "ZDM. RAMALLAH-WEST BANK", | |
"#text": "ZDM. RAMALLAH-WEST BANK" | |
} | |
}, | |
"SellersLineId": "*****29893", | |
"SellersLineId_BE": "*****29893", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.20", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-08", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "12721 SW 68TH LN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33183" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "GILBERT ATICK" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "ISSA MOBARAK" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "MANGER STREET" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "BETHLEHEM" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "99921" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "IL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ISSA MOBARAK" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "23.60" | |
}, | |
"SurchargeLineExtensionAmount": "0.46", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.46" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "16" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "CARACAS", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "CCS", | |
"BuyersId": { | |
"@identificationSchemeID": "CCS. CARACAS", | |
"#text": "CCS. CARACAS" | |
} | |
}, | |
"SellersLineId": "*****48005", | |
"SellersLineId_BE": "*****48005", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "DANIELA CAPOTE", | |
"When": "2016-09-14 15:20", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "8646 NW 112TH PATH" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33178" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "FRANCISCO DE OLIVAL DE CA" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "LUIS FERNANDO MEDINA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "ESQUINA DE ABANICO ASOCORRO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "EDF INORCA PISO 5 OFC 51" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "AVENIDA URDANETA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "LUIS FERNANDO MEDIN" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "17" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "CARACAS", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "CCS", | |
"BuyersId": { | |
"@identificationSchemeID": "CCS. CARACAS", | |
"#text": "CCS. CARACAS" | |
} | |
}, | |
"SellersLineId": "*****48005", | |
"SellersLineId_BE": "*****48005", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "DANIELA CAPOTE", | |
"When": "2016-09-14 15:20", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "8646 NW 112TH PATH" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33178" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "FRANCISCO DE OLIVAL DE CA" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "LUIS FERNANDO MEDINA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "ESQUINA DE ABANICO ASOCORRO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "EDF INORCA PISO 5 OFC 51" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "AVENIDA URDANETA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "LUIS FERNANDO MEDIN" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "18" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "USED LAPTOP FOR PERSONAL USE", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "DAVID", | |
"DestinationCountryCode": "PA", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "DAV", | |
"BuyersId": { | |
"@identificationSchemeID": "DAV. DAVID", | |
"#text": "DAV. DAVID" | |
} | |
}, | |
"SellersLineId": "*****43010", | |
"SellersLineId_BE": "*****43010", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "7.00", | |
"LoadWeight": "6.70", | |
"TenderVolume": "7.48", | |
"LoadVolume": "7.48", | |
"Checkpoint": { | |
"Signature": "KETY HENRIQUEZ", | |
"When": "2016-09-14 10:54", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "USED LAPTOP FOR PERSONAL USE", | |
"Dimensions": "16.00 x 13.00 x 5.00", | |
"Quantity": "8.00", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "1601 NW 112TH TER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33167" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MARIA LABRADA VEGA" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CLARA MARIA MARTINEZ LABRADA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AVE DOMINGO DIAZ EDIF GARRIDO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "PLANTA BAJA LOCAL 3-1" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DAVID" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CLARA MARIA MARTINE" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "68.4", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "68.4" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "19" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "DAVID", | |
"DestinationCountryCode": "PA", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "DAV", | |
"BuyersId": { | |
"@identificationSchemeID": "DAV. DAVID", | |
"#text": "DAV. DAVID" | |
} | |
}, | |
"SellersLineId": "*****43010", | |
"SellersLineId_BE": "*****43010", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "7.00", | |
"LoadWeight": "6.70", | |
"TenderVolume": "7.48", | |
"LoadVolume": "7.48", | |
"Checkpoint": { | |
"Signature": "KETY HENRIQUEZ", | |
"When": "2016-09-14 10:54", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "USED LAPTOP FOR PERSONAL USE", | |
"Dimensions": "16.00 x 13.00 x 5.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "1601 NW 112TH TER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33167" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MARIA LABRADA VEGA" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CLARA MARIA MARTINEZ LABRADA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AVE DOMINGO DIAZ EDIF GARRIDO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "PLANTA BAJA LOCAL 3-1" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DAVID" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CLARA MARIA MARTINE" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "1.37", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "1.37" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "20" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "DAVID", | |
"DestinationCountryCode": "PA", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "DAV", | |
"BuyersId": { | |
"@identificationSchemeID": "DAV. DAVID", | |
"#text": "DAV. DAVID" | |
} | |
}, | |
"SellersLineId": "*****43010", | |
"SellersLineId_BE": "*****43010", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "7.00", | |
"LoadWeight": "6.70", | |
"TenderVolume": "7.48", | |
"LoadVolume": "7.48", | |
"Checkpoint": { | |
"Signature": "KETY HENRIQUEZ", | |
"When": "2016-09-14 10:54", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "USED LAPTOP FOR PERSONAL USE", | |
"Dimensions": "16.00 x 13.00 x 5.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "1601 NW 112TH TER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33167" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MARIA LABRADA VEGA" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CLARA MARIA MARTINEZ LABRADA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AVE DOMINGO DIAZ EDIF GARRIDO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "PLANTA BAJA LOCAL 3-1" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DAVID" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CLARA MARIA MARTINE" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "72.77" | |
}, | |
"SurchargeLineExtensionAmount": "3.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "3.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "21" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "SHOES AND LUNCH KIT", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "KINGSTON", | |
"DestinationCountryCode": "JM", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "KIN", | |
"BuyersId": { | |
"@identificationSchemeID": "KIN. KINGSTON", | |
"#text": "KIN. KINGSTON" | |
} | |
}, | |
"SellersLineId": "*****17376", | |
"SellersLineId_BE": "*****17376", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "9.00", | |
"LoadWeight": "9.00", | |
"TenderVolume": "14.59", | |
"LoadVolume": "12.43", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "SHOES AND LUNCH KIT", | |
"Dimensions": "12.00 x 12.00 x 12.00", | |
"Quantity": "13.00", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "18135 NW 6TH AVE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33169" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DORELL ANTHONY GREEN" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHRISTINA GREEN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "LOT 175 LILLYCLOSETRYALL HEIGHT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "ST. CATHERINE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SPANISH TOWN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "JM" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CHRISTINA GREEN" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "66.07", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "66.07" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "22" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "KINGSTON", | |
"DestinationCountryCode": "JM", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "KIN", | |
"BuyersId": { | |
"@identificationSchemeID": "KIN. KINGSTON", | |
"#text": "KIN. KINGSTON" | |
} | |
}, | |
"SellersLineId": "*****17376", | |
"SellersLineId_BE": "*****17376", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "9.00", | |
"LoadWeight": "9.00", | |
"TenderVolume": "14.59", | |
"LoadVolume": "12.43", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "SHOES AND LUNCH KIT", | |
"Dimensions": "12.00 x 12.00 x 12.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "18135 NW 6TH AVE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33169" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DORELL ANTHONY GREEN" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHRISTINA GREEN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "LOT 175 LILLYCLOSETRYALL HEIGHT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "ST. CATHERINE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SPANISH TOWN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "JM" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CHRISTINA GREEN" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "1.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "1.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "23" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "KINGSTON", | |
"DestinationCountryCode": "JM", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "KIN", | |
"BuyersId": { | |
"@identificationSchemeID": "KIN. KINGSTON", | |
"#text": "KIN. KINGSTON" | |
} | |
}, | |
"SellersLineId": "*****17376", | |
"SellersLineId_BE": "*****17376", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "9.00", | |
"LoadWeight": "9.00", | |
"TenderVolume": "14.59", | |
"LoadVolume": "12.43", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "SHOES AND LUNCH KIT", | |
"Dimensions": "12.00 x 12.00 x 12.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "18135 NW 6TH AVE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33169" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DORELL ANTHONY GREEN" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHRISTINA GREEN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "LOT 175 LILLYCLOSETRYALL HEIGHT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "ST. CATHERINE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SPANISH TOWN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "JM" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CHRISTINA GREEN" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "70.39" | |
}, | |
"SurchargeLineExtensionAmount": "3.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "3.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "24" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "BIRTHDAY CARD", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "LONDON-HEATHROW", | |
"DestinationCountryCode": "GB", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "LHR", | |
"BuyersId": { | |
"@identificationSchemeID": "LHR. LONDON-HEATHROW", | |
"#text": "LHR. LONDON-HEATHROW" | |
} | |
}, | |
"SellersLineId": "*****26015", | |
"SellersLineId_BE": "*****26015", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.20", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "K KHAN", | |
"When": "2016-09-14 10:22", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "BIRTHDAY CARD", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "9855 SW 197TH ST" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "CUTLER BAY" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33157" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "WALDIMIR ANTONIO PEREZ" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "KIRN KHAN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "15 BOARDESLEY ROAD" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "MORDEN LONDON" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SM4 5LW" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "SM4 5" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "GB" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIRN KHAN" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "19.71", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "19.71" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "25" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "LONDON-HEATHROW", | |
"DestinationCountryCode": "GB", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "LHR", | |
"BuyersId": { | |
"@identificationSchemeID": "LHR. LONDON-HEATHROW", | |
"#text": "LHR. LONDON-HEATHROW" | |
} | |
}, | |
"SellersLineId": "*****26015", | |
"SellersLineId_BE": "*****26015", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.20", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "K KHAN", | |
"When": "2016-09-14 10:22", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "BIRTHDAY CARD", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "9855 SW 197TH ST" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "CUTLER BAY" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33157" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "WALDIMIR ANTONIO PEREZ" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "KIRN KHAN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "15 BOARDESLEY ROAD" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "MORDEN LONDON" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SM4 5LW" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "SM4 5" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "GB" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIRN KHAN" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "20.10" | |
}, | |
"SurchargeLineExtensionAmount": "0.39", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.39" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "26" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "PARTY DECORATION KIT", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "LIMA", | |
"DestinationCountryCode": "PE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "LIM", | |
"BuyersId": { | |
"@identificationSchemeID": "LIM. LIMA", | |
"#text": "LIM. LIMA" | |
} | |
}, | |
"SellersLineId": "*****56624", | |
"SellersLineId_BE": "*****56624", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.50", | |
"TenderVolume": "0.86", | |
"LoadVolume": "0.80", | |
"Checkpoint": { | |
"Signature": "FERNANDO SANGAMA10277364", | |
"When": "2016-09-14 10:32", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "PARTY DECORATION KIT", | |
"Dimensions": null, | |
"Quantity": "1.00", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "730 NW 106TH AVE UNIT 6" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33172" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ISAEL VILA PERERA" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "NATHALY BRAVO NEYRA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE CANDELARIA GARCIA 150A" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "2DO PISO - SAN MIGUEL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "LIMA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "NATHALY BRAVO NEYRA" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "26.04", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "26.04" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "27" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "LIMA", | |
"DestinationCountryCode": "PE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "LIM", | |
"BuyersId": { | |
"@identificationSchemeID": "LIM. LIMA", | |
"#text": "LIM. LIMA" | |
} | |
}, | |
"SellersLineId": "*****56624", | |
"SellersLineId_BE": "*****56624", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.50", | |
"TenderVolume": "0.86", | |
"LoadVolume": "0.80", | |
"Checkpoint": { | |
"Signature": "FERNANDO SANGAMA10277364", | |
"When": "2016-09-14 10:32", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "PARTY DECORATION KIT", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "730 NW 106TH AVE UNIT 6" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33172" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ISAEL VILA PERERA" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "NATHALY BRAVO NEYRA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE CANDELARIA GARCIA 150A" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "2DO PISO - SAN MIGUEL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "LIMA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "NATHALY BRAVO NEYRA" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "26.56" | |
}, | |
"SurchargeLineExtensionAmount": "0.52", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.52" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "28" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "LIMA", | |
"DestinationCountryCode": "PE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "LIM", | |
"BuyersId": { | |
"@identificationSchemeID": "LIM. LIMA", | |
"#text": "LIM. LIMA" | |
} | |
}, | |
"SellersLineId": "*****33043", | |
"SellersLineId_BE": "*****33043", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "DAVID TAICO", | |
"When": "2016-09-13 16:41", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "10901 SW 88TH ST APT 104" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33176" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MARIA M CAMPANO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DAVID E TAICO CAMPANO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "LLOQUE YUPANQUI 951 DPTO 506" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "JESUS MARIA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "LIMA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DAVID E TAICO CAMPA" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "29" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "LIMA", | |
"DestinationCountryCode": "PE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "LIM", | |
"BuyersId": { | |
"@identificationSchemeID": "LIM. LIMA", | |
"#text": "LIM. LIMA" | |
} | |
}, | |
"SellersLineId": "*****33043", | |
"SellersLineId_BE": "*****33043", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "DAVID TAICO", | |
"When": "2016-09-13 16:41", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "10901 SW 88TH ST APT 104" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33176" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MARIA M CAMPANO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DAVID E TAICO CAMPANO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "LLOQUE YUPANQUI 951 DPTO 506" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "JESUS MARIA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "LIMA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DAVID E TAICO CAMPA" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "30" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "LIMA", | |
"DestinationCountryCode": "PE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "LIM", | |
"BuyersId": { | |
"@identificationSchemeID": "LIM. LIMA", | |
"#text": "LIM. LIMA" | |
} | |
}, | |
"SellersLineId": "*****76891", | |
"SellersLineId_BE": "*****76891", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "E FAGRI", | |
"When": "2016-09-13 16:02", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "21502 SW 87TH CT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "CUTLER BAY" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33189" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CARMEN ROSA LOSTAUNAU" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "EMILIO FAGRI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "LEON VELARDE 671-B" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "LINCE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "LIMA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "EMILIO FAGRI" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "31" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "LIMA", | |
"DestinationCountryCode": "PE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "LIM", | |
"BuyersId": { | |
"@identificationSchemeID": "LIM. LIMA", | |
"#text": "LIM. LIMA" | |
} | |
}, | |
"SellersLineId": "*****76891", | |
"SellersLineId_BE": "*****76891", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "E FAGRI", | |
"When": "2016-09-13 16:02", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "21502 SW 87TH CT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "CUTLER BAY" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33189" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CARMEN ROSA LOSTAUNAU" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "EMILIO FAGRI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "LEON VELARDE 671-B" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "LINCE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "LIMA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "EMILIO FAGRI" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "32" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MARACAIBO", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MAR", | |
"BuyersId": { | |
"@identificationSchemeID": "MAR. MARACAIBO", | |
"#text": "MAR. MARACAIBO" | |
} | |
}, | |
"SellersLineId": "*****09924", | |
"SellersLineId_BE": "*****09924", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-15 12:15", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "6701 SW 116TH CT APT 104" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33173" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "AUGUSTO FERNANDO SANTIAGO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL COUNTER MARACAIBO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE 71 CON AV. 21 EDIFICIO DHL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "SECTOR INDIO MARA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HOLD FOR ADELA MORALES" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ADELA MORALES" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "33" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MARACAIBO", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MAR", | |
"BuyersId": { | |
"@identificationSchemeID": "MAR. MARACAIBO", | |
"#text": "MAR. MARACAIBO" | |
} | |
}, | |
"SellersLineId": "*****09924", | |
"SellersLineId_BE": "*****09924", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-15 12:15", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "6701 SW 116TH CT APT 104" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33173" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "AUGUSTO FERNANDO SANTIAGO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL COUNTER MARACAIBO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE 71 CON AV. 21 EDIFICIO DHL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "SECTOR INDIO MARA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HOLD FOR ADELA MORALES" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ADELA MORALES" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "34" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "DOG ACCESSORIES FOOD DRY PASTA AND DIAPERS", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MARACAIBO", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MAR", | |
"BuyersId": { | |
"@identificationSchemeID": "MAR. MARACAIBO", | |
"#text": "MAR. MARACAIBO" | |
} | |
}, | |
"SellersLineId": "*****20560", | |
"SellersLineId_BE": "*****20560", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "62.00", | |
"LoadWeight": "61.90", | |
"TenderVolume": "58.27", | |
"LoadVolume": "45.93", | |
"Checkpoint": { | |
"Signature": "NEIRA ZAMBRANO", | |
"When": "2016-09-15 15:48", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOG ACCESSORIES FOOD DRY PASTA AND DIAPERS", | |
"Dimensions": null, | |
"Quantity": "62.00", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "3747 PINE LAKE DR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "WESTON" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33332" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SONIA ESTHER PINA" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "NEIRA ZAMBRANO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "SECTOR DELICIAS VIEJAS CALLE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "MANAURE CASA #14 - AL LADO DE LA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "ESCUELA ARGELIA TERESA DE MARVAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "NEIRA ZAMBRANO" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "324.19", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "324.19" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "35" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MARACAIBO", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MAR", | |
"BuyersId": { | |
"@identificationSchemeID": "MAR. MARACAIBO", | |
"#text": "MAR. MARACAIBO" | |
} | |
}, | |
"SellersLineId": "*****20560", | |
"SellersLineId_BE": "*****20560", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "62.00", | |
"LoadWeight": "61.90", | |
"TenderVolume": "58.27", | |
"LoadVolume": "45.93", | |
"Checkpoint": { | |
"Signature": "NEIRA ZAMBRANO", | |
"When": "2016-09-15 15:48", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOG ACCESSORIES FOOD DRY PASTA AND DIAPERS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "3747 PINE LAKE DR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "WESTON" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33332" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SONIA ESTHER PINA" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "NEIRA ZAMBRANO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "SECTOR DELICIAS VIEJAS CALLE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "MANAURE CASA #14 - AL LADO DE LA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "ESCUELA ARGELIA TERESA DE MARVAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "NEIRA ZAMBRANO" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "6.48", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "6.48" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "36" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MARACAIBO", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MAR", | |
"BuyersId": { | |
"@identificationSchemeID": "MAR. MARACAIBO", | |
"#text": "MAR. MARACAIBO" | |
} | |
}, | |
"SellersLineId": "*****20560", | |
"SellersLineId_BE": "*****20560", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "62.00", | |
"LoadWeight": "61.90", | |
"TenderVolume": "58.27", | |
"LoadVolume": "45.93", | |
"Checkpoint": { | |
"Signature": "NEIRA ZAMBRANO", | |
"When": "2016-09-15 15:48", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOG ACCESSORIES FOOD DRY PASTA AND DIAPERS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "3747 PINE LAKE DR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "WESTON" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33332" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SONIA ESTHER PINA" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "NEIRA ZAMBRANO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "SECTOR DELICIAS VIEJAS CALLE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "MANAURE CASA #14 - AL LADO DE LA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "ESCUELA ARGELIA TERESA DE MARVAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "NEIRA ZAMBRANO" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "333.67" | |
}, | |
"SurchargeLineExtensionAmount": "3.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "3.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "37" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MACHALA", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MCH", | |
"BuyersId": { | |
"@identificationSchemeID": "MCH. MACHALA", | |
"#text": "MCH. MACHALA" | |
} | |
}, | |
"SellersLineId": "*****48840", | |
"SellersLineId_BE": "*****48840", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-13 15:21", | |
"What": "TP" | |
}, | |
"Eventdesc": "FORWARDED TO THIRD PARTY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "PABLO ROBERTO GARZON" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL AUTHORIZED AGENT SERVIENTREGA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CENTRO DE SOLUCIONES 3" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "STREET VELOZ AND BRASIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HOLD FOR ANTONY STALYN PINGOS PEREZ" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "060101" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ANTONY STALYN PINGO" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "38" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MACHALA", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MCH", | |
"BuyersId": { | |
"@identificationSchemeID": "MCH. MACHALA", | |
"#text": "MCH. MACHALA" | |
} | |
}, | |
"SellersLineId": "*****48840", | |
"SellersLineId_BE": "*****48840", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-13 15:21", | |
"What": "TP" | |
}, | |
"Eventdesc": "FORWARDED TO THIRD PARTY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "PABLO ROBERTO GARZON" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL AUTHORIZED AGENT SERVIENTREGA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CENTRO DE SOLUCIONES 3" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "STREET VELOZ AND BRASIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HOLD FOR ANTONY STALYN PINGOS PEREZ" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "060101" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ANTONY STALYN PINGO" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "39" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MEDELLIN", | |
"DestinationCountryCode": "CO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MDE", | |
"BuyersId": { | |
"@identificationSchemeID": "MDE. MEDELLIN", | |
"#text": "MDE. MEDELLIN" | |
} | |
}, | |
"SellersLineId": "*****05653", | |
"SellersLineId_BE": "*****05653", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "SHAINA", | |
"When": "2016-09-13 14:54", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "800 SW 129TH PL APT 201" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33184" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "IDALGISA LARRAURI FERREIR" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "SITES" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CARRERA 45 NO 5-15 #8E" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MEDELLIN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "050022" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "CO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SHAINA A MEJIA" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "40" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MEDELLIN", | |
"DestinationCountryCode": "CO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MDE", | |
"BuyersId": { | |
"@identificationSchemeID": "MDE. MEDELLIN", | |
"#text": "MDE. MEDELLIN" | |
} | |
}, | |
"SellersLineId": "*****05653", | |
"SellersLineId_BE": "*****05653", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "SHAINA", | |
"When": "2016-09-13 14:54", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "800 SW 129TH PL APT 201" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33184" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "IDALGISA LARRAURI FERREIR" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "SITES" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CARRERA 45 NO 5-15 #8E" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MEDELLIN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "050022" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "CO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SHAINA A MEJIA" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "41" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PANAMA CITY", | |
"DestinationCountryCode": "PA", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PTY", | |
"BuyersId": { | |
"@identificationSchemeID": "PTY. PANAMA CITY", | |
"#text": "PTY. PANAMA CITY" | |
} | |
}, | |
"SellersLineId": "*****09551", | |
"SellersLineId_BE": "*****09551", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "LEONARDO", | |
"When": "2016-09-13 13:39", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "130 SW 23RD RD" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33129" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MIAMI SNACK AND BEVERAGES" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DISTRIBUIDORA UNICO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CENTRO COMERCIAL LOS PUEBLOS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "LOCAL A-5" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "PANAMA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "FERNANDO CHONG" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "42" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PANAMA CITY", | |
"DestinationCountryCode": "PA", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PTY", | |
"BuyersId": { | |
"@identificationSchemeID": "PTY. PANAMA CITY", | |
"#text": "PTY. PANAMA CITY" | |
} | |
}, | |
"SellersLineId": "*****09551", | |
"SellersLineId_BE": "*****09551", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "LEONARDO", | |
"When": "2016-09-13 13:39", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "130 SW 23RD RD" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33129" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MIAMI SNACK AND BEVERAGES" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DISTRIBUIDORA UNICO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CENTRO COMERCIAL LOS PUEBLOS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "LOCAL A-5" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "PANAMA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "FERNANDO CHONG" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "43" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "SAMPLE CATALOGUE", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SANTO DOMINGO", | |
"DestinationCountryCode": "DO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SDQ", | |
"BuyersId": { | |
"@identificationSchemeID": "SDQ. SANTO DOMINGO", | |
"#text": "SDQ. SANTO DOMINGO" | |
} | |
}, | |
"SellersLineId": "*****70145", | |
"SellersLineId_BE": "*****70145", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "2.00", | |
"LoadWeight": "0.50", | |
"TenderVolume": "0.86", | |
"LoadVolume": "0.80", | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-14 08:34", | |
"What": "TP" | |
}, | |
"Eventdesc": "FORWARDED TO THIRD PARTY", | |
"Goodsdesc": "SAMPLE CATALOGUE", | |
"Dimensions": null, | |
"Quantity": "1.00", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "11553 SW 26TH PL APT 308" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIRAMAR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33025" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "TIERRA TROPICAL CORP" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "MULTIAGRO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE EUGENIO MARIA DE HOSTOS #1" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "BANI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "DO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MULTIAGRO" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "26.06", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "26.06" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "44" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SANTO DOMINGO", | |
"DestinationCountryCode": "DO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SDQ", | |
"BuyersId": { | |
"@identificationSchemeID": "SDQ. SANTO DOMINGO", | |
"#text": "SDQ. SANTO DOMINGO" | |
} | |
}, | |
"SellersLineId": "*****70145", | |
"SellersLineId_BE": "*****70145", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "2.00", | |
"LoadWeight": "0.50", | |
"TenderVolume": "0.86", | |
"LoadVolume": "0.80", | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-14 08:34", | |
"What": "TP" | |
}, | |
"Eventdesc": "FORWARDED TO THIRD PARTY", | |
"Goodsdesc": "SAMPLE CATALOGUE", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "11553 SW 26TH PL APT 308" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIRAMAR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33025" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "TIERRA TROPICAL CORP" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "MULTIAGRO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE EUGENIO MARIA DE HOSTOS #1" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "BANI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "DO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MULTIAGRO" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "26.58" | |
}, | |
"SurchargeLineExtensionAmount": "0.52", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.52" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "45" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "BOAT REPAIR SPARE PART WATER PUMP", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SANTO DOMINGO", | |
"DestinationCountryCode": "DO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SDQ", | |
"BuyersId": { | |
"@identificationSchemeID": "SDQ. SANTO DOMINGO", | |
"#text": "SDQ. SANTO DOMINGO" | |
} | |
}, | |
"SellersLineId": "*****80325", | |
"SellersLineId_BE": "*****80325", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "39.00", | |
"LoadWeight": "39.00", | |
"TenderVolume": "58.27", | |
"LoadVolume": "21.32", | |
"Checkpoint": { | |
"Signature": "KATHERINE", | |
"When": "2016-09-15 09:51", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "BOAT REPAIR SPARE PART WATER PUMP", | |
"Dimensions": null, | |
"Quantity": "39.00", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7939 EAST DR APT 803" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "NORTH BAY VILLAGE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33141" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SFC APPAREL LLC" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "SPORT FISHING BOAT SWAGGER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "BARCO EN TRANSITO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "MARINA CAP CANA; DOCK #C-11" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "JUANILLO, HIGUEY, 23000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "DO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "AARON J ROSENBERG" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "140.58", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "140.58" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "46" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SANTO DOMINGO", | |
"DestinationCountryCode": "DO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SDQ", | |
"BuyersId": { | |
"@identificationSchemeID": "SDQ. SANTO DOMINGO", | |
"#text": "SDQ. SANTO DOMINGO" | |
} | |
}, | |
"SellersLineId": "*****80325", | |
"SellersLineId_BE": "*****80325", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "39.00", | |
"LoadWeight": "39.00", | |
"TenderVolume": "58.27", | |
"LoadVolume": "21.32", | |
"Checkpoint": { | |
"Signature": "KATHERINE", | |
"When": "2016-09-15 09:51", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "BOAT REPAIR SPARE PART WATER PUMP", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7939 EAST DR APT 803" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "NORTH BAY VILLAGE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33141" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SFC APPAREL LLC" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "SPORT FISHING BOAT SWAGGER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "BARCO EN TRANSITO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "MARINA CAP CANA; DOCK #C-11" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "JUANILLO, HIGUEY, 23000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "DO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "AARON J ROSENBERG" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "2.81", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "2.81" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "47" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SANTO DOMINGO", | |
"DestinationCountryCode": "DO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SDQ", | |
"BuyersId": { | |
"@identificationSchemeID": "SDQ. SANTO DOMINGO", | |
"#text": "SDQ. SANTO DOMINGO" | |
} | |
}, | |
"SellersLineId": "*****80325", | |
"SellersLineId_BE": "*****80325", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "39.00", | |
"LoadWeight": "39.00", | |
"TenderVolume": "58.27", | |
"LoadVolume": "21.32", | |
"Checkpoint": { | |
"Signature": "KATHERINE", | |
"When": "2016-09-15 09:51", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "BOAT REPAIR SPARE PART WATER PUMP", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7939 EAST DR APT 803" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "NORTH BAY VILLAGE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33141" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SFC APPAREL LLC" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "SPORT FISHING BOAT SWAGGER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "BARCO EN TRANSITO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "MARINA CAP CANA; DOCK #C-11" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "JUANILLO, HIGUEY, 23000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "DO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "AARON J ROSENBERG" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "146.39" | |
}, | |
"SurchargeLineExtensionAmount": "3.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "3.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "48" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "USED TABLET FOR PERSONAL USE", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SANTIAGO", | |
"DestinationCountryCode": "DO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "STI", | |
"BuyersId": { | |
"@identificationSchemeID": "STI. SANTIAGO", | |
"#text": "STI. SANTIAGO" | |
} | |
}, | |
"SellersLineId": "*****75825", | |
"SellersLineId_BE": "*****75825", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "3.00", | |
"LoadWeight": "2.40", | |
"TenderVolume": "2.43", | |
"LoadVolume": "3.09", | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-14 10:51", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "USED TABLET FOR PERSONAL USE", | |
"Dimensions": "13.00 x 11.00 x 3.00", | |
"Quantity": "4.00", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "3545 NW 83RD TER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33147" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "NURIA MENDOZA GONZALEZ" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL DOMINICANA SA - SANTIAGO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AV. ESTRELLA SADHALA 11" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "HOLD FOR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DOMINGA MOQUETE REYES" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "DO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DOMINGA M REYES" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "38.69", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "38.69" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "49" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SANTIAGO", | |
"DestinationCountryCode": "DO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "STI", | |
"BuyersId": { | |
"@identificationSchemeID": "STI. SANTIAGO", | |
"#text": "STI. SANTIAGO" | |
} | |
}, | |
"SellersLineId": "*****75825", | |
"SellersLineId_BE": "*****75825", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "3.00", | |
"LoadWeight": "2.40", | |
"TenderVolume": "2.43", | |
"LoadVolume": "3.09", | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-14 10:51", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "USED TABLET FOR PERSONAL USE", | |
"Dimensions": "13.00 x 11.00 x 3.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "3545 NW 83RD TER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33147" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "NURIA MENDOZA GONZALEZ" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL DOMINICANA SA - SANTIAGO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AV. ESTRELLA SADHALA 11" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "HOLD FOR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DOMINGA MOQUETE REYES" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "DO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DOMINGA M REYES" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "0.77", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.77" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "50" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SANTIAGO", | |
"DestinationCountryCode": "DO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "STI", | |
"BuyersId": { | |
"@identificationSchemeID": "STI. SANTIAGO", | |
"#text": "STI. SANTIAGO" | |
} | |
}, | |
"SellersLineId": "*****75825", | |
"SellersLineId_BE": "*****75825", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "3.00", | |
"LoadWeight": "2.40", | |
"TenderVolume": "2.43", | |
"LoadVolume": "3.09", | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-14 10:51", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "USED TABLET FOR PERSONAL USE", | |
"Dimensions": "13.00 x 11.00 x 3.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "3545 NW 83RD TER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33147" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "NURIA MENDOZA GONZALEZ" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL DOMINICANA SA - SANTIAGO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AV. ESTRELLA SADHALA 11" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "HOLD FOR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DOMINGA MOQUETE REYES" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "DO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DOMINGA M REYES" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "42.46" | |
}, | |
"SurchargeLineExtensionAmount": "3.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "3.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "51" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "SAMPLE WOOD PIECE", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "V", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "VENICE", | |
"DestinationCountryCode": "IT", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "VCE", | |
"BuyersId": { | |
"@identificationSchemeID": "VCE. VENICE", | |
"#text": "VCE. VENICE" | |
} | |
}, | |
"SellersLineId": "*****09556", | |
"SellersLineId_BE": "*****09556", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "1.20", | |
"TenderVolume": "1.29", | |
"LoadVolume": "1.30", | |
"Checkpoint": { | |
"Signature": "FAVARO", | |
"When": "2016-09-14 13:12", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "SAMPLE WOOD PIECE", | |
"Dimensions": "12.00 x 15.00 x 1.00", | |
"Quantity": "2.00", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "5551 NW 112TH AVE APT 111" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33178" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "GIANI FURLAN" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "SPAZIO LEGNO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "VIA TREVISO 88" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SCORZE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "30037" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "IT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MONICA" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "38.04", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "38.04" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "52" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-12" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "V", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "VENICE", | |
"DestinationCountryCode": "IT", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "VCE", | |
"BuyersId": { | |
"@identificationSchemeID": "VCE. VENICE", | |
"#text": "VCE. VENICE" | |
} | |
}, | |
"SellersLineId": "*****09556", | |
"SellersLineId_BE": "*****09556", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "1.20", | |
"TenderVolume": "1.29", | |
"LoadVolume": "1.30", | |
"Checkpoint": { | |
"Signature": "FAVARO", | |
"When": "2016-09-14 13:12", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "SAMPLE WOOD PIECE", | |
"Dimensions": "12.00 x 15.00 x 1.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-12", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "5551 NW 112TH AVE APT 111" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33178" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "GIANI FURLAN" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "SPAZIO LEGNO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "VIA TREVISO 88" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SCORZE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "30037" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "IT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MONICA" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "38.80" | |
}, | |
"SurchargeLineExtensionAmount": "0.76", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.76" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "53" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "BARRANQUILLA", | |
"DestinationCountryCode": "CO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "BAQ", | |
"BuyersId": { | |
"@identificationSchemeID": "BAQ. BARRANQUILLA", | |
"#text": "BAQ. BARRANQUILLA" | |
} | |
}, | |
"SellersLineId": "*****96236", | |
"SellersLineId_BE": "*****96236", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "NURYS SANCHEZ", | |
"When": "2016-09-14 15:45", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "5900 NW 97TH AVE UNIT 14" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33178" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "EASY FOODS INC" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "AGRODEX INTERNATIONAL SAS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE 106 N 50-67-2D" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "BARRANQUILLA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "080001" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "CO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KARINA VERGARA" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "54" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "BARRANQUILLA", | |
"DestinationCountryCode": "CO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "BAQ", | |
"BuyersId": { | |
"@identificationSchemeID": "BAQ. BARRANQUILLA", | |
"#text": "BAQ. BARRANQUILLA" | |
} | |
}, | |
"SellersLineId": "*****96236", | |
"SellersLineId_BE": "*****96236", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "NURYS SANCHEZ", | |
"When": "2016-09-14 15:45", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "5900 NW 97TH AVE UNIT 14" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33178" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "EASY FOODS INC" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "AGRODEX INTERNATIONAL SAS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE 106 N 50-67-2D" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "BARRANQUILLA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "080001" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "CO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KARINA VERGARA" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "55" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "CUENCA", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "CUE", | |
"BuyersId": { | |
"@identificationSchemeID": "CUE. CUENCA", | |
"#text": "CUE. CUENCA" | |
} | |
}, | |
"SellersLineId": "*****61912", | |
"SellersLineId_BE": "*****61912", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-15 07:55", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "TEODORO MARCELO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL EXPRESS (ECUADOR) S.A." | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "ALFONSO CORDERO 3-53 AND MANUEL J" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "CALLE - HOLD FOR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "LAURA ESPERANZA MOSCOSO TOLA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "010101" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "LAURA ESPERANZA MOS" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "56" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "CUENCA", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "CUE", | |
"BuyersId": { | |
"@identificationSchemeID": "CUE. CUENCA", | |
"#text": "CUE. CUENCA" | |
} | |
}, | |
"SellersLineId": "*****61912", | |
"SellersLineId_BE": "*****61912", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-15 07:55", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "TEODORO MARCELO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL EXPRESS (ECUADOR) S.A." | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "ALFONSO CORDERO 3-53 AND MANUEL J" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "CALLE - HOLD FOR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "LAURA ESPERANZA MOSCOSO TOLA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "010101" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "LAURA ESPERANZA MOS" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "57" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MANAGUA", | |
"DestinationCountryCode": "NI", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MGA", | |
"BuyersId": { | |
"@identificationSchemeID": "MGA. MANAGUA", | |
"#text": "MGA. MANAGUA" | |
} | |
}, | |
"SellersLineId": "*****79136", | |
"SellersLineId_BE": "*****79136", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-16 10:37", | |
"What": "TP" | |
}, | |
"Eventdesc": "FORWARDED TO THIRD PARTY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "5 OLIVE DR APT 27" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HIALEAH" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33010" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ROSA CAROLINA LAZO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "GUILLERMO S. SOZA MARTINEZ" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CENTRO DE SALUD 1/2 AL SUR 1/2 AL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "ESTE CASA DE KARLA SOZA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "BARRIO LUCIA MANTILLA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "NI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "GUILLERMO S. SOZA M" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "58" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MANAGUA", | |
"DestinationCountryCode": "NI", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MGA", | |
"BuyersId": { | |
"@identificationSchemeID": "MGA. MANAGUA", | |
"#text": "MGA. MANAGUA" | |
} | |
}, | |
"SellersLineId": "*****79136", | |
"SellersLineId_BE": "*****79136", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-16 10:37", | |
"What": "TP" | |
}, | |
"Eventdesc": "FORWARDED TO THIRD PARTY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "5 OLIVE DR APT 27" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HIALEAH" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33010" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ROSA CAROLINA LAZO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "GUILLERMO S. SOZA MARTINEZ" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CENTRO DE SALUD 1/2 AL SUR 1/2 AL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "ESTE CASA DE KARLA SOZA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "BARRIO LUCIA MANTILLA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "NI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "GUILLERMO S. SOZA M" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "59" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SANTO DOMINGO", | |
"DestinationCountryCode": "DO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SDQ", | |
"BuyersId": { | |
"@identificationSchemeID": "SDQ. SANTO DOMINGO", | |
"#text": "SDQ. SANTO DOMINGO" | |
} | |
}, | |
"SellersLineId": "*****13486", | |
"SellersLineId_BE": "*****13486", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-15 09:59", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #216" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ALFA CARGO FORWARDERS COR" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "YONATHAN JAVIER HERNANDEZ" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE 2 DA, MANZANA C NO. 1" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "BRIZAS DEL NORTE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DISTRITO NACIONAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "DO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "YONATHAN JAVIER HER" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "14.19", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "14.19" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "60" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SANTO DOMINGO", | |
"DestinationCountryCode": "DO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SDQ", | |
"BuyersId": { | |
"@identificationSchemeID": "SDQ. SANTO DOMINGO", | |
"#text": "SDQ. SANTO DOMINGO" | |
} | |
}, | |
"SellersLineId": "*****13486", | |
"SellersLineId_BE": "*****13486", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-15 09:59", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #216" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ALFA CARGO FORWARDERS COR" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "YONATHAN JAVIER HERNANDEZ" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE 2 DA, MANZANA C NO. 1" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "BRIZAS DEL NORTE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DISTRITO NACIONAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "DO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "YONATHAN JAVIER HER" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "14.47" | |
}, | |
"SurchargeLineExtensionAmount": "0.28", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.28" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "61" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "PHONES", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SEOUL", | |
"DestinationCountryCode": "KR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SEL", | |
"BuyersId": { | |
"@identificationSchemeID": "SEL. SEOUL", | |
"#text": "SEL. SEOUL" | |
} | |
}, | |
"SellersLineId": "*****50373", | |
"SellersLineId_BE": "*****50373", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "3.00", | |
"LoadWeight": "2.10", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.85", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "PHONES", | |
"Dimensions": "6.00 x 11.00 x 6.00", | |
"Quantity": "3.00", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIM PHIL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHEIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "222 ITAEWON-RO YONGSAN-GU" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SEOUL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "140-739" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "KR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DONG JUN SHIN" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "41.44", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "41.44" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "62" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SEOUL", | |
"DestinationCountryCode": "KR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SEL", | |
"BuyersId": { | |
"@identificationSchemeID": "SEL. SEOUL", | |
"#text": "SEL. SEOUL" | |
} | |
}, | |
"SellersLineId": "*****50373", | |
"SellersLineId_BE": "*****50373", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "3.00", | |
"LoadWeight": "2.10", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.85", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "PHONES", | |
"Dimensions": "6.00 x 11.00 x 6.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIM PHIL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHEIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "222 ITAEWON-RO YONGSAN-GU" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SEOUL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "140-739" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "KR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DONG JUN SHIN" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "0.83", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.83" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "63" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SEOUL", | |
"DestinationCountryCode": "KR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SEL", | |
"BuyersId": { | |
"@identificationSchemeID": "SEL. SEOUL", | |
"#text": "SEL. SEOUL" | |
} | |
}, | |
"SellersLineId": "*****50373", | |
"SellersLineId_BE": "*****50373", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "3.00", | |
"LoadWeight": "2.10", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.85", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "PHONES", | |
"Dimensions": "6.00 x 11.00 x 6.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIM PHIL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHEIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "222 ITAEWON-RO YONGSAN-GU" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SEOUL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "140-739" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "KR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DONG JUN SHIN" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "62.27" | |
}, | |
"SurchargeLineExtensionAmount": "20.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "20.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "64" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "PHONES", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SEOUL", | |
"DestinationCountryCode": "KR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SEL", | |
"BuyersId": { | |
"@identificationSchemeID": "SEL. SEOUL", | |
"#text": "SEL. SEOUL" | |
} | |
}, | |
"SellersLineId": "*****55855", | |
"SellersLineId_BE": "*****55855", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "3.00", | |
"LoadWeight": "2.10", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.59", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "PHONES", | |
"Dimensions": "6.00 x 10.00 x 6.00", | |
"Quantity": "3.00", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIM PHIL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHEIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "222 ITAEWON-RO YONGSAN-GU" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SEOUL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "140-739" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "KR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DONG JUN SHIN" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "41.44", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "41.44" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "65" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SEOUL", | |
"DestinationCountryCode": "KR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SEL", | |
"BuyersId": { | |
"@identificationSchemeID": "SEL. SEOUL", | |
"#text": "SEL. SEOUL" | |
} | |
}, | |
"SellersLineId": "*****55855", | |
"SellersLineId_BE": "*****55855", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "3.00", | |
"LoadWeight": "2.10", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.59", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "PHONES", | |
"Dimensions": "6.00 x 10.00 x 6.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIM PHIL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHEIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "222 ITAEWON-RO YONGSAN-GU" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SEOUL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "140-739" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "KR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DONG JUN SHIN" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "0.83", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.83" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "66" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SEOUL", | |
"DestinationCountryCode": "KR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SEL", | |
"BuyersId": { | |
"@identificationSchemeID": "SEL. SEOUL", | |
"#text": "SEL. SEOUL" | |
} | |
}, | |
"SellersLineId": "*****55855", | |
"SellersLineId_BE": "*****55855", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "3.00", | |
"LoadWeight": "2.10", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.59", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "PHONES", | |
"Dimensions": "6.00 x 10.00 x 6.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIM PHIL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHEIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "222 ITAEWON-RO YONGSAN-GU" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SEOUL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "140-739" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "KR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DONG JUN SHIN" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "62.27" | |
}, | |
"SurchargeLineExtensionAmount": "20.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "20.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "67" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "PHONES AND CHARGERS", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SEOUL", | |
"DestinationCountryCode": "KR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SEL", | |
"BuyersId": { | |
"@identificationSchemeID": "SEL. SEOUL", | |
"#text": "SEL. SEOUL" | |
} | |
}, | |
"SellersLineId": "*****62100", | |
"SellersLineId_BE": "*****62100", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "3.00", | |
"LoadWeight": "2.00", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.59", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "PHONES AND CHARGERS", | |
"Dimensions": "6.00 x 10.00 x 6.00", | |
"Quantity": "3.00", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIM PHIL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHEIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "222 ITAEWON-RO YONGSAN-GU" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SEOUL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "140-739" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "KR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DONG JUN SHIN" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "41.44", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "41.44" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "68" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SEOUL", | |
"DestinationCountryCode": "KR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SEL", | |
"BuyersId": { | |
"@identificationSchemeID": "SEL. SEOUL", | |
"#text": "SEL. SEOUL" | |
} | |
}, | |
"SellersLineId": "*****62100", | |
"SellersLineId_BE": "*****62100", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "3.00", | |
"LoadWeight": "2.00", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.59", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "PHONES AND CHARGERS", | |
"Dimensions": "6.00 x 10.00 x 6.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIM PHIL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHEIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "222 ITAEWON-RO YONGSAN-GU" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SEOUL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "140-739" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "KR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DONG JUN SHIN" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "0.83", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.83" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "69" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SEOUL", | |
"DestinationCountryCode": "KR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SEL", | |
"BuyersId": { | |
"@identificationSchemeID": "SEL. SEOUL", | |
"#text": "SEL. SEOUL" | |
} | |
}, | |
"SellersLineId": "*****62100", | |
"SellersLineId_BE": "*****62100", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "3.00", | |
"LoadWeight": "2.00", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.59", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "PHONES AND CHARGERS", | |
"Dimensions": "6.00 x 10.00 x 6.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIM PHIL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHEIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "222 ITAEWON-RO YONGSAN-GU" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SEOUL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "140-739" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "KR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DONG JUN SHIN" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "64.27" | |
}, | |
"SurchargeLineExtensionAmount": "22.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "22.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "70" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "PHONES AND CHARGERS", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SEOUL", | |
"DestinationCountryCode": "KR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SEL", | |
"BuyersId": { | |
"@identificationSchemeID": "SEL. SEOUL", | |
"#text": "SEL. SEOUL" | |
} | |
}, | |
"SellersLineId": "*****68595", | |
"SellersLineId_BE": "*****68595", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "4.00", | |
"LoadWeight": "3.20", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.85", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "PHONES AND CHARGERS", | |
"Dimensions": null, | |
"Quantity": "4.00", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIM PHIL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHEIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "222 ITAEWON-RO YONGSAN-GU" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SEOUL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "140-739" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "KR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DONG JUN SHIN" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "47.2", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "47.2" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "71" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SEOUL", | |
"DestinationCountryCode": "KR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SEL", | |
"BuyersId": { | |
"@identificationSchemeID": "SEL. SEOUL", | |
"#text": "SEL. SEOUL" | |
} | |
}, | |
"SellersLineId": "*****68595", | |
"SellersLineId_BE": "*****68595", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "4.00", | |
"LoadWeight": "3.20", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.85", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "PHONES AND CHARGERS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIM PHIL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHEIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "222 ITAEWON-RO YONGSAN-GU" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SEOUL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "140-739" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "KR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DONG JUN SHIN" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "0.94", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.94" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "72" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SEOUL", | |
"DestinationCountryCode": "KR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SEL", | |
"BuyersId": { | |
"@identificationSchemeID": "SEL. SEOUL", | |
"#text": "SEL. SEOUL" | |
} | |
}, | |
"SellersLineId": "*****68595", | |
"SellersLineId_BE": "*****68595", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "4.00", | |
"LoadWeight": "3.20", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.85", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "PHONES AND CHARGERS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIM PHIL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHEIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "222 ITAEWON-RO YONGSAN-GU" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SEOUL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "140-739" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "KR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DONG JUN SHIN" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "69.14" | |
}, | |
"SurchargeLineExtensionAmount": "21.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "21.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "73" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "CAMERA", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SEOUL", | |
"DestinationCountryCode": "KR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SEL", | |
"BuyersId": { | |
"@identificationSchemeID": "SEL. SEOUL", | |
"#text": "SEL. SEOUL" | |
} | |
}, | |
"SellersLineId": "*****73344", | |
"SellersLineId_BE": "*****73344", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "4.00", | |
"LoadWeight": "3.70", | |
"TenderVolume": "9.58", | |
"LoadVolume": "7.91", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "CAMERA", | |
"Dimensions": "10.00 x 11.00 x 10.00", | |
"Quantity": "8.00", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIM PHIL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHEIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "222 ITAEWON-RO YONGSAN-GU" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SEOUL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "140-739" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "KR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DONG JUN SHIN" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "64.91", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "64.91" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "74" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SEOUL", | |
"DestinationCountryCode": "KR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SEL", | |
"BuyersId": { | |
"@identificationSchemeID": "SEL. SEOUL", | |
"#text": "SEL. SEOUL" | |
} | |
}, | |
"SellersLineId": "*****73344", | |
"SellersLineId_BE": "*****73344", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "4.00", | |
"LoadWeight": "3.70", | |
"TenderVolume": "9.58", | |
"LoadVolume": "7.91", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "CAMERA", | |
"Dimensions": "10.00 x 11.00 x 10.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIM PHIL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHEIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "222 ITAEWON-RO YONGSAN-GU" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SEOUL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "140-739" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "KR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DONG JUN SHIN" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "1.3", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "1.3" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "75" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SEOUL", | |
"DestinationCountryCode": "KR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SEL", | |
"BuyersId": { | |
"@identificationSchemeID": "SEL. SEOUL", | |
"#text": "SEL. SEOUL" | |
} | |
}, | |
"SellersLineId": "*****73344", | |
"SellersLineId_BE": "*****73344", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "4.00", | |
"LoadWeight": "3.70", | |
"TenderVolume": "9.58", | |
"LoadVolume": "7.91", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "CAMERA", | |
"Dimensions": "10.00 x 11.00 x 10.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "KIM PHIL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHEIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "222 ITAEWON-RO YONGSAN-GU" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SEOUL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "140-739" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "KR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DONG JUN SHIN" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "74.21" | |
}, | |
"SurchargeLineExtensionAmount": "8.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "8.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "76" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "ELECTRONIC REPAIR PART COMPANY REG *****06864", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "HO CHI MINH", | |
"DestinationCountryCode": "VN", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SGN", | |
"BuyersId": { | |
"@identificationSchemeID": "SGN. HO CHI MINH", | |
"#text": "SGN. HO CHI MINH" | |
} | |
}, | |
"SellersLineId": "*****63352", | |
"SellersLineId_BE": "*****63352", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.50", | |
"TenderVolume": "0.86", | |
"LoadVolume": "0.80", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "ELECTRONIC REPAIR PART COMPANY REG *****06864", | |
"Dimensions": null, | |
"Quantity": "1.00", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "3006 NW 72ND AVE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "TECHSUPPLY USA CORP" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "IFIXIT COMPANY LIMITED" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "61/4 THONG NHAT P.11 GO VAP" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "POSTAL CODE 700000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HO CHI MINH" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "LE NAM HUAN" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "34.73", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "34.73" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "77" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "HO CHI MINH", | |
"DestinationCountryCode": "VN", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SGN", | |
"BuyersId": { | |
"@identificationSchemeID": "SGN. HO CHI MINH", | |
"#text": "SGN. HO CHI MINH" | |
} | |
}, | |
"SellersLineId": "*****63352", | |
"SellersLineId_BE": "*****63352", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.50", | |
"TenderVolume": "0.86", | |
"LoadVolume": "0.80", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "ELECTRONIC REPAIR PART COMPANY REG *****06864", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "3006 NW 72ND AVE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "TECHSUPPLY USA CORP" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "IFIXIT COMPANY LIMITED" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "61/4 THONG NHAT P.11 GO VAP" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "POSTAL CODE 700000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HO CHI MINH" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "LE NAM HUAN" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "0.69", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.69" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "78" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "HO CHI MINH", | |
"DestinationCountryCode": "VN", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SGN", | |
"BuyersId": { | |
"@identificationSchemeID": "SGN. HO CHI MINH", | |
"#text": "SGN. HO CHI MINH" | |
} | |
}, | |
"SellersLineId": "*****63352", | |
"SellersLineId_BE": "*****63352", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.50", | |
"TenderVolume": "0.86", | |
"LoadVolume": "0.80", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "ELECTRONIC REPAIR PART COMPANY REG *****06864", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "3006 NW 72ND AVE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "TECHSUPPLY USA CORP" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "IFIXIT COMPANY LIMITED" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "61/4 THONG NHAT P.11 GO VAP" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "POSTAL CODE 700000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HO CHI MINH" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "LE NAM HUAN" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "38.42" | |
}, | |
"SurchargeLineExtensionAmount": "3.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "3.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "79" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "SAMPLE BEVERAGES BEBIDAS DE MUESTRA", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "A", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "QUITO", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "UIO", | |
"BuyersId": { | |
"@identificationSchemeID": "UIO. QUITO", | |
"#text": "UIO. QUITO" | |
} | |
}, | |
"SellersLineId": "*****00504", | |
"SellersLineId_BE": "*****00504", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "8.00", | |
"LoadWeight": "7.90", | |
"TenderVolume": "3.68", | |
"LoadVolume": "4.66", | |
"Checkpoint": { | |
"Signature": "FERNANDA MEZA", | |
"When": "2016-09-15 10:09", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "SAMPLE BEVERAGES BEBIDAS DE MUESTRA", | |
"Dimensions": null, | |
"Quantity": "8.00", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "1022 BLUEWOOD TER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "WESTON" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33327" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JULIO X PONCE" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "PROGLOGAL S.A" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE A LOCAL #10 Y AVE ELOY ALFARO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "QUITO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "170201" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "THOMAS WRIGHT" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "68.4", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "68.4" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "80" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-13" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "A", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "QUITO", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "UIO", | |
"BuyersId": { | |
"@identificationSchemeID": "UIO. QUITO", | |
"#text": "UIO. QUITO" | |
} | |
}, | |
"SellersLineId": "*****00504", | |
"SellersLineId_BE": "*****00504", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "8.00", | |
"LoadWeight": "7.90", | |
"TenderVolume": "3.68", | |
"LoadVolume": "4.66", | |
"Checkpoint": { | |
"Signature": "FERNANDA MEZA", | |
"When": "2016-09-15 10:09", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "SAMPLE BEVERAGES BEBIDAS DE MUESTRA", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-13", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "1022 BLUEWOOD TER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "WESTON" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33327" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JULIO X PONCE" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "PROGLOGAL S.A" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE A LOCAL #10 Y AVE ELOY ALFARO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "QUITO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "170201" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "THOMAS WRIGHT" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "69.77" | |
}, | |
"SurchargeLineExtensionAmount": "1.37", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "1.37" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "81" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "VALVULAS DE BOTON QTY 23", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "BARRANQUILLA", | |
"DestinationCountryCode": "CO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "BAQ", | |
"BuyersId": { | |
"@identificationSchemeID": "BAQ. BARRANQUILLA", | |
"#text": "BAQ. BARRANQUILLA" | |
} | |
}, | |
"SellersLineId": "*****17511", | |
"SellersLineId_BE": "*****17511", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "12.00", | |
"LoadWeight": "11.30", | |
"TenderVolume": "8.71", | |
"LoadVolume": "7.91", | |
"Checkpoint": { | |
"Signature": "LINDA ANILLO", | |
"When": "2016-09-16 08:58", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "VALVULAS DE BOTON QTY 23", | |
"Dimensions": null, | |
"Quantity": "12.00", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7509 NW 55TH ST" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33166" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JIMENEZ ENT. GROUP CORP" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CLAFER SAS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE 77 #65-37 OFC 210" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "BARRANQUILLA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "080001" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "CO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CLAUDIO" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "95.89", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "95.89" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "82" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "BARRANQUILLA", | |
"DestinationCountryCode": "CO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "BAQ", | |
"BuyersId": { | |
"@identificationSchemeID": "BAQ. BARRANQUILLA", | |
"#text": "BAQ. BARRANQUILLA" | |
} | |
}, | |
"SellersLineId": "*****17511", | |
"SellersLineId_BE": "*****17511", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "12.00", | |
"LoadWeight": "11.30", | |
"TenderVolume": "8.71", | |
"LoadVolume": "7.91", | |
"Checkpoint": { | |
"Signature": "LINDA ANILLO", | |
"When": "2016-09-16 08:58", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "VALVULAS DE BOTON QTY 23", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7509 NW 55TH ST" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33166" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JIMENEZ ENT. GROUP CORP" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CLAFER SAS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE 77 #65-37 OFC 210" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "BARRANQUILLA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "080001" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "CO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CLAUDIO" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "1.92", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "1.92" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "83" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "BARRANQUILLA", | |
"DestinationCountryCode": "CO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "BAQ", | |
"BuyersId": { | |
"@identificationSchemeID": "BAQ. BARRANQUILLA", | |
"#text": "BAQ. BARRANQUILLA" | |
} | |
}, | |
"SellersLineId": "*****17511", | |
"SellersLineId_BE": "*****17511", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "12.00", | |
"LoadWeight": "11.30", | |
"TenderVolume": "8.71", | |
"LoadVolume": "7.91", | |
"Checkpoint": { | |
"Signature": "LINDA ANILLO", | |
"When": "2016-09-16 08:58", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "VALVULAS DE BOTON QTY 23", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7509 NW 55TH ST" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33166" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JIMENEZ ENT. GROUP CORP" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CLAFER SAS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE 77 #65-37 OFC 210" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "BARRANQUILLA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "080001" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "CO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CLAUDIO" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "100.81" | |
}, | |
"SurchargeLineExtensionAmount": "3.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "3.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "84" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "PERSONAL READING GLASSES", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "LUANDA", | |
"DestinationCountryCode": "AO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "LAD", | |
"BuyersId": { | |
"@identificationSchemeID": "LAD. LUANDA", | |
"#text": "LAD. LUANDA" | |
} | |
}, | |
"SellersLineId": "*****48684", | |
"SellersLineId_BE": "*****48684", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.40", | |
"TenderVolume": "0.86", | |
"LoadVolume": "0.80", | |
"Checkpoint": { | |
"Signature": "LUTUMBA", | |
"When": "2016-09-19 11:03", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "PERSONAL READING GLASSES", | |
"Dimensions": null, | |
"Quantity": "1.00", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "1845 NW 112TH AVE STE 195" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33172" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JOSE BLANCHARD DELGADO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "LEIBNITZ LUTUMBA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CASSENDA RUA 8 CASA 68" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "MAIANGA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "LUANDA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "AO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "LEIBNITZ LUTUMBA" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "59.62", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "59.62" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "85" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "LUANDA", | |
"DestinationCountryCode": "AO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "LAD", | |
"BuyersId": { | |
"@identificationSchemeID": "LAD. LUANDA", | |
"#text": "LAD. LUANDA" | |
} | |
}, | |
"SellersLineId": "*****48684", | |
"SellersLineId_BE": "*****48684", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.40", | |
"TenderVolume": "0.86", | |
"LoadVolume": "0.80", | |
"Checkpoint": { | |
"Signature": "LUTUMBA", | |
"When": "2016-09-19 11:03", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "PERSONAL READING GLASSES", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "1845 NW 112TH AVE STE 195" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33172" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JOSE BLANCHARD DELGADO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "LEIBNITZ LUTUMBA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CASSENDA RUA 8 CASA 68" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "MAIANGA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "LUANDA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "AO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "LEIBNITZ LUTUMBA" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "1.19", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "1.19" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "86" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "LUANDA", | |
"DestinationCountryCode": "AO", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "LAD", | |
"BuyersId": { | |
"@identificationSchemeID": "LAD. LUANDA", | |
"#text": "LAD. LUANDA" | |
} | |
}, | |
"SellersLineId": "*****48684", | |
"SellersLineId_BE": "*****48684", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.40", | |
"TenderVolume": "0.86", | |
"LoadVolume": "0.80", | |
"Checkpoint": { | |
"Signature": "LUTUMBA", | |
"When": "2016-09-19 11:03", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "PERSONAL READING GLASSES", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "1845 NW 112TH AVE STE 195" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33172" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JOSE BLANCHARD DELGADO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "LEIBNITZ LUTUMBA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CASSENDA RUA 8 CASA 68" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "MAIANGA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "LUANDA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "AO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "LEIBNITZ LUTUMBA" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "63.81" | |
}, | |
"SurchargeLineExtensionAmount": "3.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "3.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "87" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "LIMA", | |
"DestinationCountryCode": "PE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "LIM", | |
"BuyersId": { | |
"@identificationSchemeID": "LIM. LIMA", | |
"#text": "LIM. LIMA" | |
} | |
}, | |
"SellersLineId": "*****41090", | |
"SellersLineId_BE": "*****41090", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "EMMA LINDO 19983116", | |
"When": "2016-09-16 09:51", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "10860 NW 72ND ST" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33178" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "YVES JESUS ALIAGA LINDO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "EVA J LINDO ZARATE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE LAS CUCARDAS NO 113" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "SANTIAGO DE SURCO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "LIMA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "EVA J LINDO ZARATE" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "88" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "LIMA", | |
"DestinationCountryCode": "PE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "LIM", | |
"BuyersId": { | |
"@identificationSchemeID": "LIM. LIMA", | |
"#text": "LIM. LIMA" | |
} | |
}, | |
"SellersLineId": "*****41090", | |
"SellersLineId_BE": "*****41090", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "EMMA LINDO 19983116", | |
"When": "2016-09-16 09:51", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "10860 NW 72ND ST" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33178" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "YVES JESUS ALIAGA LINDO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "EVA J LINDO ZARATE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CALLE LAS CUCARDAS NO 113" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "SANTIAGO DE SURCO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "LIMA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "EVA J LINDO ZARATE" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "89" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MANAGUA", | |
"DestinationCountryCode": "NI", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MGA", | |
"BuyersId": { | |
"@identificationSchemeID": "MGA. MANAGUA", | |
"#text": "MGA. MANAGUA" | |
} | |
}, | |
"SellersLineId": "*****66275", | |
"SellersLineId_BE": "*****66275", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-16 11:43", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "2333 NW 24TH AVE APT 1" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33142" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MARIA CELESTE MONTIEL MOL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "EXPRESS CENTER LOS ROBLES" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CARRETERA A MASAYA KM 4 SEMAFOROS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "EMBAJADA DE MEXICO 25 MTS AL SUR." | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HOLD FOR ROSA GRACIELA LOPEZ MOLINA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "NI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ROSA GRACIELA LOPEZ" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "90" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MANAGUA", | |
"DestinationCountryCode": "NI", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MGA", | |
"BuyersId": { | |
"@identificationSchemeID": "MGA. MANAGUA", | |
"#text": "MGA. MANAGUA" | |
} | |
}, | |
"SellersLineId": "*****66275", | |
"SellersLineId_BE": "*****66275", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-16 11:43", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "2333 NW 24TH AVE APT 1" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33142" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MARIA CELESTE MONTIEL MOL" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "EXPRESS CENTER LOS ROBLES" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CARRETERA A MASAYA KM 4 SEMAFOROS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "EMBAJADA DE MEXICO 25 MTS AL SUR." | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HOLD FOR ROSA GRACIELA LOPEZ MOLINA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "NI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ROSA GRACIELA LOPEZ" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "91" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "DNA COLLECTION KIT NOT RESTRICTED", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PORT AU PRINCE", | |
"DestinationCountryCode": "HT", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PAP", | |
"BuyersId": { | |
"@identificationSchemeID": "PAP. PORT AU PRINCE", | |
"#text": "PAP. PORT AU PRINCE" | |
} | |
}, | |
"SellersLineId": "*****88342", | |
"SellersLineId_BE": "*****88342", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.30", | |
"TenderVolume": "0.86", | |
"LoadVolume": "1.00", | |
"Checkpoint": { | |
"Signature": "SERGIO CUESTA", | |
"When": "2016-09-16 10:07", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DNA COLLECTION KIT NOT RESTRICTED", | |
"Dimensions": null, | |
"Quantity": "1.00", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "2655 S LE JEUNE RD STE 203" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33134" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JOSE L GUTIERREZ-BIGOTTI" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "AMBASSADE D ESPAGNE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "RUE METELLUS 50" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "PETION-VILLE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "HT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SERGIO CUESTA FRANC" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "26.06", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "26.06" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "92" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PORT AU PRINCE", | |
"DestinationCountryCode": "HT", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PAP", | |
"BuyersId": { | |
"@identificationSchemeID": "PAP. PORT AU PRINCE", | |
"#text": "PAP. PORT AU PRINCE" | |
} | |
}, | |
"SellersLineId": "*****88342", | |
"SellersLineId_BE": "*****88342", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.30", | |
"TenderVolume": "0.86", | |
"LoadVolume": "1.00", | |
"Checkpoint": { | |
"Signature": "SERGIO CUESTA", | |
"When": "2016-09-16 10:07", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DNA COLLECTION KIT NOT RESTRICTED", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "2655 S LE JEUNE RD STE 203" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33134" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JOSE L GUTIERREZ-BIGOTTI" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "AMBASSADE D ESPAGNE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "RUE METELLUS 50" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "PETION-VILLE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "HT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SERGIO CUESTA FRANC" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "0.52", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.52" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "93" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PORT AU PRINCE", | |
"DestinationCountryCode": "HT", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PAP", | |
"BuyersId": { | |
"@identificationSchemeID": "PAP. PORT AU PRINCE", | |
"#text": "PAP. PORT AU PRINCE" | |
} | |
}, | |
"SellersLineId": "*****88342", | |
"SellersLineId_BE": "*****88342", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.30", | |
"TenderVolume": "0.86", | |
"LoadVolume": "1.00", | |
"Checkpoint": { | |
"Signature": "SERGIO CUESTA", | |
"When": "2016-09-16 10:07", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DNA COLLECTION KIT NOT RESTRICTED", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "2655 S LE JEUNE RD STE 203" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33134" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JOSE L GUTIERREZ-BIGOTTI" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "AMBASSADE D ESPAGNE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "RUE METELLUS 50" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "PETION-VILLE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "HT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SERGIO CUESTA FRANC" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "29.58" | |
}, | |
"SurchargeLineExtensionAmount": "3.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "3.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "94" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "TONER HP CF226 COMPUTER REPAIR PART 2PCS", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PORT AU PRINCE", | |
"DestinationCountryCode": "HT", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PAP", | |
"BuyersId": { | |
"@identificationSchemeID": "PAP. PORT AU PRINCE", | |
"#text": "PAP. PORT AU PRINCE" | |
} | |
}, | |
"SellersLineId": "*****82820", | |
"SellersLineId_BE": "*****82820", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "6.00", | |
"LoadWeight": "5.30", | |
"TenderVolume": "8.16", | |
"LoadVolume": "6.73", | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-15 17:32", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "TONER HP CF226 COMPUTER REPAIR PART 2PCS", | |
"Dimensions": "13.00 x 9.00 x 8.00", | |
"Quantity": "7.00", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "3100 NW 72ND AVE STE 114" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SUPERIOR COMPUTERS INC." | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL MAIN OFFICE COUNTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "# 17 BOULEVARD TOUSSAINT LOUVERTURE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": ", ANGLE RUE JN GILLES" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HOLD FOR EDOUARD PIERRE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "HT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "EDOUARD PIERRE" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "48.05", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "48.05" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "95" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PORT AU PRINCE", | |
"DestinationCountryCode": "HT", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PAP", | |
"BuyersId": { | |
"@identificationSchemeID": "PAP. PORT AU PRINCE", | |
"#text": "PAP. PORT AU PRINCE" | |
} | |
}, | |
"SellersLineId": "*****82820", | |
"SellersLineId_BE": "*****82820", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "6.00", | |
"LoadWeight": "5.30", | |
"TenderVolume": "8.16", | |
"LoadVolume": "6.73", | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-15 17:32", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "TONER HP CF226 COMPUTER REPAIR PART 2PCS", | |
"Dimensions": "13.00 x 9.00 x 8.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "3100 NW 72ND AVE STE 114" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SUPERIOR COMPUTERS INC." | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL MAIN OFFICE COUNTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "# 17 BOULEVARD TOUSSAINT LOUVERTURE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": ", ANGLE RUE JN GILLES" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HOLD FOR EDOUARD PIERRE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "HT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "EDOUARD PIERRE" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "0.96", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.96" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "96" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PORT AU PRINCE", | |
"DestinationCountryCode": "HT", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PAP", | |
"BuyersId": { | |
"@identificationSchemeID": "PAP. PORT AU PRINCE", | |
"#text": "PAP. PORT AU PRINCE" | |
} | |
}, | |
"SellersLineId": "*****82820", | |
"SellersLineId_BE": "*****82820", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "6.00", | |
"LoadWeight": "5.30", | |
"TenderVolume": "8.16", | |
"LoadVolume": "6.73", | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-15 17:32", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "TONER HP CF226 COMPUTER REPAIR PART 2PCS", | |
"Dimensions": "13.00 x 9.00 x 8.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "3100 NW 72ND AVE STE 114" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SUPERIOR COMPUTERS INC." | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL MAIN OFFICE COUNTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "# 17 BOULEVARD TOUSSAINT LOUVERTURE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": ", ANGLE RUE JN GILLES" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HOLD FOR EDOUARD PIERRE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "HT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "EDOUARD PIERRE" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "52.01" | |
}, | |
"SurchargeLineExtensionAmount": "3.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "3.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "97" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "RUBBING CREAM CLEAR EYES AND INSENCE", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PORT AU PRINCE", | |
"DestinationCountryCode": "HT", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PAP", | |
"BuyersId": { | |
"@identificationSchemeID": "PAP. PORT AU PRINCE", | |
"#text": "PAP. PORT AU PRINCE" | |
} | |
}, | |
"SellersLineId": "*****64480", | |
"SellersLineId_BE": "*****64480", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "2.00", | |
"LoadWeight": "2.00", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.59", | |
"Checkpoint": { | |
"Signature": "MARIE ST HIL", | |
"When": "2016-09-19 10:34", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "RUBBING CREAM CLEAR EYES AND INSENCE", | |
"Dimensions": "10.00 x 6.00 x 6.00", | |
"Quantity": "3.00", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "2950 NW 157TH TER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "OPA LOCKA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33054" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ZONDRIA FELICIA GIBBONS" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "MANESSE ST HILAIRE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "MARIANI 10 RUELLE TITATO #48 BIS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "CARREFOUR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "HT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MANESSE ST HILAIRE" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "36.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "36.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "98" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PORT AU PRINCE", | |
"DestinationCountryCode": "HT", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PAP", | |
"BuyersId": { | |
"@identificationSchemeID": "PAP. PORT AU PRINCE", | |
"#text": "PAP. PORT AU PRINCE" | |
} | |
}, | |
"SellersLineId": "*****64480", | |
"SellersLineId_BE": "*****64480", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "2.00", | |
"LoadWeight": "2.00", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.59", | |
"Checkpoint": { | |
"Signature": "MARIE ST HIL", | |
"When": "2016-09-19 10:34", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "RUBBING CREAM CLEAR EYES AND INSENCE", | |
"Dimensions": "10.00 x 6.00 x 6.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "2950 NW 157TH TER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "OPA LOCKA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33054" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ZONDRIA FELICIA GIBBONS" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "MANESSE ST HILAIRE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "MARIANI 10 RUELLE TITATO #48 BIS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "CARREFOUR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "HT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MANESSE ST HILAIRE" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "36.72" | |
}, | |
"SurchargeLineExtensionAmount": "0.72", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.72" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "99" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PANAMA CITY", | |
"DestinationCountryCode": "PA", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PTY", | |
"BuyersId": { | |
"@identificationSchemeID": "PTY. PANAMA CITY", | |
"#text": "PTY. PANAMA CITY" | |
} | |
}, | |
"SellersLineId": "*****64101", | |
"SellersLineId_BE": "*****64101", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "ZAIDETH", | |
"When": "2016-09-15 10:31", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "10805 SW 86TH ST APT 5" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33173" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "NANCY REYES" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CONTACTO ABOGADAS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "TRNSISTMICA, PH TIKAL AL LADO DE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "FARMACIA ARROCHA PB ESTA FINANCIERA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "EL SOL, 2DO PISO OFC 16" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CONTACTO ABOGADAS" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "100" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PANAMA CITY", | |
"DestinationCountryCode": "PA", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PTY", | |
"BuyersId": { | |
"@identificationSchemeID": "PTY. PANAMA CITY", | |
"#text": "PTY. PANAMA CITY" | |
} | |
}, | |
"SellersLineId": "*****64101", | |
"SellersLineId_BE": "*****64101", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "ZAIDETH", | |
"When": "2016-09-15 10:31", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "10805 SW 86TH ST APT 5" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33173" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "NANCY REYES" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CONTACTO ABOGADAS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "TRNSISTMICA, PH TIKAL AL LADO DE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "FARMACIA ARROCHA PB ESTA FINANCIERA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "EL SOL, 2DO PISO OFC 16" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CONTACTO ABOGADAS" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "101" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SANTIAGO", | |
"DestinationCountryCode": "CL", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SCL", | |
"BuyersId": { | |
"@identificationSchemeID": "SCL. SANTIAGO", | |
"#text": "SCL. SANTIAGO" | |
} | |
}, | |
"SellersLineId": "*****97202", | |
"SellersLineId_BE": "*****97202", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "ALFREDO FARIAS", | |
"When": "2016-09-15 10:51", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "9940 W CALUSA CLUB DR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33186" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MARIA CECILIA STEVENSON" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "ALFREDO FARIAS PARADA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AVE SANTA MARIA 2880 OF. 203" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "PROVIDENCIA SANTIAGO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "7520422" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "7520422" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "CL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ALFREDO FARIAS PARA" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "102" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SANTIAGO", | |
"DestinationCountryCode": "CL", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SCL", | |
"BuyersId": { | |
"@identificationSchemeID": "SCL. SANTIAGO", | |
"#text": "SCL. SANTIAGO" | |
} | |
}, | |
"SellersLineId": "*****97202", | |
"SellersLineId_BE": "*****97202", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "ALFREDO FARIAS", | |
"When": "2016-09-15 10:51", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "9940 W CALUSA CLUB DR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33186" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MARIA CECILIA STEVENSON" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "ALFREDO FARIAS PARADA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AVE SANTA MARIA 2880 OF. 203" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "PROVIDENCIA SANTIAGO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "7520422" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "7520422" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "CL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ALFREDO FARIAS PARA" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "103" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "SAUCE SAMPLES SALSAS MUESTRAS", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "A", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SAN JOSE", | |
"DestinationCountryCode": "CR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SCR", | |
"BuyersId": { | |
"@identificationSchemeID": "SCR. SAN JOSE", | |
"#text": "SCR. SAN JOSE" | |
} | |
}, | |
"SellersLineId": "*****30962", | |
"SellersLineId_BE": "*****30962", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "6.00", | |
"LoadWeight": "5.90", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.59", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "SAUCE SAMPLES SALSAS MUESTRAS", | |
"Dimensions": null, | |
"Quantity": "6.00", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "6848 NW 77TH CT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33166" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "PERFECT CHOICE INTERNATIO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "MERCASA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "200 METROS AL SUR DEL MOTEL PARAISO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "ROTULO GRUPO INTECA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SAN FRANCISCO DE DOS RIOS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "CR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JEANNETTE TORRES" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "53.64", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "53.64" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "104" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "DD", | |
"code": "DD" | |
}, | |
"SurchargeDesc": "DUTIES AND TAXES PAID" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "A", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SAN JOSE", | |
"DestinationCountryCode": "CR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SCR", | |
"BuyersId": { | |
"@identificationSchemeID": "SCR. SAN JOSE", | |
"#text": "SCR. SAN JOSE" | |
} | |
}, | |
"SellersLineId": "*****30962", | |
"SellersLineId_BE": "*****30962", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "6.00", | |
"LoadWeight": "5.90", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.59", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "SAUCE SAMPLES SALSAS MUESTRAS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "6848 NW 77TH CT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33166" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "PERFECT CHOICE INTERNATIO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "MERCASA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "200 METROS AL SUR DEL MOTEL PARAISO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "ROTULO GRUPO INTECA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SAN FRANCISCO DE DOS RIOS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "CR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JEANNETTE TORRES" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "15.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "105" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-14" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "A", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "SAN JOSE", | |
"DestinationCountryCode": "CR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SCR", | |
"BuyersId": { | |
"@identificationSchemeID": "SCR. SAN JOSE", | |
"#text": "SCR. SAN JOSE" | |
} | |
}, | |
"SellersLineId": "*****30962", | |
"SellersLineId_BE": "*****30962", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "6.00", | |
"LoadWeight": "5.90", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.59", | |
"Checkpoint": { | |
"Signature": null, | |
"When": null, | |
"What": null | |
}, | |
"Eventdesc": null, | |
"Goodsdesc": "SAUCE SAMPLES SALSAS MUESTRAS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-14", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "6848 NW 77TH CT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33166" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "PERFECT CHOICE INTERNATIO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "MERCASA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "200 METROS AL SUR DEL MOTEL PARAISO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "ROTULO GRUPO INTECA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SAN FRANCISCO DE DOS RIOS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "CR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JEANNETTE TORRES" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "69.71" | |
}, | |
"SurchargeLineExtensionAmount": "1.07", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "1.07" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "106" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "BARCELONA", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "BLA", | |
"BuyersId": { | |
"@identificationSchemeID": "BLA. BARCELONA", | |
"#text": "BLA. BARCELONA" | |
} | |
}, | |
"SellersLineId": "*****28862", | |
"SellersLineId_BE": "*****28862", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-19 08:25", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "12262 SW 26TH ST" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33175" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DEIVIS LUIS ESPINOZA VALE" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "JUDY JIMENEZ" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CASA 16 RESIDENCIAS CALLE LIBERTAD" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "SECTOR LA CARAQUENA, JUAN ANTONIO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SOTILLO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JUDY JIMENEZ" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "107" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "BARCELONA", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "BLA", | |
"BuyersId": { | |
"@identificationSchemeID": "BLA. BARCELONA", | |
"#text": "BLA. BARCELONA" | |
} | |
}, | |
"SellersLineId": "*****28862", | |
"SellersLineId_BE": "*****28862", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.50", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-19 08:25", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "12262 SW 26TH ST" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33175" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DEIVIS LUIS ESPINOZA VALE" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "JUDY JIMENEZ" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CASA 16 RESIDENCIAS CALLE LIBERTAD" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "SECTOR LA CARAQUENA, JUAN ANTONIO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "SOTILLO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JUDY JIMENEZ" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "108" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "CARACAS", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "CCS", | |
"BuyersId": { | |
"@identificationSchemeID": "CCS. CARACAS", | |
"#text": "CCS. CARACAS" | |
} | |
}, | |
"SellersLineId": "*****23152", | |
"SellersLineId_BE": "*****23152", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.40", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "ULYSES PI ANGO", | |
"When": "2016-09-19 09:43", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "14707 SW 42ND ST STE 402" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33185" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "INSURANCE SOL DEL CARIBE" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DISTRIBUIDORA LEMA PARTS CA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AV LIBERTADOR C/C CANTAURA EDIF" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "LIBERTADOR PB LOCAL N.1" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "CODIGO POSTAL 1050" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "1050" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ULYSES PINANCO" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "109" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "CARACAS", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "CCS", | |
"BuyersId": { | |
"@identificationSchemeID": "CCS. CARACAS", | |
"#text": "CCS. CARACAS" | |
} | |
}, | |
"SellersLineId": "*****23152", | |
"SellersLineId_BE": "*****23152", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.40", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "ULYSES PI ANGO", | |
"When": "2016-09-19 09:43", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "14707 SW 42ND ST STE 402" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33185" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "INSURANCE SOL DEL CARIBE" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DISTRIBUIDORA LEMA PARTS CA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AV LIBERTADOR C/C CANTAURA EDIF" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "LIBERTADOR PB LOCAL N.1" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "CODIGO POSTAL 1050" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "1050" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ULYSES PINANCO" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "110" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "D", | |
"code": "D" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS WWIDE DOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "LIMA", | |
"DestinationCountryCode": "PE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "LIM", | |
"BuyersId": { | |
"@identificationSchemeID": "LIM. LIMA", | |
"#text": "LIM. LIMA" | |
} | |
}, | |
"SellersLineId": "*****57513", | |
"SellersLineId_BE": "*****57513", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.80", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "LUIS ALMEIDA", | |
"When": "2016-09-16 15:09", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "1.00", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "10285 NW 52ND LN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33178" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MARTHA RUBATTO VEGA" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "SALLY RUBATTO DE ASTENGO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AV JORGE BASADRE 1490 DPT 101" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "SAN ISIDRO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "LIMA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SALLY RUBATTO DE AS" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "21.43", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "21.43" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "111" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "LIMA", | |
"DestinationCountryCode": "PE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "LIM", | |
"BuyersId": { | |
"@identificationSchemeID": "LIM. LIMA", | |
"#text": "LIM. LIMA" | |
} | |
}, | |
"SellersLineId": "*****57513", | |
"SellersLineId_BE": "*****57513", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.80", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "LUIS ALMEIDA", | |
"When": "2016-09-16 15:09", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "10285 NW 52ND LN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33178" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MARTHA RUBATTO VEGA" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "SALLY RUBATTO DE ASTENGO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AV JORGE BASADRE 1490 DPT 101" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "SAN ISIDRO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "LIMA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SALLY RUBATTO DE AS" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "21.86" | |
}, | |
"SurchargeLineExtensionAmount": "0.43", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.43" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "112" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MADRID", | |
"DestinationCountryCode": "ES", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MAD", | |
"BuyersId": { | |
"@identificationSchemeID": "MAD. MADRID", | |
"#text": "MAD. MADRID" | |
} | |
}, | |
"SellersLineId": "*****25971", | |
"SellersLineId_BE": "*****25971", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.40", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "JONATHAN", | |
"When": "2016-09-19 11:01", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7950 NW 53RD STE 241" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33166" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MB SUPPLY SOLUTIONS" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CVG INTERNACIONAL FILIAL EUROPEA SL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AV DE BRUSELAS 13 EDIF AMERICA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "1RO A" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "ALCOBENDAS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "28108" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "ES" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DENIS BORET" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "19.71", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "19.71" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "113" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MADRID", | |
"DestinationCountryCode": "ES", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MAD", | |
"BuyersId": { | |
"@identificationSchemeID": "MAD. MADRID", | |
"#text": "MAD. MADRID" | |
} | |
}, | |
"SellersLineId": "*****25971", | |
"SellersLineId_BE": "*****25971", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.40", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "JONATHAN", | |
"When": "2016-09-19 11:01", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7950 NW 53RD STE 241" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "DORAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33166" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MB SUPPLY SOLUTIONS" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CVG INTERNACIONAL FILIAL EUROPEA SL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AV DE BRUSELAS 13 EDIF AMERICA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "1RO A" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "ALCOBENDAS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "28108" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "ES" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DENIS BORET" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "20.10" | |
}, | |
"SurchargeLineExtensionAmount": "0.39", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.39" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "114" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MUNICH", | |
"DestinationCountryCode": "DE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MUC", | |
"BuyersId": { | |
"@identificationSchemeID": "MUC. MUNICH", | |
"#text": "MUC. MUNICH" | |
} | |
}, | |
"SellersLineId": "*****66773", | |
"SellersLineId_BE": "*****66773", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.20", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "GURETZKI", | |
"When": "2016-09-19 14:07", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "6261 W FLAGLER ST APT 33" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33144" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JORGE EMILIO MARBOT" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "HEIDY RICARDO-GURETZKI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "FRANZ-MARC-STR 3D" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "PUCHHEIM" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "82178" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "DE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "HEIDY RICARDO-GURET" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "19.71", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "19.71" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "115" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MUNICH", | |
"DestinationCountryCode": "DE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MUC", | |
"BuyersId": { | |
"@identificationSchemeID": "MUC. MUNICH", | |
"#text": "MUC. MUNICH" | |
} | |
}, | |
"SellersLineId": "*****66773", | |
"SellersLineId_BE": "*****66773", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.20", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "GURETZKI", | |
"When": "2016-09-19 14:07", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "6261 W FLAGLER ST APT 33" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33144" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JORGE EMILIO MARBOT" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "HEIDY RICARDO-GURETZKI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "FRANZ-MARC-STR 3D" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "PUCHHEIM" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "82178" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "DE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "HEIDY RICARDO-GURET" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "20.10" | |
}, | |
"SurchargeLineExtensionAmount": "0.39", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.39" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "116" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "AGENTES VENEZUELA", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SMG", | |
"BuyersId": { | |
"@identificationSchemeID": "SMG. AGENTES VENEZUELA", | |
"#text": "SMG. AGENTES VENEZUELA" | |
} | |
}, | |
"SellersLineId": "*****21471", | |
"SellersLineId_BE": "*****21471", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.40", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "DITRIS ZARRAGA", | |
"When": "2016-09-19 09:43", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "1971 SW 4TH ST APT 205" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33135" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DESIREE ZARRAGA TOTOS" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "OP & P SERVCICIOS INTEGRALES CA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AV. MANAURE, ENTRE CALLE SUR Y" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "DEMOCRACIA CC SAN ANOTNIO PB DHL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HOLD FOR ZARRAGA DITRIS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ZARRAGA DITRIS" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "117" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "AGENTES VENEZUELA", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SMG", | |
"BuyersId": { | |
"@identificationSchemeID": "SMG. AGENTES VENEZUELA", | |
"#text": "SMG. AGENTES VENEZUELA" | |
} | |
}, | |
"SellersLineId": "*****21471", | |
"SellersLineId_BE": "*****21471", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.40", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "DITRIS ZARRAGA", | |
"When": "2016-09-19 09:43", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "1971 SW 4TH ST APT 205" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33135" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DESIREE ZARRAGA TOTOS" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "OP & P SERVCICIOS INTEGRALES CA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AV. MANAURE, ENTRE CALLE SUR Y" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "DEMOCRACIA CC SAN ANOTNIO PB DHL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "HOLD FOR ZARRAGA DITRIS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ZARRAGA DITRIS" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "118" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "AGENTES VENEZUELA", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SMG", | |
"BuyersId": { | |
"@identificationSchemeID": "SMG. AGENTES VENEZUELA", | |
"#text": "SMG. AGENTES VENEZUELA" | |
} | |
}, | |
"SellersLineId": "*****95210", | |
"SellersLineId_BE": "*****95210", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.40", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "DANIEL GUILLEN", | |
"When": "2016-09-19 15:38", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #216" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ALFA CARGO FORWARDERS COR" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "IESCA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "FINAL VIADUCTO CAMPO ELIAS CON" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "AVE 8 NRO 25-76" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MERIDA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ROBERTO DI PERSIO" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "119" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "AGENTES VENEZUELA", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "SMG", | |
"BuyersId": { | |
"@identificationSchemeID": "SMG. AGENTES VENEZUELA", | |
"#text": "SMG. AGENTES VENEZUELA" | |
} | |
}, | |
"SellersLineId": "*****95210", | |
"SellersLineId_BE": "*****95210", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.40", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "DANIEL GUILLEN", | |
"When": "2016-09-19 15:38", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #216" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ALFA CARGO FORWARDERS COR" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "IESCA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "FINAL VIADUCTO CAMPO ELIAS CON" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "AVE 8 NRO 25-76" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MERIDA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "ROBERTO DI PERSIO" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "120" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "MARINE SENSORS", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "TOULOUSE", | |
"DestinationCountryCode": "FR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "TLS", | |
"BuyersId": { | |
"@identificationSchemeID": "TLS. TOULOUSE", | |
"#text": "TLS. TOULOUSE" | |
} | |
}, | |
"SellersLineId": "*****01382", | |
"SellersLineId_BE": "*****01382", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "8.00", | |
"LoadWeight": "7.50", | |
"TenderVolume": "7.25", | |
"LoadVolume": "7.25", | |
"Checkpoint": { | |
"Signature": "CATANA", | |
"When": "2016-09-19 14:32", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "MARINE SENSORS", | |
"Dimensions": null, | |
"Quantity": "8.00", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "300 S BISCAYNE BLVD APT 2012" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33131" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DREAM YACHT CHARTERS" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHANTIER CATANA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "ZONE TECHNIQUE DU PORT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "OLIVIER PONCIN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "AUDREY RIFF" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "66140" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "FR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "OLIVIER PONCIN" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "66.55", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "66.55" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "121" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "TOULOUSE", | |
"DestinationCountryCode": "FR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "TLS", | |
"BuyersId": { | |
"@identificationSchemeID": "TLS. TOULOUSE", | |
"#text": "TLS. TOULOUSE" | |
} | |
}, | |
"SellersLineId": "*****01382", | |
"SellersLineId_BE": "*****01382", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "8.00", | |
"LoadWeight": "7.50", | |
"TenderVolume": "7.25", | |
"LoadVolume": "7.25", | |
"Checkpoint": { | |
"Signature": "CATANA", | |
"When": "2016-09-19 14:32", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "MARINE SENSORS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "300 S BISCAYNE BLVD APT 2012" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33131" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DREAM YACHT CHARTERS" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHANTIER CATANA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "ZONE TECHNIQUE DU PORT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "OLIVIER PONCIN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "AUDREY RIFF" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "66140" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "FR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "OLIVIER PONCIN" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "1.33", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "1.33" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "122" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-15" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "TOULOUSE", | |
"DestinationCountryCode": "FR", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "TLS", | |
"BuyersId": { | |
"@identificationSchemeID": "TLS. TOULOUSE", | |
"#text": "TLS. TOULOUSE" | |
} | |
}, | |
"SellersLineId": "*****01382", | |
"SellersLineId_BE": "*****01382", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "8.00", | |
"LoadWeight": "7.50", | |
"TenderVolume": "7.25", | |
"LoadVolume": "7.25", | |
"Checkpoint": { | |
"Signature": "CATANA", | |
"When": "2016-09-19 14:32", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "MARINE SENSORS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-15", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "300 S BISCAYNE BLVD APT 2012" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33131" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "DREAM YACHT CHARTERS" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "CHANTIER CATANA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "ZONE TECHNIQUE DU PORT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "OLIVIER PONCIN" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "AUDREY RIFF" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "66140" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "FR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "OLIVIER PONCIN" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "77.88" | |
}, | |
"SurchargeLineExtensionAmount": "10.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "10.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "123" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-16" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "GUAYAQUIL GATEWAY", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "GYE", | |
"BuyersId": { | |
"@identificationSchemeID": "GYE. GUAYAQUIL GATEWAY", | |
"#text": "GYE. GUAYAQUIL GATEWAY" | |
} | |
}, | |
"SellersLineId": "*****30322", | |
"SellersLineId_BE": "*****30322", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.30", | |
"TenderVolume": null, | |
"LoadVolume": "0.50", | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-19 08:46", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-16", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "3520 NW 16TH ST" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33125" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "BARBARA MACHIN" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "HECTOR HUGO ALVEAR BASUTO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "19 Y LA E" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "GUAYAQUIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "090101" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "HECTOR HUGO ALVEAR" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "124" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-16" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "GUAYAQUIL GATEWAY", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "GYE", | |
"BuyersId": { | |
"@identificationSchemeID": "GYE. GUAYAQUIL GATEWAY", | |
"#text": "GYE. GUAYAQUIL GATEWAY" | |
} | |
}, | |
"SellersLineId": "*****30322", | |
"SellersLineId_BE": "*****30322", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.30", | |
"TenderVolume": null, | |
"LoadVolume": "0.50", | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-19 08:46", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-16", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "3520 NW 16TH ST" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33125" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "BARBARA MACHIN" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "HECTOR HUGO ALVEAR BASUTO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "19 Y LA E" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "GUAYAQUIL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "090101" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "HECTOR HUGO ALVEAR" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "125" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-16" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MARACAIBO", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MAR", | |
"BuyersId": { | |
"@identificationSchemeID": "MAR. MARACAIBO", | |
"#text": "MAR. MARACAIBO" | |
} | |
}, | |
"SellersLineId": "*****97301", | |
"SellersLineId_BE": "*****97301", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.40", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "LUISA ORTEGA", | |
"When": "2016-09-20 09:52", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-16", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "162 NE 25TH ST APT 1111" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33137" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "RONALD JOSE BRAVO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "SERVICIOS ADUANALES ANGELMAR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CIRCUNVALACION NO. 2 EDIFICIO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "WILERA LOCAL 4PB FTE A TRANSPORTE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "FAGA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SANTIAGO GARCIA" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "126" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-16" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MARACAIBO", | |
"DestinationCountryCode": "VE", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MAR", | |
"BuyersId": { | |
"@identificationSchemeID": "MAR. MARACAIBO", | |
"#text": "MAR. MARACAIBO" | |
} | |
}, | |
"SellersLineId": "*****97301", | |
"SellersLineId_BE": "*****97301", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.40", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": "LUISA ORTEGA", | |
"When": "2016-09-20 09:52", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-16", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "162 NE 25TH ST APT 1111" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33137" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "RONALD JOSE BRAVO" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "SERVICIOS ADUANALES ANGELMAR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "CIRCUNVALACION NO. 2 EDIFICIO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "WILERA LOCAL 4PB FTE A TRANSPORTE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "FAGA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "VE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "SANTIAGO GARCIA" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "127" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-16" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MACHALA", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MCH", | |
"BuyersId": { | |
"@identificationSchemeID": "MCH. MACHALA", | |
"#text": "MCH. MACHALA" | |
} | |
}, | |
"SellersLineId": "*****43114", | |
"SellersLineId_BE": "*****43114", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.30", | |
"TenderVolume": null, | |
"LoadVolume": "0.50", | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-19 15:23", | |
"What": "TP" | |
}, | |
"Eventdesc": "FORWARDED TO THIRD PARTY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-16", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "5356 SW 140TH CT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33175" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "LILIANA FRANCO AURIA" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL BABAHOYO AGENTE AUTORIZADO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "SUCRE 104 Y MALECON" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "HOLD FOR GARI RODRIGUEZ" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "BABAHOYO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "120101" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "GARI RODRIGUEZ" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "128" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-16" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "MACHALA", | |
"DestinationCountryCode": "EC", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "MCH", | |
"BuyersId": { | |
"@identificationSchemeID": "MCH. MACHALA", | |
"#text": "MCH. MACHALA" | |
} | |
}, | |
"SellersLineId": "*****43114", | |
"SellersLineId_BE": "*****43114", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.30", | |
"TenderVolume": null, | |
"LoadVolume": "0.50", | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-19 15:23", | |
"What": "TP" | |
}, | |
"Eventdesc": "FORWARDED TO THIRD PARTY", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-16", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "5356 SW 140TH CT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33175" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "LILIANA FRANCO AURIA" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL BABAHOYO AGENTE AUTORIZADO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "SUCRE 104 Y MALECON" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "HOLD FOR GARI RODRIGUEZ" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "BABAHOYO" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "120101" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "EC" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "GARI RODRIGUEZ" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "129" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-16" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "PERSONAL MEDICATION", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PORT AU PRINCE", | |
"DestinationCountryCode": "HT", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PAP", | |
"BuyersId": { | |
"@identificationSchemeID": "PAP. PORT AU PRINCE", | |
"#text": "PAP. PORT AU PRINCE" | |
} | |
}, | |
"SellersLineId": "*****59162", | |
"SellersLineId_BE": "*****59162", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.50", | |
"TenderVolume": "0.86", | |
"LoadVolume": "0.80", | |
"Checkpoint": { | |
"Signature": "AGENT YVON CLERVIL", | |
"When": "2016-09-20 12:38", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "PERSONAL MEDICATION", | |
"Dimensions": null, | |
"Quantity": "1.00", | |
"ActualDeliveryDateTime": "2016-09-16", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "11952 SW 31ST CT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIRAMAR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33025" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CHRISTINA FRANCOIS" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "YVES DUCARMEL FRANCOIS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "DELMAS 65, RUE TOUSSAINT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "LOUVERTURE #36" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "PORT AU PRINCE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "HT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "YVES DUCARMEL FRANC" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "26.06", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "26.06" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "130" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-16" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PORT AU PRINCE", | |
"DestinationCountryCode": "HT", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PAP", | |
"BuyersId": { | |
"@identificationSchemeID": "PAP. PORT AU PRINCE", | |
"#text": "PAP. PORT AU PRINCE" | |
} | |
}, | |
"SellersLineId": "*****59162", | |
"SellersLineId_BE": "*****59162", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.50", | |
"TenderVolume": "0.86", | |
"LoadVolume": "0.80", | |
"Checkpoint": { | |
"Signature": "AGENT YVON CLERVIL", | |
"When": "2016-09-20 12:38", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "PERSONAL MEDICATION", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-16", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "11952 SW 31ST CT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIRAMAR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33025" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CHRISTINA FRANCOIS" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "YVES DUCARMEL FRANCOIS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "DELMAS 65, RUE TOUSSAINT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "LOUVERTURE #36" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "PORT AU PRINCE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "HT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "YVES DUCARMEL FRANC" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "0.52", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.52" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "131" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-16" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PORT AU PRINCE", | |
"DestinationCountryCode": "HT", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PAP", | |
"BuyersId": { | |
"@identificationSchemeID": "PAP. PORT AU PRINCE", | |
"#text": "PAP. PORT AU PRINCE" | |
} | |
}, | |
"SellersLineId": "*****59162", | |
"SellersLineId_BE": "*****59162", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "1.00", | |
"LoadWeight": "0.50", | |
"TenderVolume": "0.86", | |
"LoadVolume": "0.80", | |
"Checkpoint": { | |
"Signature": "AGENT YVON CLERVIL", | |
"When": "2016-09-20 12:38", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "PERSONAL MEDICATION", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-16", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "11952 SW 31ST CT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIRAMAR" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33025" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "CHRISTINA FRANCOIS" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "YVES DUCARMEL FRANCOIS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "DELMAS 65, RUE TOUSSAINT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "LOUVERTURE #36" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "PORT AU PRINCE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "HT" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "YVES DUCARMEL FRANC" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "29.58" | |
}, | |
"SurchargeLineExtensionAmount": "3.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "3.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "132" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-16" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "P", | |
"code": "P" | |
}, | |
"DescriptionOfGoods": "2 IPHONES", | |
"Description": "EXPRESS WWIDE NONDOC" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "RIYADH", | |
"DestinationCountryCode": "SA", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "RUH", | |
"BuyersId": { | |
"@identificationSchemeID": "RUH. RIYADH", | |
"#text": "RUH. RIYADH" | |
} | |
}, | |
"SellersLineId": "*****98100", | |
"SellersLineId_BE": "*****98100", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "3.00", | |
"LoadWeight": "2.20", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.59", | |
"Checkpoint": { | |
"Signature": "AL MALKI", | |
"When": "2016-09-20 10:32", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "2 IPHONES", | |
"Dimensions": "6.00 x 10.00 x 6.00", | |
"Quantity": "3.00", | |
"ActualDeliveryDateTime": "2016-09-16", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "475 BRICKELL AVE APT 3709" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33131" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MAHMOUD ABOU ZIED" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "MOHEI ABOUZIED" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "KING FAISAL SPECIALIST HOSPITAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "DEPARTMENT OF RADIOLOGY" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MBC #28 - POSTAL CODE 11211" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "11211" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "SA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MOHEI ABOUZIED" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "48.33", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "48.33" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "133" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-16" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "RIYADH", | |
"DestinationCountryCode": "SA", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "RUH", | |
"BuyersId": { | |
"@identificationSchemeID": "RUH. RIYADH", | |
"#text": "RUH. RIYADH" | |
} | |
}, | |
"SellersLineId": "*****98100", | |
"SellersLineId_BE": "*****98100", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "3.00", | |
"LoadWeight": "2.20", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.59", | |
"Checkpoint": { | |
"Signature": "AL MALKI", | |
"When": "2016-09-20 10:32", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "2 IPHONES", | |
"Dimensions": "6.00 x 10.00 x 6.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-16", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "475 BRICKELL AVE APT 3709" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33131" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MAHMOUD ABOU ZIED" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "MOHEI ABOUZIED" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "KING FAISAL SPECIALIST HOSPITAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "DEPARTMENT OF RADIOLOGY" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MBC #28 - POSTAL CODE 11211" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "11211" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "SA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MOHEI ABOUZIED" | |
} | |
} | |
] | |
} | |
}, | |
"SurchargeLineExtensionAmount": "0.97", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.97" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "134" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-16" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "II", | |
"code": "II" | |
}, | |
"SurchargeDesc": "Shipment Value Protection" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "W", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "RIYADH", | |
"DestinationCountryCode": "SA", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "RUH", | |
"BuyersId": { | |
"@identificationSchemeID": "RUH. RIYADH", | |
"#text": "RUH. RIYADH" | |
} | |
}, | |
"SellersLineId": "*****98100", | |
"SellersLineId_BE": "*****98100", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "3.00", | |
"LoadWeight": "2.20", | |
"TenderVolume": "2.59", | |
"LoadVolume": "2.59", | |
"Checkpoint": { | |
"Signature": "AL MALKI", | |
"When": "2016-09-20 10:32", | |
"What": "OK" | |
}, | |
"Eventdesc": "DELIVERY", | |
"Goodsdesc": "2 IPHONES", | |
"Dimensions": "6.00 x 10.00 x 6.00", | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-16", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "475 BRICKELL AVE APT 3709" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33131" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MAHMOUD ABOU ZIED" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "MOHEI ABOUZIED" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "KING FAISAL SPECIALIST HOSPITAL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "DEPARTMENT OF RADIOLOGY" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MBC #28 - POSTAL CODE 11211" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "11211" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "SA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "MOHEI ABOUZIED" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "59.30" | |
}, | |
"SurchargeLineExtensionAmount": "10.0", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "10.0" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "135" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-19" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "X", | |
"code": "X" | |
}, | |
"DescriptionOfGoods": "DOCUMENTS", | |
"Description": "EXPRESS ENVELOPE" | |
}, | |
"RateCode": "0.89786800", | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PANAMA CITY", | |
"DestinationCountryCode": "PA", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PTY", | |
"BuyersId": { | |
"@identificationSchemeID": "PTY. PANAMA CITY", | |
"#text": "PTY. PANAMA CITY" | |
} | |
}, | |
"SellersLineId": "*****51300", | |
"SellersLineId_BE": "*****51300", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.30", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-20 07:11", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0.50", | |
"ActualDeliveryDateTime": "2016-09-19", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "S. DEPARTMENT" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL COSTA DEL ESTE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AVE CENTENARIO EDIFICIO DHL EXPRESS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "HOLD FOR JULIO MOLINA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "PANAMA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JULIO MOLINA" | |
} | |
} | |
] | |
} | |
}, | |
"LineExtensionAmount": "15.88", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "15.88" | |
}, | |
{ | |
"BuyerParty": { | |
"SellerAssignedAccountID": "*********" | |
}, | |
"Item": { | |
"StandardItemIdentification": { | |
"ID": "136" | |
}, | |
"Delivery": { | |
"ActualDeliveryDateTime": "2016-09-19" | |
}, | |
"BuyersItemIdentification": { | |
"ID": "FF", | |
"code": "FF" | |
}, | |
"SurchargeDesc": "FUEL SURCHARGE" | |
}, | |
"InvoicedQuantity": "1", | |
"VolumetricValue": "B", | |
"Delivery": { | |
"OrderLineReference": { | |
"OrderReference": { | |
"OriginName": "MIAMI", | |
"OriginCountryCode": "US", | |
"DestinationName": "PANAMA CITY", | |
"DestinationCountryCode": "PA", | |
"SellersId": { | |
"@identificationSchemeID": "MIAMI", | |
"#text": "MIAMI" | |
}, | |
"DestinationCode": null, | |
"stationDestination": "PTY", | |
"BuyersId": { | |
"@identificationSchemeID": "PTY. PANAMA CITY", | |
"#text": "PTY. PANAMA CITY" | |
} | |
}, | |
"SellersLineId": "*****51300", | |
"SellersLineId_BE": "*****51300", | |
"BuyersLineId": null | |
}, | |
"WeightUnit": "LB", | |
"TenderWeight": "0.50", | |
"LoadWeight": "0.30", | |
"TenderVolume": null, | |
"LoadVolume": null, | |
"Checkpoint": { | |
"Signature": null, | |
"When": "2016-09-20 07:11", | |
"What": "CC" | |
}, | |
"Eventdesc": "AWAITING CONSIGNEE COLLECTION", | |
"Goodsdesc": "DOCUMENTS", | |
"Dimensions": null, | |
"Quantity": "0", | |
"ActualDeliveryDateTime": "2016-09-19", | |
"DespatchAddress": { | |
"CountrySubentityCode": "TMB", | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL-DSPOINT-MIAMI-AIRPORT-CENTER" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "7500 NW 25TH ST #100" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "MIAMI" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "state", | |
"#text": "FL" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "33122" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "US" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "S. DEPARTMENT" | |
} | |
} | |
] | |
}, | |
"DeliveryAddress": { | |
"AddressLine": [ | |
{ | |
"Line": { | |
"@name": "name1", | |
"#text": "DHL COSTA DEL ESTE" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address1", | |
"#text": "AVE CENTENARIO EDIFICIO DHL EXPRESS" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "address2", | |
"#text": "HOLD FOR JULIO MOLINA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "city", | |
"#text": "PANAMA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "postCode", | |
"#text": "00000" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "countryCode", | |
"#text": "PA" | |
} | |
}, | |
{ | |
"Line": { | |
"@name": "contact", | |
"#text": "JULIO MOLINA" | |
} | |
} | |
] | |
}, | |
"TotalAmount": "16.20" | |
}, | |
"SurchargeLineExtensionAmount": "0.32", | |
"TaxTotal": { | |
"TotalTaxAmount": "0", | |
"TaxSubTotal": { | |
"TaxableAmount": null, | |
"TaxCategory": { | |
"ID": null, | |
"Percent": null | |
} | |
} | |
}, | |
"LineExtensionAmount2": "0.32" | |
} | |
], | |
"FHFValue": "0", | |
"SummaryLines": { | |
"SummaryLine": [ | |
{ | |
"LineNo": "1", | |
"Type": "P", | |
"Part": "EXPRESS WWIDE NONDOC", | |
"Quantity": "27", | |
"UnitPrice": "1841.00", | |
"GrossUnitPrice": "1639.67", | |
"TaxUnitPrice": "0", | |
"ExtraChargeUnitPrice": "201.33", | |
"MinTotal": "26.56", | |
"MaxTotal": "333.67" | |
}, | |
{ | |
"LineNo": "2", | |
"Type": "X", | |
"Part": "EXPRESS ENVELOPE", | |
"Quantity": "29", | |
"UnitPrice": "485.88", | |
"GrossUnitPrice": "476.17", | |
"TaxUnitPrice": "0", | |
"ExtraChargeUnitPrice": "9.71", | |
"MinTotal": "14.47", | |
"MaxTotal": "23.60" | |
}, | |
{ | |
"LineNo": "3", | |
"Type": "D", | |
"Part": "EXPRESS WWIDE DOC", | |
"Quantity": "1", | |
"UnitPrice": "21.86", | |
"GrossUnitPrice": "21.43", | |
"TaxUnitPrice": "0", | |
"ExtraChargeUnitPrice": "0.43", | |
"MinTotal": "21.86", | |
"MaxTotal": "21.86" | |
} | |
] | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import mapr | |
import json | |
mp = [ | |
{ | |
"op": "opCopy", | |
"source": "/Invoice/InvoiceLine", | |
"dest": "/" | |
}, | |
{ | |
"op": "opMapEach", | |
"loc": "/", | |
"opMap": [ | |
{ | |
"op": "opMove", | |
"source": "/Delivery/OrderLineReference/SellersLineId", | |
"dest": "/tracking_number" | |
}, | |
{ | |
"op": "opMove", | |
"source": "/InvoicedQuantity", | |
"dest": "/billed_qty" | |
}, | |
{ | |
"op": "opMove", | |
"source": "/VolumetricValue", | |
"dest": "/billed_unit" | |
}, | |
{ | |
"op": "opMove", | |
"source": "/Delivery/Goodsdesc", | |
"dest": "/billed_summary_of_goods" | |
}, | |
{ | |
"op": "opMove", | |
"source": "/Delivery/Dimensions", | |
"dest": "/billed_dimensions" | |
}, | |
{ | |
"op": "opMove", | |
"source": "/Delivery/WeightUnit", | |
"dest": "/billed_weight_unit" | |
}, | |
{ | |
"op": "opMove", | |
"source": "/Delivery/LoadWeight", | |
"dest": "/billed_load_weight" | |
}, | |
{ | |
"op": "opMove", | |
"source": "/Delivery/TenderWeight", | |
"dest": "/billed_tender_weight" | |
}, | |
{ | |
"op": "opMove", | |
"source": "/Delivery/LoadVolume", | |
"dest": "/billed_load_volume" | |
}, | |
{ | |
"op": "opMove", | |
"source": "/LineExtensionAmount2", | |
"dest": "/billed_amount" | |
} | |
], | |
}, | |
{ | |
"op": "opGroupAndSumBy", | |
"group_by": "/tracking_number", | |
"sum_by": "/billed_amount" | |
} | |
] | |
mapper = mapr.Mapr(mp) | |
with open("./sample.json", "rb") as jfile: | |
data = json.load(jfile) | |
mapped = mapper.map(data) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment