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,269 @@
1
+ module Ruconomic
2
+ module API
3
+ module CreditorContact
4
+ extend Ruconomic::WebService
5
+
6
+ # Creates a new creditor contact from a data object.
7
+ # Parameters: data: The data object that specifies the properties of the new creditor contact.
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=CreditorContact_CreateFromData
11
+ # @return [Hash] The body content of the SOAP response.
12
+ def self.create_from_data
13
+ response = invoke('CreditorContact_CreateFromData') 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
+ # Creates new creditor contacts from data objects.
19
+ # Parameters: dataArray: The array of data objects that specifies the properties of the new creditor contacts.
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=CreditorContact_CreateFromDataArray
23
+ # @return [Hash] The body content of the SOAP response.
24
+ def self.create_from_data_array
25
+ response = invoke('CreditorContact_CreateFromDataArray') 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
+ # Update creditor contacts from data objects.
31
+ # Parameters: dataArray: The array of data objects.
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=CreditorContact_UpdateFromDataArray
35
+ # @return [Hash] The body content of the SOAP response.
36
+ def self.update_from_data_array
37
+ response = invoke('CreditorContact_UpdateFromDataArray') 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
+ # Updates a creditor contact from a data object.
43
+ # Parameters: data: The data object.
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=CreditorContact_UpdateFromData
47
+ # @return [Hash] The body content of the SOAP response.
48
+ def self.update_from_data
49
+ response = invoke('CreditorContact_UpdateFromData') 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
+ # Returns a creditor contact data object for a given creditor contact.
55
+ # Parameters: entityHandle: A handle for the creditor contact.
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=CreditorContact_GetData
59
+ # @return [Hash] The body content of the SOAP response.
60
+ def self.get_data
61
+ response = invoke('CreditorContact_GetData') 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
+ # Returns creditor contact data objects for a given set of creditor contact handles.
67
+ # Parameters: entityHandles: An array of the creditor contact handles.
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=CreditorContact_GetDataArray
71
+ # @return [Hash] The body content of the SOAP response.
72
+ def self.get_data_array
73
+ response = invoke('CreditorContact_GetDataArray') 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 creditor of a creditor contact.
79
+ # Parameters: creditorContactHandle: Handle for the creditor contact.
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=CreditorContact_GetCreditor
83
+ # @return [Hash] The body content of the SOAP response.
84
+ def self.get_creditor
85
+ response = invoke('CreditorContact_GetCreditor') 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 name of a creditor contact.
91
+ # Parameters: creditorContactHandle: Handle for the creditor contact.
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=CreditorContact_GetName
95
+ # @return [Hash] The body content of the SOAP response.
96
+ def self.get_name
97
+ response = invoke('CreditorContact_GetName') 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
+ # Sets the name of a creditor contact.
103
+ # Parameters: creditorContactHandle: Handle for the creditor contact. value: The new name of the creditor contact.
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=CreditorContact_SetName
107
+ # @return [Hash] The body content of the SOAP response.
108
+ def self.set_name
109
+ response = invoke('CreditorContact_SetName') 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 number of a creditor contact.
115
+ # Parameters: creditorContactHandle: Handle for the creditor contact.
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=CreditorContact_GetNumber
119
+ # @return [Hash] The body content of the SOAP response.
120
+ def self.get_number
121
+ response = invoke('CreditorContact_GetNumber') 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 telephone number of a creditor contact.
127
+ # Parameters: creditorContactHandle: Handle for the creditor contact. value: The new telephone number of the creditor contact.
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=CreditorContact_SetTelephoneNumber
131
+ # @return [Hash] The body content of the SOAP response.
132
+ def self.set_telephone_number
133
+ response = invoke('CreditorContact_SetTelephoneNumber') 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 telephone number of a creditor contact.
139
+ # Parameters: creditorContactHandle: Handle for the creditor contact.
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=CreditorContact_GetTelephoneNumber
143
+ # @return [Hash] The body content of the SOAP response.
144
+ def self.get_telephone_number
145
+ response = invoke('CreditorContact_GetTelephoneNumber') 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
+ # Sets the email of a creditor contact.
151
+ # Parameters: creditorContactHandle: Handle for the creditor contact. value: The new email of the creditor contact.
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=CreditorContact_SetEmail
155
+ # @return [Hash] The body content of the SOAP response.
156
+ def self.set_email
157
+ response = invoke('CreditorContact_SetEmail') 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 email of a creditor contact.
163
+ # Parameters: creditorContactHandle: Handle for the creditor contact.
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=CreditorContact_GetEmail
167
+ # @return [Hash] The body content of the SOAP response.
168
+ def self.get_email
169
+ response = invoke('CreditorContact_GetEmail') 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 comments of a creditor contact.
175
+ # Parameters: creditorContactHandle: Handle for the creditor contact.
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=CreditorContact_GetComments
179
+ # @return [Hash] The body content of the SOAP response.
180
+ def self.get_comments
181
+ response = invoke('CreditorContact_GetComments') 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
+ # Sets the comments of a creditor contact.
187
+ # Parameters: creditorContactHandle: Handle for the creditor contact. value: The new comments of the creditor contact.
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=CreditorContact_SetComments
191
+ # @return [Hash] The body content of the SOAP response.
192
+ def self.set_comments
193
+ response = invoke('CreditorContact_SetComments') 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
+ # Gets the external ID of a creditor contact.
199
+ # Parameters: creditorContactHandle: Handle for the creditor contact.
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=CreditorContact_GetExternalId
203
+ # @return [Hash] The body content of the SOAP response.
204
+ def self.get_external_id
205
+ response = invoke('CreditorContact_GetExternalId') 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
+ # Sets the external ID of a creditor contact.
211
+ # Parameters: creditorContactHandle: Handle for the creditor contact. value: The new external ID of the creditor contact.
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=CreditorContact_SetExternalId
215
+ # @return [Hash] The body content of the SOAP response.
216
+ def self.set_external_id
217
+ response = invoke('CreditorContact_SetExternalId') 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
+ # Creates a new creditor contact.
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=CreditorContact_Create
226
+ # @return [Hash] The body content of the SOAP response.
227
+ def self.create
228
+ response = invoke('CreditorContact_Create') 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 all creditor contacts.
234
+ #
235
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
236
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_GetAll
237
+ # @return [Hash] The body content of the SOAP response.
238
+ def self.get_all
239
+ response = invoke('CreditorContact_GetAll') do |message|
240
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
241
+ end
242
+ end
243
+
244
+ # Returns handles for creditor contacts with the given name.
245
+ #
246
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
247
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_FindByName
248
+ # @return [Hash] The body content of the SOAP response.
249
+ def self.find_by_name
250
+ response = invoke('CreditorContact_FindByName') do |message|
251
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
252
+ end
253
+ end
254
+
255
+ # Deletes a creditor contact.
256
+ # Parameters: creditorContactHandle: Handle for the creditor contact.
257
+ #
258
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
259
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_Delete
260
+ # @return [Hash] The body content of the SOAP response.
261
+ def self.delete
262
+ response = invoke('CreditorContact_Delete') do |message|
263
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
264
+ end
265
+ end
266
+
267
+ end
268
+ end
269
+ end
@@ -0,0 +1,235 @@
1
+ module Ruconomic
2
+ module API
3
+ module CreditorEntry
4
+ extend Ruconomic::WebService
5
+
6
+ # Gets the currency of the creditor entry.
7
+ #
8
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
9
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetCurrency
10
+ # @return [Hash] The body content of the SOAP response.
11
+ def self.get_currency
12
+ response = invoke('CreditorEntry_GetCurrency') do |message|
13
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
14
+ end
15
+ end
16
+
17
+ # Gets the currency amount of the creditor entry.
18
+ #
19
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
20
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetAmount
21
+ # @return [Hash] The body content of the SOAP response.
22
+ def self.get_amount
23
+ response = invoke('CreditorEntry_GetAmount') do |message|
24
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
25
+ end
26
+ end
27
+
28
+ # Gets the invoice number of the creditor entry.
29
+ #
30
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
31
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetInvoiceNumber
32
+ # @return [Hash] The body content of the SOAP response.
33
+ def self.get_invoice_number
34
+ response = invoke('CreditorEntry_GetInvoiceNumber') do |message|
35
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
36
+ end
37
+ end
38
+
39
+ # Gets the due date of the creditor entry.
40
+ #
41
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
42
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetDueDate
43
+ # @return [Hash] The body content of the SOAP response.
44
+ def self.get_due_date
45
+ response = invoke('CreditorEntry_GetDueDate') do |message|
46
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
47
+ end
48
+ end
49
+
50
+ # Gets the currency remainder of the creditor entry.
51
+ #
52
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
53
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetRemainder
54
+ # @return [Hash] The body content of the SOAP response.
55
+ def self.get_remainder
56
+ response = invoke('CreditorEntry_GetRemainder') do |message|
57
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
58
+ end
59
+ end
60
+
61
+ # Gets the remainder of the creditor entry in the default currency.
62
+ #
63
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
64
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetRemainderDefaultCurrency
65
+ # @return [Hash] The body content of the SOAP response.
66
+ def self.get_remainder_default_currency
67
+ response = invoke('CreditorEntry_GetRemainderDefaultCurrency') do |message|
68
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
69
+ end
70
+ end
71
+
72
+ # Returns an array of handles for the creditor entries with numbers in the given interval.
73
+ # Parameters: from: The beginning of the interval. to: the end of the interval.
74
+ #
75
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
76
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_FindBySerialNumber
77
+ # @return [Hash] The body content of the SOAP response.
78
+ def self.find_by_serial_number
79
+ response = invoke('CreditorEntry_FindBySerialNumber') do |message|
80
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
81
+ end
82
+ end
83
+
84
+ # Returns an array of handles for the creditor entries with numbers filtered by serial number, entry type, invoice numbers.
85
+ # Parameters: fromSerialNumber: The beginning of the interval. Use null to omit this filter. toSerialNumber: the end of the interval. Use null to omit this filter. entryType: Entry type. invoiceNumbers: Invoice Numbers. Array may also contain null as an entry to search for entries with no invoice number. Use null to omit this filter.
86
+ #
87
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
88
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_FindBySerialNumberTypeAndInvoiceNumber
89
+ # @return [Hash] The body content of the SOAP response.
90
+ def self.find_by_serial_number_type_and_invoice_number
91
+ response = invoke('CreditorEntry_FindBySerialNumberTypeAndInvoiceNumber') do |message|
92
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
93
+ end
94
+ end
95
+
96
+ # Returns an array of handles for the creditor entries with the specified invoice number.
97
+ # Parameters: invoiceNumber: The invoice number to search for.
98
+ #
99
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
100
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_FindByInvoiceNumber
101
+ # @return [Hash] The body content of the SOAP response.
102
+ def self.find_by_invoice_number
103
+ response = invoke('CreditorEntry_FindByInvoiceNumber') do |message|
104
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
105
+ end
106
+ end
107
+
108
+ # Matches the entries passed to the function. No return value.
109
+ # Parameters: entries: The creditor entries to be matched.
110
+ #
111
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
112
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_MatchEntries
113
+ # @return [Hash] The body content of the SOAP response.
114
+ def self.match_entries
115
+ response = invoke('CreditorEntry_MatchEntries') do |message|
116
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
117
+ end
118
+ end
119
+
120
+ # Returns a creditor entry data object for a given creditor entry.
121
+ # Parameters: entityHandle: A handle for the creditor entry.
122
+ #
123
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
124
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetData
125
+ # @return [Hash] The body content of the SOAP response.
126
+ def self.get_data
127
+ response = invoke('CreditorEntry_GetData') do |message|
128
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
129
+ end
130
+ end
131
+
132
+ # Returns creditor entry data objects for a given set of creditor entry handles.
133
+ # Parameters: entityHandles: An array of the creditor entry handles.
134
+ #
135
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
136
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetDataArray
137
+ # @return [Hash] The body content of the SOAP response.
138
+ def self.get_data_array
139
+ response = invoke('CreditorEntry_GetDataArray') do |message|
140
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
141
+ end
142
+ end
143
+
144
+ # Gets the number of the creditor entry.
145
+ # Parameters: creditorentryHandle: Handle for the creditor entry.
146
+ #
147
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
148
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetSerialNumber
149
+ # @return [Hash] The body content of the SOAP response.
150
+ def self.get_serial_number
151
+ response = invoke('CreditorEntry_GetSerialNumber') do |message|
152
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
153
+ end
154
+ end
155
+
156
+ # Gets the entry type of the creditor entry.
157
+ #
158
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
159
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetType
160
+ # @return [Hash] The body content of the SOAP response.
161
+ def self.get_type
162
+ response = invoke('CreditorEntry_GetType') do |message|
163
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
164
+ end
165
+ end
166
+
167
+ # Gets the date of the creditor entry.
168
+ #
169
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
170
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetDate
171
+ # @return [Hash] The body content of the SOAP response.
172
+ def self.get_date
173
+ response = invoke('CreditorEntry_GetDate') do |message|
174
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
175
+ end
176
+ end
177
+
178
+ # Gets the creditor of the creditor entry.
179
+ #
180
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
181
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetCreditor
182
+ # @return [Hash] The body content of the SOAP response.
183
+ def self.get_creditor
184
+ response = invoke('CreditorEntry_GetCreditor') do |message|
185
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
186
+ end
187
+ end
188
+
189
+ # Gets the account of the creditor entry.
190
+ #
191
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
192
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetAccount
193
+ # @return [Hash] The body content of the SOAP response.
194
+ def self.get_account
195
+ response = invoke('CreditorEntry_GetAccount') do |message|
196
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
197
+ end
198
+ end
199
+
200
+ # Gets the voucher number of the creditor entry.
201
+ #
202
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
203
+ # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetVoucherNumber
204
+ # @return [Hash] The body content of the SOAP response.
205
+ def self.get_voucher_number
206
+ response = invoke('CreditorEntry_GetVoucherNumber') do |message|
207
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
208
+ end
209
+ end
210
+
211
+ # Gets the text of the creditor 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=CreditorEntry_GetText
215
+ # @return [Hash] The body content of the SOAP response.
216
+ def self.get_text
217
+ response = invoke('CreditorEntry_GetText') 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
+ # Gets the amount of the creditor entry in the default currency.
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=CreditorEntry_GetAmountDefaultCurrency
226
+ # @return [Hash] The body content of the SOAP response.
227
+ def self.get_amount_default_currency
228
+ response = invoke('CreditorEntry_GetAmountDefaultCurrency') 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
+ end
234
+ end
235
+ end