Initial commit
This commit is contained in:
commit
7716921005
|
@ -0,0 +1,2 @@
|
|||
node_modules
|
||||
config.js
|
|
@ -0,0 +1,27 @@
|
|||
var fs = require('fs');
|
||||
|
||||
function getXml(path,callback){
|
||||
|
||||
fs.readFile(__dirname + path,'utf8', function(err, data) {
|
||||
if (err) {
|
||||
callback(err,null);
|
||||
return;
|
||||
}
|
||||
var sqlReplaced = data.replace(/#\w+/g,replaceFunc)
|
||||
console.log(sqlReplaced);
|
||||
callback(null,sqlReplaced);
|
||||
});
|
||||
|
||||
}
|
||||
function replaceFunc (token)
|
||||
{
|
||||
var fecha = require('fecha');
|
||||
var key = token.substr (1);
|
||||
var values={
|
||||
"AgentParty":8713783248188,
|
||||
"MessageDateTime":fecha.format(new Date(),'YYYY-MM-DDThh:mm:ss+01:00')
|
||||
};
|
||||
return values[key];
|
||||
|
||||
}
|
||||
exports.getXml = getXml;
|
|
@ -0,0 +1,22 @@
|
|||
var server = require("./server");
|
||||
var router = require("./router");
|
||||
var requestHandlers = require("./requestHandlers");
|
||||
|
||||
var handle = {}
|
||||
handle["/"] = requestHandlers.iniciar;
|
||||
handle["/iniciar"] = requestHandlers.iniciar;
|
||||
handle["/subir"] = requestHandlers.subir;
|
||||
handle["/xml"] = requestHandlers.xml;
|
||||
|
||||
server.iniciar(router.route, handle);
|
||||
|
||||
/*var fs = require('fs');
|
||||
var xml2js = require('xml2js');
|
||||
|
||||
var parser = new xml2js.Parser();
|
||||
fs.readFile(__dirname + 'xml_buyer/supplyrequest_getall.xml', function(err, data) {
|
||||
parser.parseString(data, function (err, result) {
|
||||
console.dir(result);
|
||||
console.log('Done');
|
||||
});
|
||||
});*/
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"name": "ccvmp",
|
||||
"version": "1.0.0",
|
||||
"author": "Verdnatura Levante SL",
|
||||
"description": "Salix application",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"fecha": "^2.3.0",
|
||||
"jsdom": "^9.12.0",
|
||||
"soap": "^0.19.0",
|
||||
"xml2js": "^0.4.17"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
function route(handle, pathname, response, postData) {
|
||||
console.log("A punto de rutear una peticion para " + pathname);
|
||||
if (typeof handle[pathname] === 'function') {
|
||||
handle[pathname](response, postData);
|
||||
} else {
|
||||
console.log("No se ha encontrado manipulador para " + pathname);
|
||||
response.writeHead(404, {"Content-Type": "text/html"});
|
||||
response.write("404 No encontrado");
|
||||
response.end();
|
||||
}
|
||||
}
|
||||
|
||||
exports.route = route;
|
|
@ -0,0 +1,27 @@
|
|||
var http = require("http");
|
||||
var url = require("url");
|
||||
|
||||
function iniciar(route, handle) {
|
||||
function onRequest(request, response) {
|
||||
var dataPosteada = "";
|
||||
var pathname = url.parse(request.url).pathname;
|
||||
console.log("Peticion para " + pathname + " recibida.");
|
||||
|
||||
request.setEncoding("utf8");
|
||||
|
||||
request.addListener("data", function(trozoPosteado) {
|
||||
dataPosteada += trozoPosteado;
|
||||
console.log("Recibido trozo POST '" + trozoPosteado + "'.");
|
||||
});
|
||||
|
||||
request.addListener("end", function() {
|
||||
route(handle, pathname, response, dataPosteada);
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
http.createServer(onRequest).listen(8888);
|
||||
console.log("Servidor Iniciado");
|
||||
}
|
||||
|
||||
exports.iniciar = iniciar;
|
|
@ -0,0 +1,57 @@
|
|||
var querystring = require("querystring");
|
||||
var xml2js = require('xml2js');
|
||||
var soap = require('soap');
|
||||
var getXml = require('./getXml');
|
||||
var credential = require('./credential');
|
||||
|
||||
function soapClient(xmlFile){
|
||||
|
||||
var url = 'http://services2-acc.floraholland.com/CommercialCustomer/CommercialCustomer_1p5.svc?wsdl';
|
||||
var auth = "Basic " + new Buffer(credential.user + ":" + credential.pass).toString("base64");
|
||||
var options =
|
||||
{
|
||||
wsdl_headers:{
|
||||
Authorization: auth
|
||||
},
|
||||
attributesKey: '$',
|
||||
valueKey: '_'
|
||||
};
|
||||
|
||||
soap.createClient(url,options, function(err, client) {
|
||||
if (err) {
|
||||
console.log(err);
|
||||
return;
|
||||
}
|
||||
|
||||
client.setSecurity(new soap.BasicAuthSecurity(credential.use,credential.pass));
|
||||
console.log('no entra');
|
||||
getXml.getXml(xmlFile, function(err, data) {
|
||||
if (err) {
|
||||
console.log('err');
|
||||
console.log(err);
|
||||
return;
|
||||
}
|
||||
var parser = new xml2js.Parser();
|
||||
parser.parseString(data, function (err, result) {
|
||||
//extractedData = result['config']['data'];
|
||||
console.dir(result,{
|
||||
showHidden:true,
|
||||
depth:null,
|
||||
colors:true
|
||||
});
|
||||
console.log('GetSupply');
|
||||
console.log(result);
|
||||
console.log(result.SupplyRequest);
|
||||
client.GetSupply(result.SupplyRequest,function(err, supply) {
|
||||
console.log('last request: ', client.lastRequest)
|
||||
if (err) {
|
||||
console.log(err.message);
|
||||
return;
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
soapClient('/xml_buyer/supplyrequest_getall.xml');
|
|
@ -0,0 +1,138 @@
|
|||
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:fec:florecom:xml:data:draft:OrderStandardMessage:7" xmlns:urn1="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6" xmlns:urn2="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:3">
|
||||
<soapenv:Header/>
|
||||
<soapenv:Body>
|
||||
<urn:PutOrderRequest>
|
||||
<urn:Header>
|
||||
<urn:MessageID>1</urn:MessageID>
|
||||
<urn:MessageDateTime>2013-10-08T00:00:00.000+02:00</urn:MessageDateTime>
|
||||
<urn:MessageSerial>1</urn:MessageSerial>
|
||||
</urn:Header>
|
||||
<urn:Body>
|
||||
<urn:Order>
|
||||
<urn:AgentParty>
|
||||
<urn1:PrimaryID schemeID="1" schemeAgencyName="FEC">8713783248188</urn1:PrimaryID>
|
||||
</urn:AgentParty>
|
||||
<urn:OrderTradeLineItem>
|
||||
<urn1:ID schemeName="ON" schemeDataURI="8718288047281" schemeURI="8718288047281">Test1234</urn1:ID>
|
||||
<urn1:DocumentType>220</urn1:DocumentType>
|
||||
<urn1:LineDateTime>2013-10-23T00:00:00.000+02:00</urn1:LineDateTime>
|
||||
<b:TradingTerms xmlns:b="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6">
|
||||
<b:MarketPlace>
|
||||
<b:ID schemeID="1" schemeAgencyName="FEC">8713783439036</b:ID>
|
||||
</b:MarketPlace>
|
||||
<b:MarketFormCode>002</b:MarketFormCode>
|
||||
<b:PaymentAgentParty>
|
||||
<b:PrimaryID schemeID="1" schemeAgencyName="FEC">8713783440810</b:PrimaryID>
|
||||
</b:PaymentAgentParty>
|
||||
<b:TradePeriod>
|
||||
<b:StartDateTime>2016-12-17T06:00:00+01:00</b:StartDateTime>
|
||||
<b:EndDateTime>2016-12-22T06:00:00+01:00</b:EndDateTime>
|
||||
</b:TradePeriod>
|
||||
<b:Condition>
|
||||
<b:TypeCode>302</b:TypeCode>
|
||||
<b:ValueMeasure>3</b:ValueMeasure>
|
||||
</b:Condition>
|
||||
<b:Condition>
|
||||
<b:TypeCode>303</b:TypeCode>
|
||||
<b:ValueMeasure>1</b:ValueMeasure>
|
||||
</b:Condition>
|
||||
<b:Condition>
|
||||
<b:TypeCode>304</b:TypeCode>
|
||||
<b:ValueMeasure>1</b:ValueMeasure>
|
||||
</b:Condition>
|
||||
</b:TradingTerms>
|
||||
<urn1:ReferencedDocument>
|
||||
<urn2:IssuerAssignedID schemeName="AAG" schemeURI="8713783248188" schemeDataURI="8713783445297">5016507809336</urn2:IssuerAssignedID>
|
||||
</urn1:ReferencedDocument>
|
||||
<b:SupplierParty xmlns:b="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6">
|
||||
<c:PrimaryID schemeID="1" schemeAgencyName="FEC" xmlns:c="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:3">8713783483954</c:PrimaryID>
|
||||
<c:AdditionalID schemeID="IT" schemeAgencyName="FH" xmlns:c="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:3">99984</c:AdditionalID>
|
||||
<c:Name xmlns:c="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:3">Testnr FloraMondo 4 kw</c:Name>
|
||||
</b:SupplierParty>
|
||||
<urn1:CustomerParty>
|
||||
<urn2:PrimaryID schemeID="1" schemeAgencyName="FEC">8718288047281</urn2:PrimaryID>
|
||||
<urn2:AdditionalID schemeID="IT" schemeAgencyName="FH">67501</urn2:AdditionalID>
|
||||
<urn2:Name>TEST NUMMER K.O.A.</urn2:Name>
|
||||
<urn2:DefinedTradeContact>
|
||||
<urn2:ID>A1234</urn2:ID>
|
||||
<urn2:PersonName>Chris Nowe</urn2:PersonName>
|
||||
</urn2:DefinedTradeContact>
|
||||
</urn1:CustomerParty>
|
||||
<urn1:EndUserParty>
|
||||
<urn2:PrimaryID schemeID="1" schemeAgencyName="FEC">8714231202769</urn2:PrimaryID>
|
||||
</urn1:EndUserParty>
|
||||
<b:Product xmlns:b="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6">
|
||||
<b:IndustryAssignedID schemeID="1" schemeAgencyName="VBN">109278</b:IndustryAssignedID>
|
||||
<b:SupplierAssignedID schemeID="1" schemeAgencyName="FEC">TestFicEuroCo</b:SupplierAssignedID>
|
||||
<b:DescriptionText languageCode="nl">ARR FICUS</b:DescriptionText>
|
||||
<b:TypeCode>57</b:TypeCode>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S01</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">019</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S03</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">005</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S15</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">050</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S62</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">NL</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S98</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">A1</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ManufacturerParty>
|
||||
<c:PrimaryID schemeID="1" schemeAgencyName="FEC" xmlns:c="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:3">8713783483954</c:PrimaryID>
|
||||
<c:Name xmlns:c="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:3">Testnr FloraMondo 4 kw</c:Name>
|
||||
</b:ManufacturerParty>
|
||||
</b:Product>
|
||||
<urn1:Quantity unitCode="3">5</urn1:Quantity>
|
||||
<b:Price xmlns:b="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6">
|
||||
<b:TypeCode>AE</b:TypeCode>
|
||||
<b:ChargeAmount currencyCode="EUR">2.500</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:NetPriceIndicator>false</b:NetPriceIndicator>
|
||||
<b:MinimumQuantity unitCode="3">1</b:MinimumQuantity>
|
||||
</b:Price>
|
||||
<b:Packing xmlns:b="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6">
|
||||
<b:ID schemeName="MB">1</b:ID>
|
||||
<b:Package>
|
||||
<b:TypeCode listID="8" listAgencyName="FEC">3</b:TypeCode>
|
||||
<b:Quantity unitCode="5">1</b:Quantity>
|
||||
</b:Package>
|
||||
<b:InnerPackageQuantity unitCode="4">2</b:InnerPackageQuantity>
|
||||
<b:InnerPacking>
|
||||
<b:Package>
|
||||
<b:TypeCode listID="8" listAgencyName="FEC">15</b:TypeCode>
|
||||
<b:Quantity unitCode="4">2</b:Quantity>
|
||||
</b:Package>
|
||||
<b:InnerPackageQuantity unitCode="3">6</b:InnerPackageQuantity>
|
||||
<b:InnerPacking>
|
||||
<b:Package>
|
||||
<b:TypeCode listID="901" listAgencyName="VBN">999</b:TypeCode>
|
||||
<b:Quantity unitCode="3">12</b:Quantity>
|
||||
</b:Package>
|
||||
<b:InnerPackageQuantity unitCode="1">2</b:InnerPackageQuantity>
|
||||
</b:InnerPacking>
|
||||
</b:InnerPacking>
|
||||
</b:Packing>
|
||||
<urn1:Delivery>
|
||||
<urn1:DeliveryTerms>
|
||||
<urn2:DeliveryTypeCode>DDP</urn2:DeliveryTypeCode>
|
||||
<urn2:RelevantTradeLocation>
|
||||
<urn2:ID schemeID="4" schemeAgencyName="FEC">8714231208754</urn2:ID>
|
||||
</urn2:RelevantTradeLocation>
|
||||
</urn1:DeliveryTerms>
|
||||
<urn1:LatestDeliveryDateTime>2016-12-22T13:00:00+01:00</urn1:LatestDeliveryDateTime>
|
||||
</urn1:Delivery>
|
||||
</urn:OrderTradeLineItem>
|
||||
</urn:Order>
|
||||
</urn:Body>
|
||||
</urn:PutOrderRequest>
|
||||
</soapenv:Body>
|
||||
</soapenv:Envelope>
|
|
@ -0,0 +1,35 @@
|
|||
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:fec:florecom:xml:data:draft:OrderStandardMessage:7">
|
||||
<soapenv:Header/>
|
||||
<soapenv:Body>
|
||||
<urn:PutOrderRequest>
|
||||
<urn:Header>
|
||||
<urn:MessageID>1</urn:MessageID>
|
||||
<urn:MessageDateTime>2013-10-08T00:00:00.000+02:00</urn:MessageDateTime>
|
||||
<urn:MessageSerial>1</urn:MessageSerial>
|
||||
</urn:Header>
|
||||
<urn:Body>
|
||||
<urn:Order>
|
||||
<urn:AgentParty>
|
||||
<urn1:PrimaryID schemeID="1" schemeAgencyName="FEC" xmlns:urn1="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6">8713783248188</urn1:PrimaryID>
|
||||
</urn:AgentParty>
|
||||
<urn:OrderTradeLineItem>
|
||||
<urn1:ID schemeName="ON" schemeDataURI="8718288047281" schemeURI="8718288047281" xmlns:urn1="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6">Test123</urn1:ID>
|
||||
<urn1:DocumentType xmlns:urn1="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6">220</urn1:DocumentType>
|
||||
<urn1:LineDateTime xmlns:urn1="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6">2016-12-21T00:00:00.000+02:00</urn1:LineDateTime>
|
||||
<urn1:ReferencedDocument xmlns:urn1="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6">
|
||||
<urn2:IssuerAssignedID schemeName="AAG" schemeURI="8713783248188" schemeDataURI="8713783445297" xmlns:urn2="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:3">5016507809336</urn2:IssuerAssignedID>
|
||||
</urn1:ReferencedDocument>
|
||||
<urn1:Quantity unitCode="3" xmlns:urn1="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6">1</urn1:Quantity>
|
||||
<b:Price xmlns:b="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6">
|
||||
<b:TypeCode>AE</b:TypeCode>
|
||||
<b:ChargeAmount currencyCode="EUR">2.500</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:NetPriceIndicator>false</b:NetPriceIndicator>
|
||||
<b:MinimumQuantity unitCode="3">1</b:MinimumQuantity>
|
||||
</b:Price>
|
||||
</urn:OrderTradeLineItem>
|
||||
</urn:Order>
|
||||
</urn:Body>
|
||||
</urn:PutOrderRequest>
|
||||
</soapenv:Body>
|
||||
</soapenv:Envelope>
|
|
@ -0,0 +1,147 @@
|
|||
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
|
||||
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
<a:PutOrderResponse xmlns:a="urn:fec:florecom:xml:data:draft:OrderStandardMessage:7" xmlns:b="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6" xmlns:c="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:3">
|
||||
<a:Body>
|
||||
<a:OrderResponse>
|
||||
<a:AgentParty>
|
||||
<b:PrimaryID schemeID="1" schemeAgencyName="FEC">8713783248188</b:PrimaryID>
|
||||
</a:AgentParty>
|
||||
<a:OrderResponseTradeLineItem>
|
||||
<b:ID schemeName="VN" schemeDataURI="8713783483954" schemeURI="8713783248188">5116512853137</b:ID>
|
||||
<b:DocumentType>231</b:DocumentType>
|
||||
<b:LineDateTime>2016-12-21T11:06:37.8753528+01:00</b:LineDateTime>
|
||||
<b:TradingTerms>
|
||||
<b:MarketPlace>
|
||||
<b:ID schemeID="1" schemeAgencyName="FEC">8713783439036</b:ID>
|
||||
</b:MarketPlace>
|
||||
<b:MarketFormCode>002</b:MarketFormCode>
|
||||
<b:PaymentAgentParty>
|
||||
<b:PrimaryID schemeID="1" schemeAgencyName="FEC">8713783440810</b:PrimaryID>
|
||||
</b:PaymentAgentParty>
|
||||
<b:Condition>
|
||||
<b:TypeCode>302</b:TypeCode>
|
||||
<b:ValueMeasure>1</b:ValueMeasure>
|
||||
</b:Condition>
|
||||
<b:Condition>
|
||||
<b:TypeCode>303</b:TypeCode>
|
||||
<b:ValueMeasure>2</b:ValueMeasure>
|
||||
</b:Condition>
|
||||
<b:Condition>
|
||||
<b:TypeCode>304</b:TypeCode>
|
||||
<b:ValueMeasure>1</b:ValueMeasure>
|
||||
</b:Condition>
|
||||
</b:TradingTerms>
|
||||
<b:ReferencedDocument>
|
||||
<c:IssuerAssignedID schemeName="AAJ" schemeDataURI="8713783483954" schemeURI="8713783248188">5116512853137</c:IssuerAssignedID>
|
||||
<c:TypeCode>231</c:TypeCode>
|
||||
</b:ReferencedDocument>
|
||||
<b:ReferencedDocument>
|
||||
<c:IssuerAssignedID schemeName="ON" schemeDataURI="8718288047281" schemeURI="8718288047281">CHRIS11:06:27.823</c:IssuerAssignedID>
|
||||
<c:TypeCode>220</c:TypeCode>
|
||||
</b:ReferencedDocument>
|
||||
<b:ReferencedDocument>
|
||||
<c:IssuerAssignedID schemeName="AAG" schemeDataURI="8713783483954" schemeURI="8713783248188">5016507809336</c:IssuerAssignedID>
|
||||
<c:TypeCode>9</c:TypeCode>
|
||||
</b:ReferencedDocument>
|
||||
<b:ReferencedDocument>
|
||||
<c:IssuerAssignedID schemeName="IRN" schemeDataURI="8713783483954" schemeURI="8713783803622">8713783483954bc399e71c8f44</c:IssuerAssignedID>
|
||||
<c:URIID schemeID="1" schemeAgencyName="FEC">http://diensten-acc.royalfloraholland.com/beeldbankfotos/foto/volledig/8713783483954bc399e71c8f44</c:URIID>
|
||||
<c:LineID schemeID="1" schemeAgencyName="FEC">001</c:LineID>
|
||||
</b:ReferencedDocument>
|
||||
<b:SupplierParty>
|
||||
<c:PrimaryID schemeID="1" schemeAgencyName="FEC">8713783483954</c:PrimaryID>
|
||||
<c:AdditionalID schemeID="IT" schemeAgencyName="FH">99984</c:AdditionalID>
|
||||
<c:Name>Testnr FloraMondo 4 kw</c:Name>
|
||||
</b:SupplierParty>
|
||||
<b:CustomerParty>
|
||||
<c:PrimaryID schemeID="1" schemeAgencyName="FEC">8718288047281</c:PrimaryID>
|
||||
<c:AdditionalID schemeID="IT" schemeAgencyName="FH">67501</c:AdditionalID>
|
||||
<c:Name>Testnr Floramondo 5 kp</c:Name>
|
||||
</b:CustomerParty>
|
||||
<b:Product>
|
||||
<b:IndustryAssignedID schemeID="1" schemeAgencyName="VBN">109278</b:IndustryAssignedID>
|
||||
<b:SupplierAssignedID schemeID="1" schemeAgencyName="FEC">TestFicEuroCo</b:SupplierAssignedID>
|
||||
<b:DescriptionText languageCode="nl">ARR FICUS</b:DescriptionText>
|
||||
<b:TypeCode>57</b:TypeCode>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S01</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">019</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S03</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">005</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S15</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">050</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S62</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">NL</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S98</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">A1</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ManufacturerParty>
|
||||
<c:PrimaryID schemeID="1" schemeAgencyName="FEC">8713783483954</c:PrimaryID>
|
||||
<c:Name>Testnr FloraMondo 4 kw</c:Name>
|
||||
</b:ManufacturerParty>
|
||||
</b:Product>
|
||||
<b:Quantity unitCode="3">1</b:Quantity>
|
||||
<b:Price>
|
||||
<b:TypeCode>AE</b:TypeCode>
|
||||
<b:ChargeAmount currencyCode="EUR">2.500</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:NetPriceIndicator>false</b:NetPriceIndicator>
|
||||
<b:MinimumQuantity unitCode="3">1</b:MinimumQuantity>
|
||||
</b:Price>
|
||||
<b:Packing>
|
||||
<b:ID schemeName="MB">1</b:ID>
|
||||
<b:Package>
|
||||
<b:TypeCode listID="8" listAgencyName="FEC">3</b:TypeCode>
|
||||
<b:Quantity unitCode="5">1</b:Quantity>
|
||||
</b:Package>
|
||||
<b:InnerPackageQuantity unitCode="4">2</b:InnerPackageQuantity>
|
||||
<b:InnerPacking>
|
||||
<b:Package>
|
||||
<b:TypeCode listID="8" listAgencyName="FEC">15</b:TypeCode>
|
||||
<b:Quantity unitCode="4">2</b:Quantity>
|
||||
</b:Package>
|
||||
<b:InnerPackageQuantity unitCode="3">6</b:InnerPackageQuantity>
|
||||
<b:InnerPacking>
|
||||
<b:Package>
|
||||
<b:TypeCode listID="901" listAgencyName="VBN">999</b:TypeCode>
|
||||
<b:Quantity unitCode="3">12</b:Quantity>
|
||||
</b:Package>
|
||||
<b:InnerPackageQuantity unitCode="1">2</b:InnerPackageQuantity>
|
||||
</b:InnerPacking>
|
||||
</b:InnerPacking>
|
||||
</b:Packing>
|
||||
<b:Delivery>
|
||||
<b:DeliveryTerms>
|
||||
<c:DeliveryTypeCode>DDP</c:DeliveryTypeCode>
|
||||
<c:RelevantTradeLocation>
|
||||
<c:ID schemeID="4" schemeAgencyName="FEC">8714231208754</c:ID>
|
||||
</c:RelevantTradeLocation>
|
||||
</b:DeliveryTerms>
|
||||
<b:DeliveryPrice>
|
||||
<b:ChargeAmount currencyCode="EUR">0.000</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:MinimumQuantity unitCode="3">1</b:MinimumQuantity>
|
||||
</b:DeliveryPrice>
|
||||
<b:LatestDeliveryDateTime>2016-12-22T13:00:00+01:00</b:LatestDeliveryDateTime>
|
||||
</b:Delivery>
|
||||
<b:Status>
|
||||
<b:ConditionCode>73</b:ConditionCode>
|
||||
</b:Status>
|
||||
<b:TradeTotal>
|
||||
<b:ProductQuantity unitCode="1">2</b:ProductQuantity>
|
||||
<b:TypeCode>55</b:TypeCode>
|
||||
</b:TradeTotal>
|
||||
</a:OrderResponseTradeLineItem>
|
||||
</a:OrderResponse>
|
||||
</a:Body>
|
||||
</a:PutOrderResponse>
|
||||
</s:Body>
|
||||
</s:Envelope>
|
|
@ -0,0 +1,24 @@
|
|||
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:fec:florecom:xml:data:draft:SupplyStandardMessage:7">
|
||||
<soapenv:Header/>
|
||||
<soapenv:Body>
|
||||
<urn:SupplyRequest>
|
||||
<urn:Header>
|
||||
<urn:MessageID>1</urn:MessageID>
|
||||
<urn:MessageDateTime>2013-10-03T00:00:00.000+02:00</urn:MessageDateTime>
|
||||
<urn:MessageSerial>1</urn:MessageSerial>
|
||||
</urn:Header>
|
||||
<urn:Body>
|
||||
<urn:SupplyRequestDetails>
|
||||
<urn:AgentParty>
|
||||
<urn1:PrimaryID schemeID="1" schemeAgencyName="FEC" xmlns:urn1="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6">8713783248188</urn1:PrimaryID>
|
||||
</urn:AgentParty>
|
||||
<urn:SupplyRequestLine>
|
||||
<urn1:ReferencedDocument xmlns:urn1="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6">
|
||||
<urn2:IssuerAssignedID schemeName="AAG" schemeDataURI="8713783445297" schemeURI="8713783248188" xmlns:urn2="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:3">5016507807236</urn2:IssuerAssignedID>
|
||||
</urn1:ReferencedDocument>
|
||||
</urn:SupplyRequestLine>
|
||||
</urn:SupplyRequestDetails>
|
||||
</urn:Body>
|
||||
</urn:SupplyRequest>
|
||||
</soapenv:Body>
|
||||
</soapenv:Envelope>
|
|
@ -0,0 +1,19 @@
|
|||
<SupplyRequest>
|
||||
<Header>
|
||||
<MessageID>1</MessageID>
|
||||
<MessageDateTime>#MessageDateTime</MessageDateTime>
|
||||
<MessageSerial>1</MessageSerial>
|
||||
</Header>
|
||||
<Body>
|
||||
<SupplyRequestDetails>
|
||||
<AgentParty>
|
||||
<PrimaryID schemeID="1" schemeAgencyName="FEC">#AgentParty</PrimaryID>
|
||||
</AgentParty>
|
||||
</SupplyRequestDetails>
|
||||
</Body>
|
||||
</SupplyRequest>
|
||||
<!-- Z:\soap\SOAP-usb\FloraHolland CC_VMP_Message_Guide_Supply_0 7 v4.3 -->
|
||||
<!-- """8713783248188"": FH (e-Trade)
|
||||
""8713783851739"": FH Aalsmeer
|
||||
""8714231145400"" FH PlantConnect"
|
||||
-->
|
|
@ -0,0 +1,13 @@
|
|||
<SupplyRequestDetails>
|
||||
<AgentParty>
|
||||
<PrimaryID schemeID="1" schemeAgencyName="FEC">#AgentParty</PrimaryID>
|
||||
</AgentParty>
|
||||
<SupplyRequestLine>
|
||||
<MutationDateTime>2017-04-01T10:35:00+01:00</MutationDateTime>
|
||||
</SupplyRequestLine>
|
||||
</SupplyRequestDetails>
|
||||
|
||||
<!-- """8713783248188"": FH (e-Trade)
|
||||
""8713783851739"": FH Aalsmeer
|
||||
""8714231145400"" FH PlantConnect"
|
||||
-->
|
|
@ -0,0 +1,22 @@
|
|||
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:fec:florecom:xml:data:draft:SupplyStandardMessage:7" xmlns:urn1="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6">
|
||||
<soapenv:Header/>
|
||||
<soapenv:Body>
|
||||
<urn:SupplyRequest>
|
||||
<urn:Header>
|
||||
<urn:MessageID>1</urn:MessageID>
|
||||
<urn:MessageDateTime>2013-10-03T00:00:00.000+02:00</urn:MessageDateTime>
|
||||
<urn:MessageSerial>1</urn:MessageSerial>
|
||||
</urn:Header>
|
||||
<urn:Body>
|
||||
<urn:SupplyRequestDetails>
|
||||
<urn:AgentParty>
|
||||
<urn1:PrimaryID schemeID="1" schemeAgencyName="FEC">8713783248188</urn1:PrimaryID>
|
||||
</urn:AgentParty>
|
||||
<urn:SupplyRequestLine>
|
||||
<urn1:MutationDateTime>2016-11-14T08:41:19.17+02:00</urn1:MutationDateTime>
|
||||
</urn:SupplyRequestLine>
|
||||
</urn:SupplyRequestDetails>
|
||||
</urn:Body>
|
||||
</urn:SupplyRequest>
|
||||
</soapenv:Body>
|
||||
</soapenv:Envelope>
|
|
@ -0,0 +1,468 @@
|
|||
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
|
||||
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
<SupplyResponse xmlns="urn:fec:florecom:xml:data:draft:SupplyStandardMessage:7" xmlns:a="urn:fec:florecom:xml:data:draft:OrderStandardMessage:7" xmlns:b="urn:fec:florecom:xml:data:draft:ReusableAggregateBusinessInformationEntity:6" xmlns:c="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:3">
|
||||
<Body>
|
||||
<SupplyResponseDetails>
|
||||
<AgentParty>
|
||||
<b:PrimaryID schemeID="1" schemeAgencyName="FEC">8713783248188</b:PrimaryID>
|
||||
</AgentParty>
|
||||
<SupplyTradeLineItem>
|
||||
<b:ID schemeName="AAG" schemeDataURI="8713782567990" schemeURI="8713783248188">5016507809110</b:ID>
|
||||
<b:DocumentType>9</b:DocumentType>
|
||||
<b:LineDateTime>2016-12-14T12:16:52.52+01:00</b:LineDateTime>
|
||||
<b:TradingTerms>
|
||||
<b:MarketPlace>
|
||||
<b:ID schemeID="1" schemeAgencyName="FEC">8713783439043</b:ID>
|
||||
</b:MarketPlace>
|
||||
<b:MarketFormCode>003</b:MarketFormCode>
|
||||
<b:PaymentAgentParty>
|
||||
<b:PrimaryID schemeID="1" schemeAgencyName="FEC">8713783440810</b:PrimaryID>
|
||||
</b:PaymentAgentParty>
|
||||
<b:TradePeriod>
|
||||
<b:StartDateTime>2016-12-14T07:00:00+01:00</b:StartDateTime>
|
||||
<b:EndDateTime>2016-12-15T05:55:00+01:00</b:EndDateTime>
|
||||
</b:TradePeriod>
|
||||
<b:Condition>
|
||||
<b:TypeCode>302</b:TypeCode>
|
||||
<b:ValueMeasure>2</b:ValueMeasure>
|
||||
</b:Condition>
|
||||
<b:Condition>
|
||||
<b:TypeCode>303</b:TypeCode>
|
||||
<b:ValueMeasure>1</b:ValueMeasure>
|
||||
</b:Condition>
|
||||
<b:Condition>
|
||||
<b:TypeCode>304</b:TypeCode>
|
||||
<b:ValueMeasure>1</b:ValueMeasure>
|
||||
</b:Condition>
|
||||
</b:TradingTerms>
|
||||
<b:ReferencedDocument>
|
||||
<c:IssuerAssignedID schemeName="AAG" schemeDataURI="8713782567990" schemeURI="8713783248188">20161215-2010-1514a</c:IssuerAssignedID>
|
||||
<c:IssueDateTime>2016-12-14T12:16:52+01:00</c:IssueDateTime>
|
||||
</b:ReferencedDocument>
|
||||
<b:ReferencedDocument>
|
||||
<c:IssuerAssignedID schemeName="IRN" schemeDataURI="8713782567990" schemeURI="8713783803622">87137825679901MB</c:IssuerAssignedID>
|
||||
<c:URIID schemeID="1" schemeAgencyName="FEC">http://diensten-acc.royalfloraholland.com/beeldbankfotos/foto/volledig/87137825679901MB</c:URIID>
|
||||
<c:LineID schemeID="1" schemeAgencyName="FEC">001</c:LineID>
|
||||
</b:ReferencedDocument>
|
||||
<b:ReferencedDocument>
|
||||
<c:IssuerAssignedID schemeName="ACE" schemeDataURI="8713782567990" schemeURI="8713782567990">1514</c:IssuerAssignedID>
|
||||
<c:LineID>a</c:LineID>
|
||||
<c:TypeCode>9</c:TypeCode>
|
||||
</b:ReferencedDocument>
|
||||
<b:SupplierParty>
|
||||
<c:PrimaryID schemeID="1" schemeAgencyName="FEC">8713782567990</c:PrimaryID>
|
||||
<c:AdditionalID schemeID="IT" schemeAgencyName="FH">2010</c:AdditionalID>
|
||||
<c:Name>ANCO</c:Name>
|
||||
</b:SupplierParty>
|
||||
<b:Product>
|
||||
<b:IndustryAssignedID schemeID="1" schemeAgencyName="VBN">973</b:IndustryAssignedID>
|
||||
<b:DescriptionText languageCode="nl">CYMB T GEM</b:DescriptionText>
|
||||
<b:TypeCode>57</b:TypeCode>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S05</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">011</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S20</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">060</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S22</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">025</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S62</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">NL</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S97</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">008</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S98</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">A1</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ManufacturerParty>
|
||||
<c:PrimaryID schemeID="1" schemeAgencyName="FEC">8713782567990</c:PrimaryID>
|
||||
<c:Name>ANCO</c:Name>
|
||||
</b:ManufacturerParty>
|
||||
</b:Product>
|
||||
<b:Quantity unitCode="1">100</b:Quantity>
|
||||
<b:IncrementalOrderableQuantity unitCode="3">1</b:IncrementalOrderableQuantity>
|
||||
<b:Price>
|
||||
<b:TypeCode>AE</b:TypeCode>
|
||||
<b:ChargeAmount currencyCode="EUR">3.980</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:NetPriceIndicator>false</b:NetPriceIndicator>
|
||||
<b:MinimumQuantity unitCode="3">1</b:MinimumQuantity>
|
||||
</b:Price>
|
||||
<b:Packing>
|
||||
<b:ID schemeName="MB">1</b:ID>
|
||||
<b:Package>
|
||||
<b:TypeCode listID="901" listAgencyName="VBN">631</b:TypeCode>
|
||||
<b:Quantity unitCode="3">1</b:Quantity>
|
||||
</b:Package>
|
||||
<b:InnerPackageQuantity unitCode="1">25</b:InnerPackageQuantity>
|
||||
</b:Packing>
|
||||
<b:Delivery>
|
||||
<b:DeliveryTerms>
|
||||
<c:DeliveryTypeCode>DDP</c:DeliveryTypeCode>
|
||||
<c:RelevantTradeLocation>
|
||||
<c:ID schemeID="4" schemeAgencyName="FEC">8714231208754</c:ID>
|
||||
</c:RelevantTradeLocation>
|
||||
</b:DeliveryTerms>
|
||||
<b:DeliveryPrice>
|
||||
<b:ChargeAmount currencyCode="EUR">0.000</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:MinimumQuantity unitCode="3">1</b:MinimumQuantity>
|
||||
</b:DeliveryPrice>
|
||||
<b:LatestOrderDateTime>2016-12-15T05:55:00+01:00</b:LatestOrderDateTime>
|
||||
<b:EarliestDespatchDateTime>2016-12-15T06:00:00+01:00</b:EarliestDespatchDateTime>
|
||||
<b:LatestDeliveryDateTime>2016-12-15T12:00:00+01:00</b:LatestDeliveryDateTime>
|
||||
</b:Delivery>
|
||||
<b:Status>
|
||||
<b:ConditionCode>71</b:ConditionCode>
|
||||
</b:Status>
|
||||
</SupplyTradeLineItem>
|
||||
<SupplyTradeLineItem>
|
||||
<b:ID schemeName="AAG" schemeDataURI="8713783445297" schemeURI="8713783248188">5016507809114</b:ID>
|
||||
<b:DocumentType>9</b:DocumentType>
|
||||
<b:LineDateTime>2016-12-14T11:24:23.92+01:00</b:LineDateTime>
|
||||
<b:TradingTerms>
|
||||
<b:MarketPlace>
|
||||
<b:ID schemeID="1" schemeAgencyName="FEC">8713783439036</b:ID>
|
||||
</b:MarketPlace>
|
||||
<b:MarketFormCode>002</b:MarketFormCode>
|
||||
<b:PaymentAgentParty>
|
||||
<b:PrimaryID schemeID="1" schemeAgencyName="FEC">8713783440810</b:PrimaryID>
|
||||
</b:PaymentAgentParty>
|
||||
<b:PaymentAgentParty>
|
||||
<b:PrimaryID schemeID="1" schemeAgencyName="FEC">8713783440803</b:PrimaryID>
|
||||
</b:PaymentAgentParty>
|
||||
<b:TradePeriod>
|
||||
<b:StartDateTime>2016-12-10T06:00:00+01:00</b:StartDateTime>
|
||||
<b:EndDateTime>2016-12-15T06:00:00+01:00</b:EndDateTime>
|
||||
</b:TradePeriod>
|
||||
<b:Condition>
|
||||
<b:TypeCode>302</b:TypeCode>
|
||||
<b:ValueMeasure>3</b:ValueMeasure>
|
||||
</b:Condition>
|
||||
<b:Condition>
|
||||
<b:TypeCode>303</b:TypeCode>
|
||||
<b:ValueMeasure>1</b:ValueMeasure>
|
||||
</b:Condition>
|
||||
<b:Condition>
|
||||
<b:TypeCode>304</b:TypeCode>
|
||||
<b:ValueMeasure>1</b:ValueMeasure>
|
||||
</b:Condition>
|
||||
</b:TradingTerms>
|
||||
<b:ReferencedDocument>
|
||||
<c:IssuerAssignedID schemeName="AAG" schemeDataURI="8713783445297" schemeURI="8713783248188">20161214-7096156-1</c:IssuerAssignedID>
|
||||
<c:IssueDateTime>2016-12-14T11:24:23+01:00</c:IssueDateTime>
|
||||
</b:ReferencedDocument>
|
||||
<b:ReferencedDocument>
|
||||
<c:IssuerAssignedID schemeName="IRN" schemeDataURI="8713783445297" schemeURI="8713783803622">87137834452974742b3f88d8d4</c:IssuerAssignedID>
|
||||
<c:URIID schemeID="1" schemeAgencyName="FEC">http://diensten-acc.royalfloraholland.com/beeldbankfotos/foto/volledig/87137834452974742b3f88d8d4</c:URIID>
|
||||
<c:LineID schemeID="1" schemeAgencyName="FEC">001</c:LineID>
|
||||
</b:ReferencedDocument>
|
||||
<b:SupplierParty>
|
||||
<c:PrimaryID schemeID="1" schemeAgencyName="FEC">8713783445297</c:PrimaryID>
|
||||
<c:AdditionalID schemeID="IT" schemeAgencyName="FH">99999</c:AdditionalID>
|
||||
<c:Name>Testnummer klok (niet sluiten)</c:Name>
|
||||
</b:SupplierParty>
|
||||
<b:Product>
|
||||
<b:IndustryAssignedID schemeID="1" schemeAgencyName="VBN">973</b:IndustryAssignedID>
|
||||
<b:SupplierAssignedID schemeID="1" schemeAgencyName="FEC">234</b:SupplierAssignedID>
|
||||
<b:DescriptionText languageCode="nl">cymbidium 1</b:DescriptionText>
|
||||
<b:TypeCode>57</b:TypeCode>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S01</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">030</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S02</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">041</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S03</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">006</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S05</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">023</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S08</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">002</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S20</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">032</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S22</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">009</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S62</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">NL</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ApplicableGoodsCharacteristics>
|
||||
<b:TypeCode listID="8" listAgencyName="VBN">S98</b:TypeCode>
|
||||
<b:ValueCode listID="9" listAgencyName="VBN">A1</b:ValueCode>
|
||||
</b:ApplicableGoodsCharacteristics>
|
||||
<b:ManufacturerParty>
|
||||
<c:PrimaryID schemeID="1" schemeAgencyName="FEC">8713783445297</c:PrimaryID>
|
||||
<c:Name>Testnummer klok (niet sluiten)</c:Name>
|
||||
</b:ManufacturerParty>
|
||||
</b:Product>
|
||||
<b:Quantity unitCode="1">30</b:Quantity>
|
||||
<b:IncrementalOrderableQuantity unitCode="3">1</b:IncrementalOrderableQuantity>
|
||||
<b:Price>
|
||||
<b:TypeCode>AE</b:TypeCode>
|
||||
<b:ChargeAmount currencyCode="EUR">10.000</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:NetPriceIndicator>false</b:NetPriceIndicator>
|
||||
<b:MinimumQuantity unitCode="3">1</b:MinimumQuantity>
|
||||
</b:Price>
|
||||
<b:Packing>
|
||||
<b:ID schemeName="MB">1</b:ID>
|
||||
<b:Package>
|
||||
<b:TypeCode listID="8" listAgencyName="FEC">1</b:TypeCode>
|
||||
<b:Quantity unitCode="5">1</b:Quantity>
|
||||
</b:Package>
|
||||
<b:InnerPackageQuantity unitCode="4">1</b:InnerPackageQuantity>
|
||||
<b:InnerPacking>
|
||||
<b:Package>
|
||||
<b:TypeCode listID="8" listAgencyName="FEC">19</b:TypeCode>
|
||||
<b:Quantity unitCode="4">1</b:Quantity>
|
||||
</b:Package>
|
||||
<b:InnerPackageQuantity unitCode="3">80</b:InnerPackageQuantity>
|
||||
<b:InnerPacking>
|
||||
<b:Package>
|
||||
<b:TypeCode listID="901" listAgencyName="VBN">800</b:TypeCode>
|
||||
<b:Quantity unitCode="3">80</b:Quantity>
|
||||
</b:Package>
|
||||
<b:InnerPackageQuantity unitCode="1">1</b:InnerPackageQuantity>
|
||||
</b:InnerPacking>
|
||||
</b:InnerPacking>
|
||||
</b:Packing>
|
||||
<b:Delivery>
|
||||
<b:DeliveryTerms>
|
||||
<c:DeliveryTypeCode>DDP</c:DeliveryTypeCode>
|
||||
<c:RelevantTradeLocation>
|
||||
<c:ID schemeID="4" schemeAgencyName="FEC">8714231208754</c:ID>
|
||||
</c:RelevantTradeLocation>
|
||||
</b:DeliveryTerms>
|
||||
<b:DeliveryPrice>
|
||||
<b:ChargeAmount currencyCode="EUR">0.006</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:MinimumQuantity unitCode="3">9</b:MinimumQuantity>
|
||||
</b:DeliveryPrice>
|
||||
<b:LatestOrderDateTime>2016-12-15T06:00:00+01:00</b:LatestOrderDateTime>
|
||||
<b:LatestDeliveryDateTime>2016-12-15T13:00:00+01:00</b:LatestDeliveryDateTime>
|
||||
</b:Delivery>
|
||||
<b:Delivery>
|
||||
<b:DeliveryTerms>
|
||||
<c:DeliveryTypeCode>DDP</c:DeliveryTypeCode>
|
||||
<c:RelevantTradeLocation>
|
||||
<c:ID schemeID="4" schemeAgencyName="FEC">8714231208723</c:ID>
|
||||
</c:RelevantTradeLocation>
|
||||
</b:DeliveryTerms>
|
||||
<b:DeliveryPrice>
|
||||
<b:ChargeAmount currencyCode="EUR">0.000</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:MinimumQuantity unitCode="3">9</b:MinimumQuantity>
|
||||
</b:DeliveryPrice>
|
||||
<b:LatestOrderDateTime>2016-12-15T06:00:00+01:00</b:LatestOrderDateTime>
|
||||
<b:LatestDeliveryDateTime>2016-12-15T13:00:00+01:00</b:LatestDeliveryDateTime>
|
||||
</b:Delivery>
|
||||
<b:Delivery>
|
||||
<b:DeliveryTerms>
|
||||
<c:DeliveryTypeCode>DDP</c:DeliveryTypeCode>
|
||||
<c:RelevantTradeLocation>
|
||||
<c:ID schemeID="4" schemeAgencyName="FEC">8714231208693</c:ID>
|
||||
</c:RelevantTradeLocation>
|
||||
</b:DeliveryTerms>
|
||||
<b:DeliveryPrice>
|
||||
<b:ChargeAmount currencyCode="EUR">0.000</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:MinimumQuantity unitCode="3">9</b:MinimumQuantity>
|
||||
</b:DeliveryPrice>
|
||||
<b:LatestOrderDateTime>2016-12-15T06:00:00+01:00</b:LatestOrderDateTime>
|
||||
<b:LatestDeliveryDateTime>2016-12-15T13:00:00+01:00</b:LatestDeliveryDateTime>
|
||||
</b:Delivery>
|
||||
<b:Delivery>
|
||||
<b:DeliveryTerms>
|
||||
<c:DeliveryTypeCode>DDP</c:DeliveryTypeCode>
|
||||
<c:RelevantTradeLocation>
|
||||
<c:ID schemeID="4" schemeAgencyName="FEC">8714231208747</c:ID>
|
||||
</c:RelevantTradeLocation>
|
||||
</b:DeliveryTerms>
|
||||
<b:DeliveryPrice>
|
||||
<b:ChargeAmount currencyCode="EUR">0.050</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:MinimumQuantity unitCode="3">9</b:MinimumQuantity>
|
||||
</b:DeliveryPrice>
|
||||
<b:LatestOrderDateTime>2016-12-15T06:00:00+01:00</b:LatestOrderDateTime>
|
||||
<b:LatestDeliveryDateTime>2016-12-15T13:00:00+01:00</b:LatestDeliveryDateTime>
|
||||
</b:Delivery>
|
||||
<b:Delivery>
|
||||
<b:DeliveryTerms>
|
||||
<c:DeliveryTypeCode>DDP</c:DeliveryTypeCode>
|
||||
<c:RelevantTradeLocation>
|
||||
<c:ID schemeID="4" schemeAgencyName="FEC">8713783843772</c:ID>
|
||||
</c:RelevantTradeLocation>
|
||||
</b:DeliveryTerms>
|
||||
<b:DeliveryPrice>
|
||||
<b:ChargeAmount currencyCode="EUR">0.000</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:MinimumQuantity unitCode="3">9</b:MinimumQuantity>
|
||||
</b:DeliveryPrice>
|
||||
<b:LatestOrderDateTime>2016-12-15T06:00:00+01:00</b:LatestOrderDateTime>
|
||||
<b:LatestDeliveryDateTime>2016-12-15T13:00:00+01:00</b:LatestDeliveryDateTime>
|
||||
</b:Delivery>
|
||||
<b:Delivery>
|
||||
<b:DeliveryTerms>
|
||||
<c:DeliveryTypeCode>DDP</c:DeliveryTypeCode>
|
||||
<c:RelevantTradeLocation>
|
||||
<c:ID schemeID="4" schemeAgencyName="FEC">8714231208730</c:ID>
|
||||
</c:RelevantTradeLocation>
|
||||
</b:DeliveryTerms>
|
||||
<b:DeliveryPrice>
|
||||
<b:ChargeAmount currencyCode="EUR">0.000</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:MinimumQuantity unitCode="3">9</b:MinimumQuantity>
|
||||
</b:DeliveryPrice>
|
||||
<b:LatestOrderDateTime>2016-12-15T06:00:00+01:00</b:LatestOrderDateTime>
|
||||
<b:LatestDeliveryDateTime>2016-12-15T13:00:00+01:00</b:LatestDeliveryDateTime>
|
||||
</b:Delivery>
|
||||
<b:Delivery>
|
||||
<b:DeliveryTerms>
|
||||
<c:DeliveryTypeCode>EXW</c:DeliveryTypeCode>
|
||||
<c:RelevantTradeLocation>
|
||||
<c:ID schemeID="4" schemeAgencyName="FEC">8714231208761</c:ID>
|
||||
</c:RelevantTradeLocation>
|
||||
</b:DeliveryTerms>
|
||||
<b:DeliveryPrice>
|
||||
<b:ChargeAmount currencyCode="EUR">0.000</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:MinimumQuantity unitCode="3">9</b:MinimumQuantity>
|
||||
</b:DeliveryPrice>
|
||||
<b:LatestOrderDateTime>2016-12-15T06:00:00+01:00</b:LatestOrderDateTime>
|
||||
<b:LatestDeliveryDateTime>2016-12-15T13:00:00+01:00</b:LatestDeliveryDateTime>
|
||||
</b:Delivery>
|
||||
<b:Delivery>
|
||||
<b:DeliveryTerms>
|
||||
<c:DeliveryTypeCode>DDP</c:DeliveryTypeCode>
|
||||
<c:RelevantTradeLocation>
|
||||
<c:ID schemeID="4" schemeAgencyName="FEC">8714231208754</c:ID>
|
||||
</c:RelevantTradeLocation>
|
||||
</b:DeliveryTerms>
|
||||
<b:DeliveryPrice>
|
||||
<b:ChargeAmount currencyCode="EUR">0.006</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:MinimumQuantity unitCode="3">9</b:MinimumQuantity>
|
||||
</b:DeliveryPrice>
|
||||
<b:LatestOrderDateTime>2016-12-14T13:00:00+01:00</b:LatestOrderDateTime>
|
||||
<b:LatestDeliveryDateTime>2016-12-15T06:00:00+01:00</b:LatestDeliveryDateTime>
|
||||
</b:Delivery>
|
||||
<b:Delivery>
|
||||
<b:DeliveryTerms>
|
||||
<c:DeliveryTypeCode>DDP</c:DeliveryTypeCode>
|
||||
<c:RelevantTradeLocation>
|
||||
<c:ID schemeID="4" schemeAgencyName="FEC">8714231208723</c:ID>
|
||||
</c:RelevantTradeLocation>
|
||||
</b:DeliveryTerms>
|
||||
<b:DeliveryPrice>
|
||||
<b:ChargeAmount currencyCode="EUR">0.000</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:MinimumQuantity unitCode="3">9</b:MinimumQuantity>
|
||||
</b:DeliveryPrice>
|
||||
<b:LatestOrderDateTime>2016-12-14T13:00:00+01:00</b:LatestOrderDateTime>
|
||||
<b:LatestDeliveryDateTime>2016-12-15T06:00:00+01:00</b:LatestDeliveryDateTime>
|
||||
</b:Delivery>
|
||||
<b:Delivery>
|
||||
<b:DeliveryTerms>
|
||||
<c:DeliveryTypeCode>DDP</c:DeliveryTypeCode>
|
||||
<c:RelevantTradeLocation>
|
||||
<c:ID schemeID="4" schemeAgencyName="FEC">8714231208693</c:ID>
|
||||
</c:RelevantTradeLocation>
|
||||
</b:DeliveryTerms>
|
||||
<b:DeliveryPrice>
|
||||
<b:ChargeAmount currencyCode="EUR">0.000</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:MinimumQuantity unitCode="3">9</b:MinimumQuantity>
|
||||
</b:DeliveryPrice>
|
||||
<b:LatestOrderDateTime>2016-12-14T13:00:00+01:00</b:LatestOrderDateTime>
|
||||
<b:LatestDeliveryDateTime>2016-12-15T06:00:00+01:00</b:LatestDeliveryDateTime>
|
||||
</b:Delivery>
|
||||
<b:Delivery>
|
||||
<b:DeliveryTerms>
|
||||
<c:DeliveryTypeCode>DDP</c:DeliveryTypeCode>
|
||||
<c:RelevantTradeLocation>
|
||||
<c:ID schemeID="4" schemeAgencyName="FEC">8714231208747</c:ID>
|
||||
</c:RelevantTradeLocation>
|
||||
</b:DeliveryTerms>
|
||||
<b:DeliveryPrice>
|
||||
<b:ChargeAmount currencyCode="EUR">0.050</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:MinimumQuantity unitCode="3">9</b:MinimumQuantity>
|
||||
</b:DeliveryPrice>
|
||||
<b:LatestOrderDateTime>2016-12-14T13:00:00+01:00</b:LatestOrderDateTime>
|
||||
<b:LatestDeliveryDateTime>2016-12-15T06:00:00+01:00</b:LatestDeliveryDateTime>
|
||||
</b:Delivery>
|
||||
<b:Delivery>
|
||||
<b:DeliveryTerms>
|
||||
<c:DeliveryTypeCode>DDP</c:DeliveryTypeCode>
|
||||
<c:RelevantTradeLocation>
|
||||
<c:ID schemeID="4" schemeAgencyName="FEC">8713783843772</c:ID>
|
||||
</c:RelevantTradeLocation>
|
||||
</b:DeliveryTerms>
|
||||
<b:DeliveryPrice>
|
||||
<b:ChargeAmount currencyCode="EUR">0.000</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:MinimumQuantity unitCode="3">9</b:MinimumQuantity>
|
||||
</b:DeliveryPrice>
|
||||
<b:LatestOrderDateTime>2016-12-14T13:00:00+01:00</b:LatestOrderDateTime>
|
||||
<b:LatestDeliveryDateTime>2016-12-15T06:00:00+01:00</b:LatestDeliveryDateTime>
|
||||
</b:Delivery>
|
||||
<b:Delivery>
|
||||
<b:DeliveryTerms>
|
||||
<c:DeliveryTypeCode>DDP</c:DeliveryTypeCode>
|
||||
<c:RelevantTradeLocation>
|
||||
<c:ID schemeID="4" schemeAgencyName="FEC">8714231208730</c:ID>
|
||||
</c:RelevantTradeLocation>
|
||||
</b:DeliveryTerms>
|
||||
<b:DeliveryPrice>
|
||||
<b:ChargeAmount currencyCode="EUR">0.000</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:MinimumQuantity unitCode="3">9</b:MinimumQuantity>
|
||||
</b:DeliveryPrice>
|
||||
<b:LatestOrderDateTime>2016-12-14T13:00:00+01:00</b:LatestOrderDateTime>
|
||||
<b:LatestDeliveryDateTime>2016-12-15T06:00:00+01:00</b:LatestDeliveryDateTime>
|
||||
</b:Delivery>
|
||||
<b:Delivery>
|
||||
<b:DeliveryTerms>
|
||||
<c:DeliveryTypeCode>EXW</c:DeliveryTypeCode>
|
||||
<c:RelevantTradeLocation>
|
||||
<c:ID schemeID="4" schemeAgencyName="FEC">8714231208761</c:ID>
|
||||
</c:RelevantTradeLocation>
|
||||
</b:DeliveryTerms>
|
||||
<b:DeliveryPrice>
|
||||
<b:ChargeAmount currencyCode="EUR">0.000</b:ChargeAmount>
|
||||
<b:BasisQuantity unitCode="1">1</b:BasisQuantity>
|
||||
<b:MinimumQuantity unitCode="3">9</b:MinimumQuantity>
|
||||
</b:DeliveryPrice>
|
||||
<b:LatestOrderDateTime>2016-12-14T13:00:00+01:00</b:LatestOrderDateTime>
|
||||
<b:LatestDeliveryDateTime>2016-12-15T06:00:00+01:00</b:LatestDeliveryDateTime>
|
||||
</b:Delivery>
|
||||
<b:Status>
|
||||
<b:ConditionCode>71</b:ConditionCode>
|
||||
</b:Status>
|
||||
</SupplyTradeLineItem>
|
||||
</SupplyResponseDetails>
|
||||
</Body>
|
||||
</SupplyResponse>
|
||||
</s:Body>
|
||||
</s:Envelope>
|
Loading…
Reference in New Issue