rconomic 0.5.1 → 0.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -0
  3. data/LICENSE +6 -4
  4. data/README.md +19 -8
  5. data/Rakefile +9 -1
  6. data/lib/economic/account.rb +6 -6
  7. data/lib/economic/cash_book.rb +6 -6
  8. data/lib/economic/creditor.rb +26 -27
  9. data/lib/economic/current_invoice.rb +26 -1
  10. data/lib/economic/current_invoice_line.rb +17 -21
  11. data/lib/economic/debtor.rb +16 -5
  12. data/lib/economic/economic.wsdl +28493 -23200
  13. data/lib/economic/endpoint.rb +8 -1
  14. data/lib/economic/entity/handle.rb +2 -1
  15. data/lib/economic/invoice.rb +1 -0
  16. data/lib/economic/order.rb +66 -0
  17. data/lib/economic/proxies/actions/find_by_number.rb +1 -1
  18. data/lib/economic/proxies/actions/find_by_telephone_and_fax_number.rb +18 -0
  19. data/lib/economic/proxies/debtor_proxy.rb +63 -0
  20. data/lib/economic/proxies/entity_proxy.rb +0 -1
  21. data/lib/economic/proxies/order_proxy.rb +18 -0
  22. data/lib/economic/session.rb +37 -12
  23. data/lib/rconomic.rb +2 -0
  24. data/lib/rconomic/version.rb +1 -1
  25. data/rconomic.gemspec +1 -1
  26. data/spec/economic/account_spec.rb +34 -0
  27. data/spec/economic/cash_book_spec.rb +28 -0
  28. data/spec/economic/creditor_spec.rb +19 -0
  29. data/spec/economic/current_invoice_line_spec.rb +21 -0
  30. data/spec/economic/debtor_spec.rb +33 -8
  31. data/spec/economic/endpoint_spec.rb +18 -0
  32. data/spec/economic/entity/handle_spec.rb +2 -2
  33. data/spec/economic/order_spec.rb +80 -0
  34. data/spec/economic/proxies/debtor_contact_proxy_spec.rb +1 -1
  35. data/spec/economic/proxies/debtor_proxy_spec.rb +69 -0
  36. data/spec/economic/proxies/order_proxy_spec.rb +67 -0
  37. data/spec/economic/session_spec.rb +99 -11
  38. data/spec/fixtures/cash_book_update_from_data/success.xml +14 -0
  39. data/spec/fixtures/connect_with_token/success.xml +8 -0
  40. data/spec/fixtures/creditor_create_from_data/success.xml +49 -0
  41. data/spec/fixtures/current_invoice_line_create_from_data/success.xml +42 -0
  42. data/spec/fixtures/debtor_find_by_telephone_and_fax_number/found.xml +12 -0
  43. data/spec/fixtures/debtor_find_by_telephone_and_fax_number/not_found.xml +7 -0
  44. data/spec/fixtures/debtor_get_debtor_contacts/multiple.xml +15 -0
  45. data/spec/fixtures/debtor_get_debtor_contacts/none.xml +9 -0
  46. data/spec/fixtures/debtor_get_invoices/success.xml +15 -0
  47. data/spec/fixtures/debtor_get_orders/success.xml +12 -0
  48. data/spec/fixtures/order_find_by_date_interval/many.xml +15 -0
  49. data/spec/fixtures/order_find_by_date_interval/none.xml +9 -0
  50. data/spec/fixtures/order_find_by_date_interval/single.xml +12 -0
  51. data/spec/fixtures/order_get_data/success.xml +75 -0
  52. data/spec/fixtures/order_get_data_array/multiple.xml +145 -0
  53. data/spec/fixtures/order_get_data_array/single.xml +77 -0
  54. data/spec/fixtures/order_get_pdf/success.xml +8 -0
  55. metadata +28 -4
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soap:Body>
4
+ <CashBook_UpdateFromData xmlns="http://e-conomic.com">
5
+ <data>
6
+ <Handle>
7
+ <Number>int</Number>
8
+ </Handle>
9
+ <Number>int</Number>
10
+ <Name>string</Name>
11
+ </data>
12
+ </CashBook_UpdateFromData>
13
+ </soap:Body>
14
+ </soap:Envelope>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soap:Body>
4
+ <ConnectWithTokenResponse xmlns="http://e-conomic.com">
5
+ <ConnectWithTokenResult>string</ConnectWithTokenResult>
6
+ </ConnectWithTokenResponse>
7
+ </soap:Body>
8
+ </soap:Envelope>
@@ -0,0 +1,49 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soap:Body>
4
+ <Creditor_CreateFromData xmlns="http://e-conomic.com">
5
+ <data>
6
+ <Handle>
7
+ <Number>string</Number>
8
+ </Handle>
9
+ <Number>string</Number>
10
+ <CreditorGroupHandle>
11
+ <Number>int</Number>
12
+ </CreditorGroupHandle>
13
+ <Name>string</Name>
14
+ <VatZone>HomeCountry</VatZone>
15
+ <CurrencyHandle>
16
+ <Code>string</Code>
17
+ </CurrencyHandle>
18
+ <TermOfPaymentHandle>
19
+ <Id>int</Id>
20
+ </TermOfPaymentHandle>
21
+ <IsAccessible>boolean</IsAccessible>
22
+ <CINumber>string</CINumber>
23
+ <Email>string</Email>
24
+ <Address>string</Address>
25
+ <PostalCode>string</PostalCode>
26
+ <City>string</City>
27
+ <Country>string</Country>
28
+ <BankAccount>string</BankAccount>
29
+ <AttentionHandle>
30
+ <Id>int</Id>
31
+ </AttentionHandle>
32
+ <YourReferenceHandle>
33
+ <Id>int</Id>
34
+ </YourReferenceHandle>
35
+ <OurReferenceHandle>
36
+ <Number>int</Number>
37
+ </OurReferenceHandle>
38
+ <DefaultPaymentTypeHandle>
39
+ <Number>string</Number>
40
+ </DefaultPaymentTypeHandle>
41
+ <DefaultPaymentCreditorId>string</DefaultPaymentCreditorId>
42
+ <County>string</County>
43
+ <AutoContraAccountHandle>
44
+ <Number>int</Number>
45
+ </AutoContraAccountHandle>
46
+ </data>
47
+ </Creditor_CreateFromData>
48
+ </soap:Body>
49
+ </soap:Envelope>
@@ -0,0 +1,42 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soap:Body>
4
+ <CurrentInvoiceLine_CreateFromData xmlns="http://e-conomic.com">
5
+ <data>
6
+ <Handle>
7
+ <Id>int</Id>
8
+ <Number>int</Number>
9
+ </Handle>
10
+ <Id>int</Id>
11
+ <Number>int</Number>
12
+ <InvoiceHandle>
13
+ <Id>int</Id>
14
+ </InvoiceHandle>
15
+ <Description>string</Description>
16
+ <DeliveryDate>dateTime</DeliveryDate>
17
+ <UnitHandle>
18
+ <Number>int</Number>
19
+ </UnitHandle>
20
+ <ProductHandle>
21
+ <Number>string</Number>
22
+ </ProductHandle>
23
+ <Quantity>decimal</Quantity>
24
+ <UnitNetPrice>decimal</UnitNetPrice>
25
+ <DiscountAsPercent>decimal</DiscountAsPercent>
26
+ <UnitCostPrice>decimal</UnitCostPrice>
27
+ <TotalNetAmount>decimal</TotalNetAmount>
28
+ <TotalMargin>decimal</TotalMargin>
29
+ <MarginAsPercent>decimal</MarginAsPercent>
30
+ <DepartmentHandle>
31
+ <Number>int</Number>
32
+ </DepartmentHandle>
33
+ <DistributionKeyHandle>
34
+ <Number>int</Number>
35
+ </DistributionKeyHandle>
36
+ <InventoryLocationHandle>
37
+ <Number>int</Number>
38
+ </InventoryLocationHandle>
39
+ </data>
40
+ </CurrentInvoiceLine_CreateFromData>
41
+ </soap:Body>
42
+ </soap:Envelope>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soap:Body>
4
+ <Debtor_FindByTelephoneAndFaxNumberResponse xmlns="http://e-conomic.com">
5
+ <Debtor_FindByTelephoneAndFaxNumberResult>
6
+ <DebtorHandle>
7
+ <Number>1</Number>
8
+ </DebtorHandle>
9
+ </Debtor_FindByTelephoneAndFaxNumberResult>
10
+ </Debtor_FindByTelephoneAndFaxNumberResponse>
11
+ </soap:Body>
12
+ </soap:Envelope>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soap:Body>
4
+ <Debtor_FindByTelephoneAndFaxNumberResponse xmlns="http://e-conomic.com" />
5
+ </soap:Body>
6
+ </soap:Envelope>
7
+
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soap:Body>
4
+ <Debtor_GetDebtorContactsResponse xmlns="http://e-conomic.com">
5
+ <Debtor_GetDebtorContactsResult>
6
+ <DebtorContactHandle>
7
+ <Id>12</Id>
8
+ </DebtorContactHandle>
9
+ <DebtorContactHandle>
10
+ <Id>34</Id>
11
+ </DebtorContactHandle>
12
+ </Debtor_GetDebtorContactsResult>
13
+ </Debtor_GetDebtorContactsResponse>
14
+ </soap:Body>
15
+ </soap:Envelope>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soap:Body>
4
+ <DebtorContact_FindByNameResponse xmlns="http://e-conomic.com">
5
+ <DebtorContact_FindByNameResult>
6
+ </DebtorContact_FindByNameResult>
7
+ </DebtorContact_FindByNameResponse>
8
+ </soap:Body>
9
+ </soap:Envelope>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
3
+ <soap:Body>
4
+ <Debtor_GetInvoicesResponse xmlns="http://e-conomic.com">
5
+ <Debtor_GetInvoicesResult>
6
+ <InvoiceHandle>
7
+ <Number>1</Number>
8
+ </InvoiceHandle>
9
+ <InvoiceHandle>
10
+ <Number>2</Number>
11
+ </InvoiceHandle>
12
+ </Debtor_GetInvoicesResult>
13
+ </Debtor_GetInvoicesResponse>
14
+ </soap:Body>
15
+ </soap:Envelope>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soap:Body>
4
+ <Debtor_GetOrdersResponse xmlns="http://e-conomic.com">
5
+ <Debtor_GetOrdersResult>
6
+ <OrderHandle>
7
+ <Id>1</Id>
8
+ </OrderHandle>
9
+ </Debtor_GetOrdersResult>
10
+ </Debtor_GetOrdersResponse>
11
+ </soap:Body>
12
+ </soap:Envelope>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soap:Body>
4
+ <Order_FindByDateIntervalResponse xmlns="http://e-conomic.com">
5
+ <Order_FindByDateIntervalResult>
6
+ <OrderHandle>
7
+ <Id>1</Id>
8
+ </OrderHandle>
9
+ <OrderHandle>
10
+ <Id>2</Id>
11
+ </OrderHandle>
12
+ </Order_FindByDateIntervalResult>
13
+ </Order_FindByDateIntervalResponse>
14
+ </soap:Body>
15
+ </soap:Envelope>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soap:Body>
4
+ <Order_FindByDateIntervalResponse xmlns="http://e-conomic.com">
5
+ <Order_FindByDateIntervalResult>
6
+ </Order_FindByDateIntervalResult>
7
+ </Order_FindByDateIntervalResponse>
8
+ </soap:Body>
9
+ </soap:Envelope>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soap:Body>
4
+ <Order_FindByDateIntervalResponse xmlns="http://e-conomic.com">
5
+ <Order_FindByDateIntervalResult>
6
+ <OrderHandle>
7
+ <Id>int</Id>
8
+ </OrderHandle>
9
+ </Order_FindByDateIntervalResult>
10
+ </Order_FindByDateIntervalResponse>
11
+ </soap:Body>
12
+ </soap:Envelope>
@@ -0,0 +1,75 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soap:Body>
4
+ <Order_GetDataResponse xmlns="http://e-conomic.com">
5
+ <Order_GetDataResult>
6
+ <Handle>
7
+ <Id>int</Id>
8
+ </Handle>
9
+ <Id>int</Id>
10
+ <DebtorHandle>
11
+ <Number>string</Number>
12
+ </DebtorHandle>
13
+ <ProjectHandle>
14
+ <Number>int</Number>
15
+ </ProjectHandle>
16
+ <Number>int</Number>
17
+ <DebtorName>string</DebtorName>
18
+ <DebtorAddress>string</DebtorAddress>
19
+ <DebtorPostalCode>string</DebtorPostalCode>
20
+ <DebtorCity>string</DebtorCity>
21
+ <DebtorCountry>string</DebtorCountry>
22
+ <DebtorEan>string</DebtorEan>
23
+ <PublicEntryNumber>string</PublicEntryNumber>
24
+ <AttentionHandle>
25
+ <Id>int</Id>
26
+ </AttentionHandle>
27
+ <YourReferenceHandle>
28
+ <Id>int</Id>
29
+ </YourReferenceHandle>
30
+ <OurReferenceHandle>
31
+ <Number>int</Number>
32
+ </OurReferenceHandle>
33
+ <OurReference2Handle>
34
+ <Number>int</Number>
35
+ </OurReference2Handle>
36
+ <Date>dateTime</Date>
37
+ <TermOfPaymentHandle>
38
+ <Id>int</Id>
39
+ </TermOfPaymentHandle>
40
+ <DueDate>dateTime</DueDate>
41
+ <CurrencyHandle>
42
+ <Code>string</Code>
43
+ </CurrencyHandle>
44
+ <ExchangeRate>decimal</ExchangeRate>
45
+ <IsVatIncluded>boolean</IsVatIncluded>
46
+ <LayoutHandle>
47
+ <Id>int</Id>
48
+ </LayoutHandle>
49
+ <DeliveryLocationHandle>
50
+ <Id>int</Id>
51
+ </DeliveryLocationHandle>
52
+ <DeliveryAddress>string</DeliveryAddress>
53
+ <DeliveryPostalCode>string</DeliveryPostalCode>
54
+ <DeliveryCity>string</DeliveryCity>
55
+ <DeliveryCountry>string</DeliveryCountry>
56
+ <TermsOfDelivery>string</TermsOfDelivery>
57
+ <DeliveryDate>dateTime</DeliveryDate>
58
+ <Heading>string</Heading>
59
+ <TextLine1>string</TextLine1>
60
+ <TextLine2>string</TextLine2>
61
+ <OtherReference>string</OtherReference>
62
+ <IsArchived>boolean</IsArchived>
63
+ <IsSent>boolean</IsSent>
64
+ <NetAmount>decimal</NetAmount>
65
+ <VatAmount>decimal</VatAmount>
66
+ <GrossAmount>decimal</GrossAmount>
67
+ <Margin>decimal</Margin>
68
+ <MarginAsPercent>decimal</MarginAsPercent>
69
+ <RoundingAmount>decimal</RoundingAmount>
70
+ <DebtorCounty>string</DebtorCounty>
71
+ <DeliveryCounty>string</DeliveryCounty>
72
+ </Order_GetDataResult>
73
+ </Order_GetDataResponse>
74
+ </soap:Body>
75
+ </soap:Envelope>
@@ -0,0 +1,145 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soap:Body>
4
+ <Order_GetDataArrayResponse xmlns="http://e-conomic.com">
5
+ <Order_GetDataArrayResult>
6
+ <OrderData>
7
+ <Handle>
8
+ <Id>int</Id>
9
+ </Handle>
10
+ <Id>int</Id>
11
+ <DebtorHandle>
12
+ <Number>string</Number>
13
+ </DebtorHandle>
14
+ <ProjectHandle>
15
+ <Number>int</Number>
16
+ </ProjectHandle>
17
+ <Number>int</Number>
18
+ <DebtorName>string</DebtorName>
19
+ <DebtorAddress>string</DebtorAddress>
20
+ <DebtorPostalCode>string</DebtorPostalCode>
21
+ <DebtorCity>string</DebtorCity>
22
+ <DebtorCountry>string</DebtorCountry>
23
+ <DebtorEan>string</DebtorEan>
24
+ <PublicEntryNumber>string</PublicEntryNumber>
25
+ <AttentionHandle>
26
+ <Id>int</Id>
27
+ </AttentionHandle>
28
+ <YourReferenceHandle>
29
+ <Id>int</Id>
30
+ </YourReferenceHandle>
31
+ <OurReferenceHandle>
32
+ <Number>int</Number>
33
+ </OurReferenceHandle>
34
+ <OurReference2Handle>
35
+ <Number>int</Number>
36
+ </OurReference2Handle>
37
+ <Date>dateTime</Date>
38
+ <TermOfPaymentHandle>
39
+ <Id>int</Id>
40
+ </TermOfPaymentHandle>
41
+ <DueDate>dateTime</DueDate>
42
+ <CurrencyHandle>
43
+ <Code>string</Code>
44
+ </CurrencyHandle>
45
+ <ExchangeRate>decimal</ExchangeRate>
46
+ <IsVatIncluded>boolean</IsVatIncluded>
47
+ <LayoutHandle>
48
+ <Id>int</Id>
49
+ </LayoutHandle>
50
+ <DeliveryLocationHandle>
51
+ <Id>int</Id>
52
+ </DeliveryLocationHandle>
53
+ <DeliveryAddress>string</DeliveryAddress>
54
+ <DeliveryPostalCode>string</DeliveryPostalCode>
55
+ <DeliveryCity>string</DeliveryCity>
56
+ <DeliveryCountry>string</DeliveryCountry>
57
+ <TermsOfDelivery>string</TermsOfDelivery>
58
+ <DeliveryDate>dateTime</DeliveryDate>
59
+ <Heading>string</Heading>
60
+ <TextLine1>string</TextLine1>
61
+ <TextLine2>string</TextLine2>
62
+ <OtherReference>string</OtherReference>
63
+ <IsArchived>boolean</IsArchived>
64
+ <IsSent>boolean</IsSent>
65
+ <NetAmount>decimal</NetAmount>
66
+ <VatAmount>decimal</VatAmount>
67
+ <GrossAmount>decimal</GrossAmount>
68
+ <Margin>decimal</Margin>
69
+ <MarginAsPercent>decimal</MarginAsPercent>
70
+ <RoundingAmount>decimal</RoundingAmount>
71
+ <DebtorCounty>string</DebtorCounty>
72
+ <DeliveryCounty>string</DeliveryCounty>
73
+ </OrderData>
74
+ <OrderData>
75
+ <Handle>
76
+ <Id>int</Id>
77
+ </Handle>
78
+ <Id>int</Id>
79
+ <DebtorHandle>
80
+ <Number>string</Number>
81
+ </DebtorHandle>
82
+ <ProjectHandle>
83
+ <Number>int</Number>
84
+ </ProjectHandle>
85
+ <Number>int</Number>
86
+ <DebtorName>string</DebtorName>
87
+ <DebtorAddress>string</DebtorAddress>
88
+ <DebtorPostalCode>string</DebtorPostalCode>
89
+ <DebtorCity>string</DebtorCity>
90
+ <DebtorCountry>string</DebtorCountry>
91
+ <DebtorEan>string</DebtorEan>
92
+ <PublicEntryNumber>string</PublicEntryNumber>
93
+ <AttentionHandle>
94
+ <Id>int</Id>
95
+ </AttentionHandle>
96
+ <YourReferenceHandle>
97
+ <Id>int</Id>
98
+ </YourReferenceHandle>
99
+ <OurReferenceHandle>
100
+ <Number>int</Number>
101
+ </OurReferenceHandle>
102
+ <OurReference2Handle>
103
+ <Number>int</Number>
104
+ </OurReference2Handle>
105
+ <Date>dateTime</Date>
106
+ <TermOfPaymentHandle>
107
+ <Id>int</Id>
108
+ </TermOfPaymentHandle>
109
+ <DueDate>dateTime</DueDate>
110
+ <CurrencyHandle>
111
+ <Code>string</Code>
112
+ </CurrencyHandle>
113
+ <ExchangeRate>decimal</ExchangeRate>
114
+ <IsVatIncluded>boolean</IsVatIncluded>
115
+ <LayoutHandle>
116
+ <Id>int</Id>
117
+ </LayoutHandle>
118
+ <DeliveryLocationHandle>
119
+ <Id>int</Id>
120
+ </DeliveryLocationHandle>
121
+ <DeliveryAddress>string</DeliveryAddress>
122
+ <DeliveryPostalCode>string</DeliveryPostalCode>
123
+ <DeliveryCity>string</DeliveryCity>
124
+ <DeliveryCountry>string</DeliveryCountry>
125
+ <TermsOfDelivery>string</TermsOfDelivery>
126
+ <DeliveryDate>dateTime</DeliveryDate>
127
+ <Heading>string</Heading>
128
+ <TextLine1>string</TextLine1>
129
+ <TextLine2>string</TextLine2>
130
+ <OtherReference>string</OtherReference>
131
+ <IsArchived>boolean</IsArchived>
132
+ <IsSent>boolean</IsSent>
133
+ <NetAmount>decimal</NetAmount>
134
+ <VatAmount>decimal</VatAmount>
135
+ <GrossAmount>decimal</GrossAmount>
136
+ <Margin>decimal</Margin>
137
+ <MarginAsPercent>decimal</MarginAsPercent>
138
+ <RoundingAmount>decimal</RoundingAmount>
139
+ <DebtorCounty>string</DebtorCounty>
140
+ <DeliveryCounty>string</DeliveryCounty>
141
+ </OrderData>
142
+ </Order_GetDataArrayResult>
143
+ </Order_GetDataArrayResponse>
144
+ </soap:Body>
145
+ </soap:Envelope>