ruconomic 0.9.0

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 (75) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +5 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +100 -0
  6. data/Rakefile +2 -0
  7. data/lib/ruconomic/api/account.rb +520 -0
  8. data/lib/ruconomic/api/accounting_period.rb +113 -0
  9. data/lib/ruconomic/api/accounting_year.rb +161 -0
  10. data/lib/ruconomic/api/activity.rb +90 -0
  11. data/lib/ruconomic/api/bank_payment_type.rb +103 -0
  12. data/lib/ruconomic/api/budget_figure.rb +343 -0
  13. data/lib/ruconomic/api/cash_book.rb +232 -0
  14. data/lib/ruconomic/api/cash_book_entry.rb +716 -0
  15. data/lib/ruconomic/api/company.rb +294 -0
  16. data/lib/ruconomic/api/cost_type.rb +138 -0
  17. data/lib/ruconomic/api/cost_type_group.rb +115 -0
  18. data/lib/ruconomic/api/creditor.rb +688 -0
  19. data/lib/ruconomic/api/creditor_contact.rb +269 -0
  20. data/lib/ruconomic/api/creditor_entry.rb +235 -0
  21. data/lib/ruconomic/api/creditor_group.rb +208 -0
  22. data/lib/ruconomic/api/currency.rb +67 -0
  23. data/lib/ruconomic/api/current_invoice.rb +1110 -0
  24. data/lib/ruconomic/api/current_invoice_line.rb +440 -0
  25. data/lib/ruconomic/api/current_supplier_invoice.rb +115 -0
  26. data/lib/ruconomic/api/current_supplier_invoice_line.rb +92 -0
  27. data/lib/ruconomic/api/debtor.rb +978 -0
  28. data/lib/ruconomic/api/debtor_contact.rb +328 -0
  29. data/lib/ruconomic/api/debtor_entry.rb +223 -0
  30. data/lib/ruconomic/api/debtor_group.rb +232 -0
  31. data/lib/ruconomic/api/delivery_location.rb +341 -0
  32. data/lib/ruconomic/api/department.rb +197 -0
  33. data/lib/ruconomic/api/distribution_key.rb +187 -0
  34. data/lib/ruconomic/api/document_archive_category.rb +163 -0
  35. data/lib/ruconomic/api/employee.rb +421 -0
  36. data/lib/ruconomic/api/employee_group.rb +199 -0
  37. data/lib/ruconomic/api/entry.rb +318 -0
  38. data/lib/ruconomic/api/extended_vat_zone.rb +79 -0
  39. data/lib/ruconomic/api/inventory_location.rb +91 -0
  40. data/lib/ruconomic/api/invoice.rb +655 -0
  41. data/lib/ruconomic/api/invoice_line.rb +248 -0
  42. data/lib/ruconomic/api/key_figure_code.rb +103 -0
  43. data/lib/ruconomic/api/mileage_entry.rb +319 -0
  44. data/lib/ruconomic/api/order.rb +1169 -0
  45. data/lib/ruconomic/api/order_line.rb +451 -0
  46. data/lib/ruconomic/api/price_group.rb +200 -0
  47. data/lib/ruconomic/api/product.rb +533 -0
  48. data/lib/ruconomic/api/product_group.rb +271 -0
  49. data/lib/ruconomic/api/product_price.rb +164 -0
  50. data/lib/ruconomic/api/project.rb +449 -0
  51. data/lib/ruconomic/api/project_group.rb +113 -0
  52. data/lib/ruconomic/api/quotation.rb +1145 -0
  53. data/lib/ruconomic/api/quotation_line.rb +451 -0
  54. data/lib/ruconomic/api/report_code.rb +78 -0
  55. data/lib/ruconomic/api/report_code_set.rb +89 -0
  56. data/lib/ruconomic/api/scanned_document.rb +175 -0
  57. data/lib/ruconomic/api/subscriber.rb +475 -0
  58. data/lib/ruconomic/api/subscription.rb +375 -0
  59. data/lib/ruconomic/api/subscription_line.rb +307 -0
  60. data/lib/ruconomic/api/sum_interval.rb +164 -0
  61. data/lib/ruconomic/api/template_collection.rb +78 -0
  62. data/lib/ruconomic/api/term_of_payment.rb +307 -0
  63. data/lib/ruconomic/api/time_entry.rb +258 -0
  64. data/lib/ruconomic/api/unit.rb +187 -0
  65. data/lib/ruconomic/api/vat_account.rb +151 -0
  66. data/lib/ruconomic/api.rb +79 -0
  67. data/lib/ruconomic/fault.rb +17 -0
  68. data/lib/ruconomic/soap/document.rb +79 -0
  69. data/lib/ruconomic/soap/node.rb +24 -0
  70. data/lib/ruconomic/soap.rb +7 -0
  71. data/lib/ruconomic/version.rb +3 -0
  72. data/lib/ruconomic/web_service.rb +50 -0
  73. data/lib/ruconomic.rb +42 -0
  74. data/ruconomic.gemspec +27 -0
  75. metadata +202 -0
