ruconomic 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
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,716 @@
1
+ module Ruconomic
2
+ module API
3
+ module CashBookEntry
4
+ extend Ruconomic::WebService
5
+
6
+ # Gets a handle for the distribution key of a cash book entry. The distribution key is only accessible when there is access to the Dimension add-on module.
7
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
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=CashBookEntry_GetDistributionKey
11
+ # @return [Hash] The body content of the SOAP response.
12
+ def self.get_distribution_key
13
+ response = invoke('CashBookEntry_GetDistributionKey') 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
+ # Sets the distribution key of a cash book entry. The distribution key is only accessible when there is access to the Dimension add-on module. The distribution key cannot be set when the department is set.
19
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry. value: Handle for the new distribution key of the cash book entry.
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=CashBookEntry_SetDistributionKey
23
+ # @return [Hash] The body content of the SOAP response.
24
+ def self.set_distribution_key
25
+ response = invoke('CashBookEntry_SetDistributionKey') 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 a handle for the project of a cash book entry. To set project use CashBookEntry_SetProjectAndCostType. The project is only accessible when there is access to the Project Management add-on module.
31
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
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=CashBookEntry_GetProject
35
+ # @return [Hash] The body content of the SOAP response.
36
+ def self.get_project
37
+ response = invoke('CashBookEntry_GetProject') 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 a handle for the cost type of a cash book entry. The cost type is only accessible when there is access to the Project Management add-on module. To set cost type use CashBookEntry_SetProjectAndCostType.
43
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
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=CashBookEntry_GetCostType
47
+ # @return [Hash] The body content of the SOAP response.
48
+ def self.get_cost_type
49
+ response = invoke('CashBookEntry_GetCostType') 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 a handle for the bank payment type of a cash book entry. To set bank payment type use CashBookEntry_SetRemittanceInformation.
55
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
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=CashBookEntry_GetBankPaymentType
59
+ # @return [Hash] The body content of the SOAP response.
60
+ def self.get_bank_payment_type
61
+ response = invoke('CashBookEntry_GetBankPaymentType') 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 a handle for the bank payment creditor id of a cash book entry. To set bank payment creditor id use CashBookEntry_SetRemittanceInformation.
67
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
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=CashBookEntry_GetBankPaymentCreditorId
71
+ # @return [Hash] The body content of the SOAP response.
72
+ def self.get_bank_payment_creditor_id
73
+ response = invoke('CashBookEntry_GetBankPaymentCreditorId') 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 a handle for the bank payment creditor invoice id of a cash book entry. To set bank payment creditor invoice id use CashBookEntry_SetRemittanceInformation.
79
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
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=CashBookEntry_GetBankPaymentCreditorInvoiceId
83
+ # @return [Hash] The body content of the SOAP response.
84
+ def self.get_bank_payment_creditor_invoice_id
85
+ response = invoke('CashBookEntry_GetBankPaymentCreditorInvoiceId') 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 capitalise account of a cash book entry. To set the capitalise account use CashBookEntry_SetAccrualInformation. The capitalise account is only accessible when there is access to the Accruals add-on module.
91
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
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=CashBookEntry_GetCapitalise
95
+ # @return [Hash] The body content of the SOAP response.
96
+ def self.get_capitalise
97
+ response = invoke('CashBookEntry_GetCapitalise') 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 start date of the accrual in a cash book entry. To set the start date use CashBookEntry_SetAccrualInformation. The start date is only accessible when there is access to the Accruals add-on module.
103
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
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=CashBookEntry_GetStartDate
107
+ # @return [Hash] The body content of the SOAP response.
108
+ def self.get_start_date
109
+ response = invoke('CashBookEntry_GetStartDate') 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 end date of the accrual in a cash book entry. To set the end date use CashBookEntry_SetAccrualInformation. The end date is only accessible when there is access to the Accruals add-on module.
115
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
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=CashBookEntry_GetEndDate
119
+ # @return [Hash] The body content of the SOAP response.
120
+ def self.get_end_date
121
+ response = invoke('CashBookEntry_GetEndDate') 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
+ # Sets the employeeNo of a cash book entry.
127
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry. value: new employeeNo.
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=CashBookEntry_SetEmployee
131
+ # @return [Hash] The body content of the SOAP response.
132
+ def self.set_employee
133
+ response = invoke('CashBookEntry_SetEmployee') 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 employeeNo of a cash book entry.
139
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
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=CashBookEntry_GetEmployee
143
+ # @return [Hash] The body content of the SOAP response.
144
+ def self.get_employee
145
+ response = invoke('CashBookEntry_GetEmployee') 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
+ # Creates a new cash book entry.
151
+ # Parameters: type: The type of the cash book entry. cashBook: The cash book of the cash book entry. debtor: The debtor of the cash book entry. creditor: The creditor of the cash book entry. account: The account of the cash book entry. contraAccount: The contra account of the cash book entry.
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=CashBookEntry_Create
155
+ # @return [Hash] The body content of the SOAP response.
156
+ def self.create
157
+ response = invoke('CashBookEntry_Create') 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
+ # Creates a new cash book entry of type DebtorPayment.
163
+ # Parameters: cashBook: The cash book of the cash book entry. debtor: The debtor of the cash book entry. account: The account of the cash book entry. contraAccount: The contra account of the cash book entry.
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=CashBookEntry_CreateDebtorPayment
167
+ # @return [Hash] The body content of the SOAP response.
168
+ def self.create_debtor_payment
169
+ response = invoke('CashBookEntry_CreateDebtorPayment') 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
+ # Creates a new cash book entry of type Manual customer invoice.
175
+ # Parameters: cashBook: The cash book of the cash book entry. debtor: The debtor of the cash book entry. account: The account of the cash book entry. contraAccount: The contra account of the cash book entry.
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=CashBookEntry_CreateManualDebtorInvoice
179
+ # @return [Hash] The body content of the SOAP response.
180
+ def self.create_manual_debtor_invoice
181
+ response = invoke('CashBookEntry_CreateManualDebtorInvoice') 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
+ # Creates a new cash book entry of type CreditorPayment.
187
+ # Parameters: type: cashBook: The cash book of the cash book entry. creditor: The creditor of the cash book entry. contraAccount: The contra account of the cash book entry.
188
+ #
189
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
190
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_CreateCreditorPayment
191
+ # @return [Hash] The body content of the SOAP response.
192
+ def self.create_creditor_payment
193
+ response = invoke('CashBookEntry_CreateCreditorPayment') do |message|
194
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
195
+ end
196
+ end
197
+
198
+ # Creates a new cash book entry of type CreditorInvoice.
199
+ # Parameters: cashBook: The cash book of the cash book entry. creditor: The creditor of the cash book entry. contraAccount: The contra account of the cash book entry.
200
+ #
201
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
202
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_CreateCreditorInvoice
203
+ # @return [Hash] The body content of the SOAP response.
204
+ def self.create_creditor_invoice
205
+ response = invoke('CashBookEntry_CreateCreditorInvoice') do |message|
206
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
207
+ end
208
+ end
209
+
210
+ # Creates a new cash book entry of type FinanceVoucher.
211
+ # Parameters: cashBook: The cash book of the cash book entry. account: The account of the cash book entry. contraAccount: The contra account of the cash book entry.
212
+ #
213
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
214
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_CreateFinanceVoucher
215
+ # @return [Hash] The body content of the SOAP response.
216
+ def self.create_finance_voucher
217
+ response = invoke('CashBookEntry_CreateFinanceVoucher') do |message|
218
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
219
+ end
220
+ end
221
+
222
+ # Deletes a cash book entry.
223
+ # Parameters: accountHandle: Handle for the cash book entry.
224
+ #
225
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
226
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_Delete
227
+ # @return [Hash] The body content of the SOAP response.
228
+ def self.delete
229
+ response = invoke('CashBookEntry_Delete') do |message|
230
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
231
+ end
232
+ end
233
+
234
+ # Creates a new cash book entry from a data object.
235
+ # Parameters: data: The data object that specifies the properties of the new cash book entry.
236
+ #
237
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
238
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_CreateFromData
239
+ # @return [Hash] The body content of the SOAP response.
240
+ def self.create_from_data
241
+ response = invoke('CashBookEntry_CreateFromData') do |message|
242
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
243
+ end
244
+ end
245
+
246
+ # Creates new cash book entries from data objects.
247
+ # Parameters: dataArray: The array of data objects that specifies the properties of the new cash book entries.
248
+ #
249
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
250
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_CreateFromDataArray
251
+ # @return [Hash] The body content of the SOAP response.
252
+ def self.create_from_data_array
253
+ response = invoke('CashBookEntry_CreateFromDataArray') do |message|
254
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
255
+ end
256
+ end
257
+
258
+ # Update cash book entries from data objects.
259
+ # Parameters: dataArray: The array of data objects.
260
+ #
261
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
262
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_UpdateFromDataArray
263
+ # @return [Hash] The body content of the SOAP response.
264
+ def self.update_from_data_array
265
+ response = invoke('CashBookEntry_UpdateFromDataArray') do |message|
266
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
267
+ end
268
+ end
269
+
270
+ # Updates a cash book entry from a data object.
271
+ # Parameters: data: The data object.
272
+ #
273
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
274
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_UpdateFromData
275
+ # @return [Hash] The body content of the SOAP response.
276
+ def self.update_from_data
277
+ response = invoke('CashBookEntry_UpdateFromData') do |message|
278
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
279
+ end
280
+ end
281
+
282
+ # Returns a cash book entry data object for a given cash book entry.
283
+ # Parameters: entityHandle: A handle for the cash book entry.
284
+ #
285
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
286
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetData
287
+ # @return [Hash] The body content of the SOAP response.
288
+ def self.get_data
289
+ response = invoke('CashBookEntry_GetData') do |message|
290
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
291
+ end
292
+ end
293
+
294
+ # Returns cash book entry data objects for a given set of cash book entry handles.
295
+ # Parameters: entityHandles: An array of the cash book entry handles.
296
+ #
297
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
298
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetDataArray
299
+ # @return [Hash] The body content of the SOAP response.
300
+ def self.get_data_array
301
+ response = invoke('CashBookEntry_GetDataArray') do |message|
302
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
303
+ end
304
+ end
305
+
306
+ # Gets the type of a cash book entry.
307
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
308
+ #
309
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
310
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetType
311
+ # @return [Hash] The body content of the SOAP response.
312
+ def self.get_type
313
+ response = invoke('CashBookEntry_GetType') do |message|
314
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
315
+ end
316
+ end
317
+
318
+ # Gets the cash book of a cash book entry.
319
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
320
+ #
321
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
322
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetCashBook
323
+ # @return [Hash] The body content of the SOAP response.
324
+ def self.get_cash_book
325
+ response = invoke('CashBookEntry_GetCashBook') do |message|
326
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
327
+ end
328
+ end
329
+
330
+ # Sets the debtor of the cash book entry. The debtor is only accessible when the cash book entry is of type DebtorPayment.
331
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
332
+ #
333
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
334
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_SetDebtor
335
+ # @return [Hash] The body content of the SOAP response.
336
+ def self.set_debtor
337
+ response = invoke('CashBookEntry_SetDebtor') do |message|
338
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
339
+ end
340
+ end
341
+
342
+ # Gets the debtor of a cash book entry. The debtor is only accessible when the cash book entry is of type DebtorPayment.
343
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
344
+ #
345
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
346
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetDebtor
347
+ # @return [Hash] The body content of the SOAP response.
348
+ def self.get_debtor
349
+ response = invoke('CashBookEntry_GetDebtor') do |message|
350
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
351
+ end
352
+ end
353
+
354
+ # Gets the creditor of a cash book entry. The creditor is only accessible when the cash book entry is of type CreditorInvoice or CreditorPayment.
355
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
356
+ #
357
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
358
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetCreditor
359
+ # @return [Hash] The body content of the SOAP response.
360
+ def self.get_creditor
361
+ response = invoke('CashBookEntry_GetCreditor') do |message|
362
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
363
+ end
364
+ end
365
+
366
+ # Sets the creditor of a cash book entry. The creditor is only accessible when the cash book entry is of type CreditorInvoice or CreditorPayment.
367
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
368
+ #
369
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
370
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_SetCreditor
371
+ # @return [Hash] The body content of the SOAP response.
372
+ def self.set_creditor
373
+ response = invoke('CashBookEntry_SetCreditor') do |message|
374
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
375
+ end
376
+ end
377
+
378
+ # Sets the account of a cash book entry. The account is only accessible when the cash book entry is of type FinanceVoucher.
379
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
380
+ #
381
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
382
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_SetAccount
383
+ # @return [Hash] The body content of the SOAP response.
384
+ def self.set_account
385
+ response = invoke('CashBookEntry_SetAccount') do |message|
386
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
387
+ end
388
+ end
389
+
390
+ # Gets the account of a cash book entry. The account is only accessible when the cash book entry is of type FinanceVoucher.
391
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
392
+ #
393
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
394
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetAccount
395
+ # @return [Hash] The body content of the SOAP response.
396
+ def self.get_account
397
+ response = invoke('CashBookEntry_GetAccount') do |message|
398
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
399
+ end
400
+ end
401
+
402
+ # Gets the contra account of a cash book entry.
403
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
404
+ #
405
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
406
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetContraAccount
407
+ # @return [Hash] The body content of the SOAP response.
408
+ def self.get_contra_account
409
+ response = invoke('CashBookEntry_GetContraAccount') do |message|
410
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
411
+ end
412
+ end
413
+
414
+ # Sets the contra account of a cash book entry.
415
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry. valueHandle: handle for the new contra couunt.
416
+ #
417
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
418
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_SetContraAccount
419
+ # @return [Hash] The body content of the SOAP response.
420
+ def self.set_contra_account
421
+ response = invoke('CashBookEntry_SetContraAccount') do |message|
422
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
423
+ end
424
+ end
425
+
426
+ # Sets the date of a cash book entry.
427
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry. value: new date value.
428
+ #
429
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
430
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_SetDate
431
+ # @return [Hash] The body content of the SOAP response.
432
+ def self.set_date
433
+ response = invoke('CashBookEntry_SetDate') do |message|
434
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
435
+ end
436
+ end
437
+
438
+ # Gets the date of a cash book entry.
439
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
440
+ #
441
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
442
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetDate
443
+ # @return [Hash] The body content of the SOAP response.
444
+ def self.get_date
445
+ response = invoke('CashBookEntry_GetDate') do |message|
446
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
447
+ end
448
+ end
449
+
450
+ # Sets the voucher number of a cash book entry. The voucher number must be at least 1.
451
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry. value: new voucher number.
452
+ #
453
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
454
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_SetVoucherNumber
455
+ # @return [Hash] The body content of the SOAP response.
456
+ def self.set_voucher_number
457
+ response = invoke('CashBookEntry_SetVoucherNumber') do |message|
458
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
459
+ end
460
+ end
461
+
462
+ # Gets the voucher number of a cash book entry.
463
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
464
+ #
465
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
466
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetVoucherNumber
467
+ # @return [Hash] The body content of the SOAP response.
468
+ def self.get_voucher_number
469
+ response = invoke('CashBookEntry_GetVoucherNumber') do |message|
470
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
471
+ end
472
+ end
473
+
474
+ # Gets the text of a cash book entry.
475
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
476
+ #
477
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
478
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetText
479
+ # @return [Hash] The body content of the SOAP response.
480
+ def self.get_text
481
+ response = invoke('CashBookEntry_GetText') do |message|
482
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
483
+ end
484
+ end
485
+
486
+ # Sets the text of a cash book entry.
487
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry. value: new text value.
488
+ #
489
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
490
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_SetText
491
+ # @return [Hash] The body content of the SOAP response.
492
+ def self.set_text
493
+ response = invoke('CashBookEntry_SetText') do |message|
494
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
495
+ end
496
+ end
497
+
498
+ # Gets the amount (in default currency) of a cash book entry.
499
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
500
+ #
501
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
502
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetAmountDefaultCurrency
503
+ # @return [Hash] The body content of the SOAP response.
504
+ def self.get_amount_default_currency
505
+ response = invoke('CashBookEntry_GetAmountDefaultCurrency') do |message|
506
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
507
+ end
508
+ end
509
+
510
+ # Sets the amount (in default currency) of a cash book entry.
511
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry. value: new amount value.
512
+ #
513
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
514
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_SetAmountDefaultCurrency
515
+ # @return [Hash] The body content of the SOAP response.
516
+ def self.set_amount_default_currency
517
+ response = invoke('CashBookEntry_SetAmountDefaultCurrency') do |message|
518
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
519
+ end
520
+ end
521
+
522
+ # Gets the currency of the cash book entry.
523
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
524
+ #
525
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
526
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetCurrency
527
+ # @return [Hash] The body content of the SOAP response.
528
+ def self.get_currency
529
+ response = invoke('CashBookEntry_GetCurrency') do |message|
530
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
531
+ end
532
+ end
533
+
534
+ # Sets the currency of a cash book entry.
535
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry. valueHandle: Handle for the new currency of the cash book entry.
536
+ #
537
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
538
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_SetCurrency
539
+ # @return [Hash] The body content of the SOAP response.
540
+ def self.set_currency
541
+ response = invoke('CashBookEntry_SetCurrency') do |message|
542
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
543
+ end
544
+ end
545
+
546
+ # Sets the amount of a cash book entry.
547
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry. value: new amount of the cash book entry.
548
+ #
549
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
550
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_SetAmount
551
+ # @return [Hash] The body content of the SOAP response.
552
+ def self.set_amount
553
+ response = invoke('CashBookEntry_SetAmount') do |message|
554
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
555
+ end
556
+ end
557
+
558
+ # Gets the amount of a cash book entry.
559
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
560
+ #
561
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
562
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetAmount
563
+ # @return [Hash] The body content of the SOAP response.
564
+ def self.get_amount
565
+ response = invoke('CashBookEntry_GetAmount') do |message|
566
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
567
+ end
568
+ end
569
+
570
+ # Sets the VAT account of a cash book entry. VAT account is only accessible when cash book entry is of type FinanceVoucher.
571
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry. valueHandle: new VAT account of the cash book entry.
572
+ #
573
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
574
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_SetVatAccount
575
+ # @return [Hash] The body content of the SOAP response.
576
+ def self.set_vat_account
577
+ response = invoke('CashBookEntry_SetVatAccount') do |message|
578
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
579
+ end
580
+ end
581
+
582
+ # Gets the VAT account of a cash book entry. VAT account is only accessible when cash book entry is of type FinanceVoucher.
583
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
584
+ #
585
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
586
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetVatAccount
587
+ # @return [Hash] The body content of the SOAP response.
588
+ def self.get_vat_account
589
+ response = invoke('CashBookEntry_GetVatAccount') do |message|
590
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
591
+ end
592
+ end
593
+
594
+ # Gets the contra VAT account of a cash book entry.
595
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
596
+ #
597
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
598
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetContraVatAccount
599
+ # @return [Hash] The body content of the SOAP response.
600
+ def self.get_contra_vat_account
601
+ response = invoke('CashBookEntry_GetContraVatAccount') do |message|
602
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
603
+ end
604
+ end
605
+
606
+ # Sets the contra VAT account of a cash book entry.
607
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry. valueHandle: new contra VAT account of the cash book entry.
608
+ #
609
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
610
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_SetContraVatAccount
611
+ # @return [Hash] The body content of the SOAP response.
612
+ def self.set_contra_vat_account
613
+ response = invoke('CashBookEntry_SetContraVatAccount') do |message|
614
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
615
+ end
616
+ end
617
+
618
+ # Sets the debtor invoice number of a cash book entry. Debtor invoice number is only accessible when cash book entry is of type DebtorPayment.
619
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry. value: new debtor invoice number.
620
+ #
621
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
622
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_SetDebtorInvoiceNumber
623
+ # @return [Hash] The body content of the SOAP response.
624
+ def self.set_debtor_invoice_number
625
+ response = invoke('CashBookEntry_SetDebtorInvoiceNumber') do |message|
626
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
627
+ end
628
+ end
629
+
630
+ # Gets the debtor invoice number of a cash book entry. Debtor invoice number is only accessible when cash book entry is of type DebtorPayment.
631
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
632
+ #
633
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
634
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetDebtorInvoiceNumber
635
+ # @return [Hash] The body content of the SOAP response.
636
+ def self.get_debtor_invoice_number
637
+ response = invoke('CashBookEntry_GetDebtorInvoiceNumber') do |message|
638
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
639
+ end
640
+ end
641
+
642
+ # Gets the creditor invoice number of a cash book entry. Creditor invoice number is only accessible when cash book entry is of type CreditorInvoice or CreditorPayment.
643
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
644
+ #
645
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
646
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetCreditorInvoiceNumber
647
+ # @return [Hash] The body content of the SOAP response.
648
+ def self.get_creditor_invoice_number
649
+ response = invoke('CashBookEntry_GetCreditorInvoiceNumber') do |message|
650
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
651
+ end
652
+ end
653
+
654
+ # Sets the creditor invoice number of a cash book entry. Creditor invoice number is only accessible when cash book entry is of type CreditorInvoice or CreditorPayment.
655
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry. value: new debtor invoice number.
656
+ #
657
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
658
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_SetCreditorInvoiceNumber
659
+ # @return [Hash] The body content of the SOAP response.
660
+ def self.set_creditor_invoice_number
661
+ response = invoke('CashBookEntry_SetCreditorInvoiceNumber') do |message|
662
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
663
+ end
664
+ end
665
+
666
+ # Sets the due date of a cash book entry. Due date is only accessible when cash book entry is of type CreditorInvoice.
667
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry. value: new due date.
668
+ #
669
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
670
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_SetDueDate
671
+ # @return [Hash] The body content of the SOAP response.
672
+ def self.set_due_date
673
+ response = invoke('CashBookEntry_SetDueDate') do |message|
674
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
675
+ end
676
+ end
677
+
678
+ # Gets the due date of a cash book entry. Due date is only accessible when cash book entry is of type CreditorInvoice.
679
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
680
+ #
681
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
682
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetDueDate
683
+ # @return [Hash] The body content of the SOAP response.
684
+ def self.get_due_date
685
+ response = invoke('CashBookEntry_GetDueDate') do |message|
686
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
687
+ end
688
+ end
689
+
690
+ # Sets the department of a cash book entry. The department is only accessible when there is access to the Dimension add-on module. The department cannot be set when the distribution key is set.
691
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry. value: Handle for the new department of the cash book entry.
692
+ #
693
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
694
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_SetDepartment
695
+ # @return [Hash] The body content of the SOAP response.
696
+ def self.set_department
697
+ response = invoke('CashBookEntry_SetDepartment') do |message|
698
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
699
+ end
700
+ end
701
+
702
+ # Gets a handle for the department of a cash book entry. The department is only accessible when there is access to the Dimension add-on module.
703
+ # Parameters: cashBookEntryHandle: Handle for the cash book entry.
704
+ #
705
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
706
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CashBookEntry_GetDepartment
707
+ # @return [Hash] The body content of the SOAP response.
708
+ def self.get_department
709
+ response = invoke('CashBookEntry_GetDepartment') do |message|
710
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
711
+ end
712
+ end
713
+
714
+ end
715
+ end
716
+ end