@@ -0,0 +1,655 @@
1
+ module Ruconomic
2
+ module API
3
+ module Invoice
4
+ extend Ruconomic::WebService
5
+
6
+ # Gets the due date of the invoice.
7
+ # Parameters: invoiceHandle: Handle for the invoice.
8
+ #
9
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
10
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDueDate
11
+ # @return [Hash] The body content of the SOAP response.
12
+ def self.get_due_date
13
+ response = invoke('Invoice_GetDueDate') do |message|
14
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
15
+ end
16
+ end
17
+
18
+ # Gets the heading of the invoice.
19
+ # Parameters: invoiceHandle: Handle for the invoice.
20
+ #
21
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
22
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetHeading
23
+ # @return [Hash] The body content of the SOAP response.
24
+ def self.get_heading
25
+ response = invoke('Invoice_GetHeading') do |message|
26
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
27
+ end
28
+ end
29
+
30
+ # Gets the primary line of text of the invoice.
31
+ # Parameters: invoiceHandle: Handle for the invoice.
32
+ #
33
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
34
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetTextLine1
35
+ # @return [Hash] The body content of the SOAP response.
36
+ def self.get_text_line1
37
+ response = invoke('Invoice_GetTextLine1') do |message|
38
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
39
+ end
40
+ end
41
+
42
+ # Gets the secondary line of text of the invoice.
43
+ # Parameters: invoiceHandle: Handle for the invoice.
44
+ #
45
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
46
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetTextLine2
47
+ # @return [Hash] The body content of the SOAP response.
48
+ def self.get_text_line2
49
+ response = invoke('Invoice_GetTextLine2') do |message|
50
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
51
+ end
52
+ end
53
+
54
+ # Gets the other reference of the invoice.
55
+ # Parameters: invoiceHandle: Handle for the invoice.
56
+ #
57
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
58
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetOtherReference
59
+ # @return [Hash] The body content of the SOAP response.
60
+ def self.get_other_reference
61
+ response = invoke('Invoice_GetOtherReference') do |message|
62
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
63
+ end
64
+ end
65
+
66
+ # Gets the order number of the invoice.
67
+ # Parameters: invoiceHandle: Handle for the invoice.
68
+ #
69
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
70
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetOrderNumber
71
+ # @return [Hash] The body content of the SOAP response.
72
+ def self.get_order_number
73
+ response = invoke('Invoice_GetOrderNumber') do |message|
74
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
75
+ end
76
+ end
77
+
78
+ # Gets the total amount for all lines without VAT of the invoice (in the currency of the invoice).
79
+ # Parameters: invoiceHandle: Handle for the invoice.
80
+ #
81
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
82
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetNetAmount
83
+ # @return [Hash] The body content of the SOAP response.
84
+ def self.get_net_amount
85
+ response = invoke('Invoice_GetNetAmount') do |message|
86
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
87
+ end
88
+ end
89
+
90
+ # Gets the total VAT amount for all lines of the invoice (in the currency of the invoice).
91
+ # Parameters: invoiceHandle: Handle for the invoice.
92
+ #
93
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
94
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetVatAmount
95
+ # @return [Hash] The body content of the SOAP response.
96
+ def self.get_vat_amount
97
+ response = invoke('Invoice_GetVatAmount') do |message|
98
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
99
+ end
100
+ end
101
+
102
+ # Gets the total gross amount for all lines of the invoice (in the currency of the invoice).
103
+ # Parameters: invoiceHandle: Handle for the invoice.
104
+ #
105
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
106
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetGrossAmount
107
+ # @return [Hash] The body content of the SOAP response.
108
+ def self.get_gross_amount
109
+ response = invoke('Invoice_GetGrossAmount') do |message|
110
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
111
+ end
112
+ end
113
+
114
+ # Gets the remainder of the invoice (in the currency of the invoice).
115
+ # Parameters: invoiceHandle: Handle for the invoice.
116
+ #
117
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
118
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetRemainder
119
+ # @return [Hash] The body content of the SOAP response.
120
+ def self.get_remainder
121
+ response = invoke('Invoice_GetRemainder') do |message|
122
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
123
+ end
124
+ end
125
+
126
+ # Gets the remainder of the invoice (in the default currency).
127
+ # Parameters: invoiceHandle: Handle for the invoice.
128
+ #
129
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
130
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetRemainderDefaultCurrency
131
+ # @return [Hash] The body content of the SOAP response.
132
+ def self.get_remainder_default_currency
133
+ response = invoke('Invoice_GetRemainderDefaultCurrency') do |message|
134
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
135
+ end
136
+ end
137
+
138
+ # Gets the rounding amount for all lines of the invoice (in the currency of the invoice).
139
+ # Parameters: invoiceHandle: Handle for the invoice.
140
+ #
141
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
142
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetRoundingAmount
143
+ # @return [Hash] The body content of the SOAP response.
144
+ def self.get_rounding_amount
145
+ response = invoke('Invoice_GetRoundingAmount') do |message|
146
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
147
+ end
148
+ end
149
+
150
+ # Gets the DebtorCounty of an invoice. (UK only)
151
+ # Parameters: InvoiceHandle: Handle for the Invoice.
152
+ #
153
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
154
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDebtorCounty
155
+ # @return [Hash] The body content of the SOAP response.
156
+ def self.get_debtor_county
157
+ response = invoke('Invoice_GetDebtorCounty') do |message|
158
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
159
+ end
160
+ end
161
+
162
+ # Gets the DeliveryCounty of an invoice. (UK only)
163
+ # Parameters: InvoiceHandle: Handle for the Invoice.
164
+ #
165
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
166
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDeliveryCounty
167
+ # @return [Hash] The body content of the SOAP response.
168
+ def self.get_delivery_county
169
+ response = invoke('Invoice_GetDeliveryCounty') do |message|
170
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
171
+ end
172
+ end
173
+
174
+ # Gets the deduction amount of the invoice.
175
+ # Parameters: invoiceHandle: Handle for the invoice.
176
+ #
177
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
178
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDeductionAmount
179
+ # @return [Hash] The body content of the SOAP response.
180
+ def self.get_deduction_amount
181
+ response = invoke('Invoice_GetDeductionAmount') do |message|
182
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
183
+ end
184
+ end
185
+
186
+ # Returns handles for all invoices.
187
+ #
188
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
189
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetAll
190
+ # @return [Hash] The body content of the SOAP response.
191
+ def self.get_all
192
+ response = invoke('Invoice_GetAll') do |message|
193
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
194
+ end
195
+ end
196
+
197
+ # Returns a handle for the invoice with the given number.
198
+ # Parameters: number: The number to search for.
199
+ #
200
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
201
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_FindByNumber
202
+ # @return [Hash] The body content of the SOAP response.
203
+ def self.find_by_number
204
+ response = invoke('Invoice_FindByNumber') do |message|
205
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
206
+ end
207
+ end
208
+
209
+ # Returns an array with handles for the invoices corresponding to the given invoice numbers. If a invoice with a given number does not exist then the array contains nothing at that index.
210
+ # Parameters: numbers: The numbers to search for.
211
+ #
212
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
213
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_FindByNumberList
214
+ # @return [Hash] The body content of the SOAP response.
215
+ def self.find_by_number_list
216
+ response = invoke('Invoice_FindByNumberList') do |message|
217
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
218
+ end
219
+ end
220
+
221
+ # Returns an array with handles for the invoices with invoice numbers in the given interval.
222
+ # Parameters: minNumber: The start of the interval. maxNumber: The end of the interval.
223
+ #
224
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
225
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_FindByNumberInterval
226
+ # @return [Hash] The body content of the SOAP response.
227
+ def self.find_by_number_interval
228
+ response = invoke('Invoice_FindByNumberInterval') do |message|
229
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
230
+ end
231
+ end
232
+
233
+ # Returns handles for invoices in a given interval of days.
234
+ # Parameters: first: First day in interval. last: Last day in interval.
235
+ #
236
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
237
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_FindByDateInterval
238
+ # @return [Hash] The body content of the SOAP response.
239
+ def self.find_by_date_interval
240
+ response = invoke('Invoice_FindByDateInterval') do |message|
241
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
242
+ end
243
+ end
244
+
245
+ # Returns handles for invoices which have the given employee as OurReference.
246
+ # Parameters: ourReferenceHandle: The employee to search for.
247
+ #
248
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
249
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_FindByOurReference
250
+ # @return [Hash] The body content of the SOAP response.
251
+ def self.find_by_our_reference
252
+ response = invoke('Invoice_FindByOurReference') do |message|
253
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
254
+ end
255
+ end
256
+
257
+ # Returns handles for the invoices with a given other reference.
258
+ # Parameters: otherReference: The other reference to search for.
259
+ #
260
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
261
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_FindByOtherReference
262
+ # @return [Hash] The body content of the SOAP response.
263
+ def self.find_by_other_reference
264
+ response = invoke('Invoice_FindByOtherReference') do |message|
265
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
266
+ end
267
+ end
268
+
269
+ # Returns handles for the invoices with a given order number.
270
+ # Parameters: orderNumber: The number to search for.
271
+ #
272
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
273
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_FindByOrderNumber
274
+ # @return [Hash] The body content of the SOAP response.
275
+ def self.find_by_order_number
276
+ response = invoke('Invoice_FindByOrderNumber') do |message|
277
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
278
+ end
279
+ end
280
+
281
+ # Gets handles for the lines of the invoice.
282
+ # Parameters: invoiceHandle: Handle for the invoice.
283
+ #
284
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
285
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetLines
286
+ # @return [Hash] The body content of the SOAP response.
287
+ def self.get_lines
288
+ response = invoke('Invoice_GetLines') do |message|
289
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
290
+ end
291
+ end
292
+
293
+ # Gets an invoice as a PDF-file.
294
+ # Parameters: invoiceHandle: Handle for the invoice.
295
+ #
296
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
297
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetPdf
298
+ # @return [Hash] The body content of the SOAP response.
299
+ def self.get_pdf
300
+ response = invoke('Invoice_GetPdf') do |message|
301
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
302
+ end
303
+ end
304
+
305
+ # Gets an OIO XML string representing an invoice.
306
+ # Parameters: invoiceHandle: Handle for the invoice.
307
+ #
308
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
309
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetOioXml
310
+ # @return [Hash] The body content of the SOAP response.
311
+ def self.get_oio_xml
312
+ response = invoke('Invoice_GetOioXml') do |message|
313
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
314
+ end
315
+ end
316
+
317
+ # Returns an invoice data object for a given invoice.
318
+ # Parameters: entityHandle: A handle for the invoice.
319
+ #
320
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
321
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetData
322
+ # @return [Hash] The body content of the SOAP response.
323
+ def self.get_data
324
+ response = invoke('Invoice_GetData') do |message|
325
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
326
+ end
327
+ end
328
+
329
+ # Returns invoice data objects for a given set of invoice handles.
330
+ # Parameters: entityHandles: An array of the invoice handles.
331
+ #
332
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
333
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDataArray
334
+ # @return [Hash] The body content of the SOAP response.
335
+ def self.get_data_array
336
+ response = invoke('Invoice_GetDataArray') do |message|
337
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
338
+ end
339
+ end
340
+
341
+ # Gets the number of an invoice.
342
+ # Parameters: invoiceHandle: Handle for the invoice.
343
+ #
344
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
345
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetNumber
346
+ # @return [Hash] The body content of the SOAP response.
347
+ def self.get_number
348
+ response = invoke('Invoice_GetNumber') do |message|
349
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
350
+ end
351
+ end
352
+
353
+ # Gets a handle for the debtor for an invoice.
354
+ # Parameters: invoiceHandle: Handle for the invoice.
355
+ #
356
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
357
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDebtor
358
+ # @return [Hash] The body content of the SOAP response.
359
+ def self.get_debtor
360
+ response = invoke('Invoice_GetDebtor') do |message|
361
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
362
+ end
363
+ end
364
+
365
+ # Gets a handle for the project for an invoice.
366
+ # Parameters: invoiceHandle: Handle for the invoice.
367
+ #
368
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
369
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetProject
370
+ # @return [Hash] The body content of the SOAP response.
371
+ def self.get_project
372
+ response = invoke('Invoice_GetProject') do |message|
373
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
374
+ end
375
+ end
376
+
377
+ # Gets the name for an invoice.
378
+ # Parameters: invoiceHandle: Handle for the invoice.
379
+ #
380
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
381
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDebtorName
382
+ # @return [Hash] The body content of the SOAP response.
383
+ def self.get_debtor_name
384
+ response = invoke('Invoice_GetDebtorName') do |message|
385
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
386
+ end
387
+ end
388
+
389
+ # Gets the debtor address for an invoice.
390
+ # Parameters: invoiceHandle: Handle for the invoice.
391
+ #
392
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
393
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDebtorAddress
394
+ # @return [Hash] The body content of the SOAP response.
395
+ def self.get_debtor_address
396
+ response = invoke('Invoice_GetDebtorAddress') do |message|
397
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
398
+ end
399
+ end
400
+
401
+ # Gets the debtor postal code for an invoice.
402
+ # Parameters: invoiceHandle: Handle for the invoice.
403
+ #
404
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
405
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDebtorPostalCode
406
+ # @return [Hash] The body content of the SOAP response.
407
+ def self.get_debtor_postal_code
408
+ response = invoke('Invoice_GetDebtorPostalCode') do |message|
409
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
410
+ end
411
+ end
412
+
413
+ # Gets the debtor city for an invoice.
414
+ # Parameters: invoiceHandle: Handle for the invoice.
415
+ #
416
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
417
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDebtorCity
418
+ # @return [Hash] The body content of the SOAP response.
419
+ def self.get_debtor_city
420
+ response = invoke('Invoice_GetDebtorCity') do |message|
421
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
422
+ end
423
+ end
424
+
425
+ # Gets the debtor country for an invoice.
426
+ # Parameters: invoiceHandle: Handle for the invoice.
427
+ #
428
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
429
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDebtorCountry
430
+ # @return [Hash] The body content of the SOAP response.
431
+ def self.get_debtor_country
432
+ response = invoke('Invoice_GetDebtorCountry') do |message|
433
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
434
+ end
435
+ end
436
+
437
+ # Gets the debtor EAN for an invoice.
438
+ # Parameters: invoiceHandle: Handle for the invoice.
439
+ #
440
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
441
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDebtorEan
442
+ # @return [Hash] The body content of the SOAP response.
443
+ def self.get_debtor_ean
444
+ response = invoke('Invoice_GetDebtorEan') do |message|
445
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
446
+ end
447
+ end
448
+
449
+ # Gets the public entry number an invoice.
450
+ # Parameters: invoiceHandle: Handle for the invoice.
451
+ #
452
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
453
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetPublicEntryNumber
454
+ # @return [Hash] The body content of the SOAP response.
455
+ def self.get_public_entry_number
456
+ response = invoke('Invoice_GetPublicEntryNumber') do |message|
457
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
458
+ end
459
+ end
460
+
461
+ # Gets a handle for the attention of an invoice.
462
+ # Parameters: invoiceHandle: Handle for the invoice.
463
+ #
464
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
465
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetAttention
466
+ # @return [Hash] The body content of the SOAP response.
467
+ def self.get_attention
468
+ response = invoke('Invoice_GetAttention') do |message|
469
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
470
+ end
471
+ end
472
+
473
+ # Gets a handle for the reference of the debtor of an invoice.
474
+ # Parameters: invoiceHandle: Handle for the invoice.
475
+ #
476
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
477
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetYourReference
478
+ # @return [Hash] The body content of the SOAP response.
479
+ def self.get_your_reference
480
+ response = invoke('Invoice_GetYourReference') do |message|
481
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
482
+ end
483
+ end
484
+
485
+ # Gets a handle for the primary reference of the creditor of an invoice.
486
+ # Parameters: invoiceHandle: Handle for the invoice.
487
+ #
488
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
489
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetOurReference
490
+ # @return [Hash] The body content of the SOAP response.
491
+ def self.get_our_reference
492
+ response = invoke('Invoice_GetOurReference') do |message|
493
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
494
+ end
495
+ end
496
+
497
+ # Gets a handle for the secodary reference of the creditor of an invoice.
498
+ # Parameters: invoiceHandle: Handle for the invoice.
499
+ #
500
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
501
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetOurReference2
502
+ # @return [Hash] The body content of the SOAP response.
503
+ def self.get_our_reference2
504
+ response = invoke('Invoice_GetOurReference2') do |message|
505
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
506
+ end
507
+ end
508
+
509
+ # Gets a handle for the term of payment of an invoice.
510
+ # Parameters: invoiceHandle: Handle for the invoice.
511
+ #
512
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
513
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetTermOfPayment
514
+ # @return [Hash] The body content of the SOAP response.
515
+ def self.get_term_of_payment
516
+ response = invoke('Invoice_GetTermOfPayment') do |message|
517
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
518
+ end
519
+ end
520
+
521
+ # Gets a handle for the currency of an invoice.
522
+ # Parameters: invoiceHandle: Handle for the invoice.
523
+ #
524
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
525
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetCurrency
526
+ # @return [Hash] The body content of the SOAP response.
527
+ def self.get_currency
528
+ response = invoke('Invoice_GetCurrency') do |message|
529
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
530
+ end
531
+ end
532
+
533
+ # Gets whether the invoice has VAT included.
534
+ # Parameters: invoiceHandle: Handle for the invoice.
535
+ #
536
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
537
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetIsVatIncluded
538
+ # @return [Hash] The body content of the SOAP response.
539
+ def self.get_is_vat_included
540
+ response = invoke('Invoice_GetIsVatIncluded') do |message|
541
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
542
+ end
543
+ end
544
+
545
+ # Gets a handle for the layout of the invoice.
546
+ # Parameters: invoiceHandle: Handle for the invoice.
547
+ #
548
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
549
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetLayout
550
+ # @return [Hash] The body content of the SOAP response.
551
+ def self.get_layout
552
+ response = invoke('Invoice_GetLayout') do |message|
553
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
554
+ end
555
+ end
556
+
557
+ # Gets a handle for the delivery location of the invoice.
558
+ # Parameters: invoiceHandle: Handle for the invoice.
559
+ #
560
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
561
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDeliveryLocation
562
+ # @return [Hash] The body content of the SOAP response.
563
+ def self.get_delivery_location
564
+ response = invoke('Invoice_GetDeliveryLocation') do |message|
565
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
566
+ end
567
+ end
568
+
569
+ # Gets the delivery address of the invoice.
570
+ # Parameters: invoiceHandle: Handle for the invoice.
571
+ #
572
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
573
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDeliveryAddress
574
+ # @return [Hash] The body content of the SOAP response.
575
+ def self.get_delivery_address
576
+ response = invoke('Invoice_GetDeliveryAddress') do |message|
577
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
578
+ end
579
+ end
580
+
581
+ # Gets the delivery postal code of the invoice.
582
+ # Parameters: invoiceHandle: Handle for the invoice.
583
+ #
584
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
585
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDeliveryPostalCode
586
+ # @return [Hash] The body content of the SOAP response.
587
+ def self.get_delivery_postal_code
588
+ response = invoke('Invoice_GetDeliveryPostalCode') do |message|
589
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
590
+ end
591
+ end
592
+
593
+ # Gets the delivery city of the invoice.
594
+ # Parameters: invoiceHandle: Handle for the invoice.
595
+ #
596
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
597
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDeliveryCity
598
+ # @return [Hash] The body content of the SOAP response.
599
+ def self.get_delivery_city
600
+ response = invoke('Invoice_GetDeliveryCity') do |message|
601
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
602
+ end
603
+ end
604
+
605
+ # Gets the delivery country of the invoice.
606
+ # Parameters: invoiceHandle: Handle for the invoice.
607
+ #
608
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
609
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDeliveryCountry
610
+ # @return [Hash] The body content of the SOAP response.
611
+ def self.get_delivery_country
612
+ response = invoke('Invoice_GetDeliveryCountry') do |message|
613
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
614
+ end
615
+ end
616
+
617
+ # Gets the terms of delivery of the invoice.
618
+ # Parameters: invoiceHandle: Handle for the invoice.
619
+ #
620
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
621
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetTermsOfDelivery
622
+ # @return [Hash] The body content of the SOAP response.
623
+ def self.get_terms_of_delivery
624
+ response = invoke('Invoice_GetTermsOfDelivery') do |message|
625
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
626
+ end
627
+ end
628
+
629
+ # Gets the delivery date of the invoice.
630
+ # Parameters: invoiceHandle: Handle for the invoice.
631
+ #
632
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
633
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDeliveryDate
634
+ # @return [Hash] The body content of the SOAP response.
635
+ def self.get_delivery_date
636
+ response = invoke('Invoice_GetDeliveryDate') do |message|
637
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
638
+ end
639
+ end
640
+
641
+ # Gets the date of the invoice.
642
+ # Parameters: invoiceHandle: Handle for the invoice.
643
+ #
644
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
645
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDate
646
+ # @return [Hash] The body content of the SOAP response.
647
+ def self.get_date
648
+ response = invoke('Invoice_GetDate') do |message|
649
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
650
+ end
651
+ end
652
+
653
+ end
654
+ end
655
+ end