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.
- checksums.yaml +7 -0
- data/.gitignore +5 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +100 -0
- data/Rakefile +2 -0
- data/lib/ruconomic/api/account.rb +520 -0
- data/lib/ruconomic/api/accounting_period.rb +113 -0
- data/lib/ruconomic/api/accounting_year.rb +161 -0
- data/lib/ruconomic/api/activity.rb +90 -0
- data/lib/ruconomic/api/bank_payment_type.rb +103 -0
- data/lib/ruconomic/api/budget_figure.rb +343 -0
- data/lib/ruconomic/api/cash_book.rb +232 -0
- data/lib/ruconomic/api/cash_book_entry.rb +716 -0
- data/lib/ruconomic/api/company.rb +294 -0
- data/lib/ruconomic/api/cost_type.rb +138 -0
- data/lib/ruconomic/api/cost_type_group.rb +115 -0
- data/lib/ruconomic/api/creditor.rb +688 -0
- data/lib/ruconomic/api/creditor_contact.rb +269 -0
- data/lib/ruconomic/api/creditor_entry.rb +235 -0
- data/lib/ruconomic/api/creditor_group.rb +208 -0
- data/lib/ruconomic/api/currency.rb +67 -0
- data/lib/ruconomic/api/current_invoice.rb +1110 -0
- data/lib/ruconomic/api/current_invoice_line.rb +440 -0
- data/lib/ruconomic/api/current_supplier_invoice.rb +115 -0
- data/lib/ruconomic/api/current_supplier_invoice_line.rb +92 -0
- data/lib/ruconomic/api/debtor.rb +978 -0
- data/lib/ruconomic/api/debtor_contact.rb +328 -0
- data/lib/ruconomic/api/debtor_entry.rb +223 -0
- data/lib/ruconomic/api/debtor_group.rb +232 -0
- data/lib/ruconomic/api/delivery_location.rb +341 -0
- data/lib/ruconomic/api/department.rb +197 -0
- data/lib/ruconomic/api/distribution_key.rb +187 -0
- data/lib/ruconomic/api/document_archive_category.rb +163 -0
- data/lib/ruconomic/api/employee.rb +421 -0
- data/lib/ruconomic/api/employee_group.rb +199 -0
- data/lib/ruconomic/api/entry.rb +318 -0
- data/lib/ruconomic/api/extended_vat_zone.rb +79 -0
- data/lib/ruconomic/api/inventory_location.rb +91 -0
- data/lib/ruconomic/api/invoice.rb +655 -0
- data/lib/ruconomic/api/invoice_line.rb +248 -0
- data/lib/ruconomic/api/key_figure_code.rb +103 -0
- data/lib/ruconomic/api/mileage_entry.rb +319 -0
- data/lib/ruconomic/api/order.rb +1169 -0
- data/lib/ruconomic/api/order_line.rb +451 -0
- data/lib/ruconomic/api/price_group.rb +200 -0
- data/lib/ruconomic/api/product.rb +533 -0
- data/lib/ruconomic/api/product_group.rb +271 -0
- data/lib/ruconomic/api/product_price.rb +164 -0
- data/lib/ruconomic/api/project.rb +449 -0
- data/lib/ruconomic/api/project_group.rb +113 -0
- data/lib/ruconomic/api/quotation.rb +1145 -0
- data/lib/ruconomic/api/quotation_line.rb +451 -0
- data/lib/ruconomic/api/report_code.rb +78 -0
- data/lib/ruconomic/api/report_code_set.rb +89 -0
- data/lib/ruconomic/api/scanned_document.rb +175 -0
- data/lib/ruconomic/api/subscriber.rb +475 -0
- data/lib/ruconomic/api/subscription.rb +375 -0
- data/lib/ruconomic/api/subscription_line.rb +307 -0
- data/lib/ruconomic/api/sum_interval.rb +164 -0
- data/lib/ruconomic/api/template_collection.rb +78 -0
- data/lib/ruconomic/api/term_of_payment.rb +307 -0
- data/lib/ruconomic/api/time_entry.rb +258 -0
- data/lib/ruconomic/api/unit.rb +187 -0
- data/lib/ruconomic/api/vat_account.rb +151 -0
- data/lib/ruconomic/api.rb +79 -0
- data/lib/ruconomic/fault.rb +17 -0
- data/lib/ruconomic/soap/document.rb +79 -0
- data/lib/ruconomic/soap/node.rb +24 -0
- data/lib/ruconomic/soap.rb +7 -0
- data/lib/ruconomic/version.rb +3 -0
- data/lib/ruconomic/web_service.rb +50 -0
- data/lib/ruconomic.rb +42 -0
- data/ruconomic.gemspec +27 -0
- metadata +202 -0
@@ -0,0 +1,688 @@
|
|
1
|
+
module Ruconomic
|
2
|
+
module API
|
3
|
+
module Creditor
|
4
|
+
extend Ruconomic::WebService
|
5
|
+
|
6
|
+
# Gets the number of a creditor.
|
7
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetNumber
|
11
|
+
# @return [Hash] The body content of the SOAP response.
|
12
|
+
def self.get_number
|
13
|
+
response = invoke('Creditor_GetNumber') 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 a handle for the creditor group of a creditor.
|
19
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetCreditorGroup
|
23
|
+
# @return [Hash] The body content of the SOAP response.
|
24
|
+
def self.get_creditor_group
|
25
|
+
response = invoke('Creditor_GetCreditorGroup') 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
|
+
# Sets the creditor group of a creditor.
|
31
|
+
# Parameters: creditorHandle: Handle for the creditor. valueHandle: Handle for the new creditor group of the creditor.
|
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=Creditor_SetCreditorGroup
|
35
|
+
# @return [Hash] The body content of the SOAP response.
|
36
|
+
def self.set_creditor_group
|
37
|
+
response = invoke('Creditor_SetCreditorGroup') 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 name of a creditor.
|
43
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetName
|
47
|
+
# @return [Hash] The body content of the SOAP response.
|
48
|
+
def self.get_name
|
49
|
+
response = invoke('Creditor_GetName') 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
|
+
# Sets the name of a creditor.
|
55
|
+
# Parameters: creditorHandle: Handle for the creditor. value: The new name of the creditor.
|
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=Creditor_SetName
|
59
|
+
# @return [Hash] The body content of the SOAP response.
|
60
|
+
def self.set_name
|
61
|
+
response = invoke('Creditor_SetName') 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
|
+
# Sets vat zone of a creditor.
|
67
|
+
# Parameters: creditorHandle: Handle for the creditor. value: Handle for new vat zone of the creditor.
|
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=Creditor_SetVatZone
|
71
|
+
# @return [Hash] The body content of the SOAP response.
|
72
|
+
def self.set_vat_zone
|
73
|
+
response = invoke('Creditor_SetVatZone') 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 handle for vat zone of a creditor.
|
79
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetVatZone
|
83
|
+
# @return [Hash] The body content of the SOAP response.
|
84
|
+
def self.get_vat_zone
|
85
|
+
response = invoke('Creditor_GetVatZone') 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
|
+
# Sets currency of a creditor.
|
91
|
+
# Parameters: creditorHandle: Handle for the creditor. value: Handle for the new currency of the creditor.
|
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=Creditor_SetCurrency
|
95
|
+
# @return [Hash] The body content of the SOAP response.
|
96
|
+
def self.set_currency
|
97
|
+
response = invoke('Creditor_SetCurrency') 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 currency of a creditor.
|
103
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetCurrency
|
107
|
+
# @return [Hash] The body content of the SOAP response.
|
108
|
+
def self.get_currency
|
109
|
+
response = invoke('Creditor_GetCurrency') 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 a handle for the term of payment of a creditor.
|
115
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetTermOfPayment
|
119
|
+
# @return [Hash] The body content of the SOAP response.
|
120
|
+
def self.get_term_of_payment
|
121
|
+
response = invoke('Creditor_GetTermOfPayment') 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 term of payment of a creditor.
|
127
|
+
# Parameters: creditorHandle: Handle for the creditor. value: Handle for the new term of payment of a creditor.
|
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=Creditor_SetTermOfPayment
|
131
|
+
# @return [Hash] The body content of the SOAP response.
|
132
|
+
def self.set_term_of_payment
|
133
|
+
response = invoke('Creditor_SetTermOfPayment') 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 whether a creditor is accessible.
|
139
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetIsAccessible
|
143
|
+
# @return [Hash] The body content of the SOAP response.
|
144
|
+
def self.get_is_accessible
|
145
|
+
response = invoke('Creditor_GetIsAccessible') 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 whether a creditor is accessible.
|
151
|
+
# Parameters: creditorHandle: Handle for the creditor. value: Value that indicates whether the creditor should be accessible.
|
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=Creditor_SetIsAccessible
|
155
|
+
# @return [Hash] The body content of the SOAP response.
|
156
|
+
def self.set_is_accessible
|
157
|
+
response = invoke('Creditor_SetIsAccessible') 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 Corporate Identification Number of a creditor.
|
163
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetCINumber
|
167
|
+
# @return [Hash] The body content of the SOAP response.
|
168
|
+
def self.get_ci_number
|
169
|
+
response = invoke('Creditor_GetCINumber') 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
|
+
# Sets the Corporate Identification Number of a creditor.
|
175
|
+
# Parameters: creditorHandle: Handle for the creditor. value: The new Corporate Identification Number of the creditor.
|
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=Creditor_SetCINumber
|
179
|
+
# @return [Hash] The body content of the SOAP response.
|
180
|
+
def self.set_ci_number
|
181
|
+
response = invoke('Creditor_SetCINumber') 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
|
+
# Set the e-mail of a creditor.
|
187
|
+
# Parameters: creditorHandle: Handle for the creditor. value: The new email of the creditor.
|
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=Creditor_SetEmail
|
191
|
+
# @return [Hash] The body content of the SOAP response.
|
192
|
+
def self.set_email
|
193
|
+
response = invoke('Creditor_SetEmail') 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
|
+
# Get the e-mail of a creditor.
|
199
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetEmail
|
203
|
+
# @return [Hash] The body content of the SOAP response.
|
204
|
+
def self.get_email
|
205
|
+
response = invoke('Creditor_GetEmail') 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 address of a creditor.
|
211
|
+
# Parameters: creditorHandle: Handle for the creditor. value: The new address of the creditor.
|
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=Creditor_SetAddress
|
215
|
+
# @return [Hash] The body content of the SOAP response.
|
216
|
+
def self.set_address
|
217
|
+
response = invoke('Creditor_SetAddress') 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 address of a creditor.
|
223
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetAddress
|
227
|
+
# @return [Hash] The body content of the SOAP response.
|
228
|
+
def self.get_address
|
229
|
+
response = invoke('Creditor_GetAddress') 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
|
+
# Gets the postal code of a creditor.
|
235
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetPostalCode
|
239
|
+
# @return [Hash] The body content of the SOAP response.
|
240
|
+
def self.get_postal_code
|
241
|
+
response = invoke('Creditor_GetPostalCode') 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
|
+
# Sets the postal code of a creditor.
|
247
|
+
# Parameters: creditorHandle: Handle for the creditor. value: The new postal code of the creditor.
|
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=Creditor_SetPostalCode
|
251
|
+
# @return [Hash] The body content of the SOAP response.
|
252
|
+
def self.set_postal_code
|
253
|
+
response = invoke('Creditor_SetPostalCode') 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
|
+
# Sets the city of a creditor.
|
259
|
+
# Parameters: creditorHandle: Handle for the creditor. value: The new city of the creditor.
|
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=Creditor_SetCity
|
263
|
+
# @return [Hash] The body content of the SOAP response.
|
264
|
+
def self.set_city
|
265
|
+
response = invoke('Creditor_SetCity') 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
|
+
# Gets the city of a creditor.
|
271
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetCity
|
275
|
+
# @return [Hash] The body content of the SOAP response.
|
276
|
+
def self.get_city
|
277
|
+
response = invoke('Creditor_GetCity') 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
|
+
# Gets the country of a creditor.
|
283
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetCountry
|
287
|
+
# @return [Hash] The body content of the SOAP response.
|
288
|
+
def self.get_country
|
289
|
+
response = invoke('Creditor_GetCountry') 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
|
+
# Sets the country of a creditor.
|
295
|
+
# Parameters: creditorHandle: Handle for the creditor. value: The new country of the creditor.
|
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=Creditor_SetCountry
|
299
|
+
# @return [Hash] The body content of the SOAP response.
|
300
|
+
def self.set_country
|
301
|
+
response = invoke('Creditor_SetCountry') 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
|
+
# Sets the bank account of a creditor.
|
307
|
+
# Parameters: creditorHandle: Handle for the creditor. value: The new bank account of the creditor.
|
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=Creditor_SetBankAccount
|
311
|
+
# @return [Hash] The body content of the SOAP response.
|
312
|
+
def self.set_bank_account
|
313
|
+
response = invoke('Creditor_SetBankAccount') 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 bank account of a creditor.
|
319
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetBankAccount
|
323
|
+
# @return [Hash] The body content of the SOAP response.
|
324
|
+
def self.get_bank_account
|
325
|
+
response = invoke('Creditor_GetBankAccount') 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 attention of a creditor.
|
331
|
+
# Parameters: creditorHandle: Handle for the creditor. valueHandle: Handle for new attention of the creditor.
|
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=Creditor_SetAttention
|
335
|
+
# @return [Hash] The body content of the SOAP response.
|
336
|
+
def self.set_attention
|
337
|
+
response = invoke('Creditor_SetAttention') 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 a handle for the attention of a creditor.
|
343
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetAttention
|
347
|
+
# @return [Hash] The body content of the SOAP response.
|
348
|
+
def self.get_attention
|
349
|
+
response = invoke('Creditor_GetAttention') 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 a handle for 'your reference' of a creditor.
|
355
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetYourReference
|
359
|
+
# @return [Hash] The body content of the SOAP response.
|
360
|
+
def self.get_your_reference
|
361
|
+
response = invoke('Creditor_GetYourReference') 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 'your reference' of a creditor.
|
367
|
+
# Parameters: creditorHandle: Handle for the creditor. valueHandle: Handle for 'your reference' of the creditor.
|
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=Creditor_SetYourReference
|
371
|
+
# @return [Hash] The body content of the SOAP response.
|
372
|
+
def self.set_your_reference
|
373
|
+
response = invoke('Creditor_SetYourReference') 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 'our reference' of a creditor.
|
379
|
+
# Parameters: creditorHandle: Handle for the creditor. valueHandle: Handle for 'our reference' of the creditor.
|
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=Creditor_SetOurReference
|
383
|
+
# @return [Hash] The body content of the SOAP response.
|
384
|
+
def self.set_our_reference
|
385
|
+
response = invoke('Creditor_SetOurReference') 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 a handle for 'our reference' of a creditor.
|
391
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetOurReference
|
395
|
+
# @return [Hash] The body content of the SOAP response.
|
396
|
+
def self.get_our_reference
|
397
|
+
response = invoke('Creditor_GetOurReference') 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 a handle for the default payment type of a creditor. To set bank payment type, use CashBookEntry_SetRemittanceInformation.
|
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=Creditor_GetDefaultPaymentType
|
407
|
+
# @return [Hash] The body content of the SOAP response.
|
408
|
+
def self.get_default_payment_type
|
409
|
+
response = invoke('Creditor_GetDefaultPaymentType') 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
|
+
# Gets a handle for the payment creditor id of a creditor. To set bank payment creditor id, use Creditor_SetRemittanceInformation.
|
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=Creditor_GetDefaultPaymentCreditorId
|
418
|
+
# @return [Hash] The body content of the SOAP response.
|
419
|
+
def self.get_default_payment_creditor_id
|
420
|
+
response = invoke('Creditor_GetDefaultPaymentCreditorId') 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 County of a creditor. (UK only)
|
426
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetCounty
|
430
|
+
# @return [Hash] The body content of the SOAP response.
|
431
|
+
def self.get_county
|
432
|
+
response = invoke('Creditor_GetCounty') 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
|
+
# Sets the County of a creditor. (UK only)
|
438
|
+
# Parameters: creditorHandle: Handle for the creditor. value: The new County of the creditor.
|
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=Creditor_SetCounty
|
442
|
+
# @return [Hash] The body content of the SOAP response.
|
443
|
+
def self.set_county
|
444
|
+
response = invoke('Creditor_SetCounty') 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 a handle for the automatic contra account of a creditor.
|
450
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
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=Creditor_GetAutoContraAccount
|
454
|
+
# @return [Hash] The body content of the SOAP response.
|
455
|
+
def self.get_auto_contra_account
|
456
|
+
response = invoke('Creditor_GetAutoContraAccount') 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
|
+
# Sets the automatic contra account of a creditor.
|
462
|
+
# Parameters: creditorHandle: Handle for the creditor. valueHandle: Handle for new automatic contra account of the creditor.
|
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=Creditor_SetAutoContraAccount
|
466
|
+
# @return [Hash] The body content of the SOAP response.
|
467
|
+
def self.set_auto_contra_account
|
468
|
+
response = invoke('Creditor_SetAutoContraAccount') 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
|
+
# Return handles for all creditors
|
474
|
+
#
|
475
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
476
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_GetAll
|
477
|
+
# @return [Hash] The body content of the SOAP response.
|
478
|
+
def self.get_all
|
479
|
+
response = invoke('Creditor_GetAll') do |message|
|
480
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
481
|
+
end
|
482
|
+
end
|
483
|
+
|
484
|
+
# Return handles for all creditors from date. fromDate is based on CET. includeCalculatedProperties is reserved for future usage and should be set to false for now.
|
485
|
+
#
|
486
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
487
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_GetAllUpdated
|
488
|
+
# @return [Hash] The body content of the SOAP response.
|
489
|
+
def self.get_all_updated
|
490
|
+
response = invoke('Creditor_GetAllUpdated') do |message|
|
491
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
492
|
+
end
|
493
|
+
end
|
494
|
+
|
495
|
+
# Returns handle for creditor with a given number.
|
496
|
+
#
|
497
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
498
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_FindByNumber
|
499
|
+
# @return [Hash] The body content of the SOAP response.
|
500
|
+
def self.find_by_number
|
501
|
+
response = invoke('Creditor_FindByNumber') do |message|
|
502
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
503
|
+
end
|
504
|
+
end
|
505
|
+
|
506
|
+
# Returns an array with handles for the creditors corresponding to the given creditor numbers. If a creditor with a given number does not exist or if no number is given then the array contains nothing at that index.
|
507
|
+
# Parameters: numbers: The numbers to search for.
|
508
|
+
#
|
509
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
510
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_FindByNumberList
|
511
|
+
# @return [Hash] The body content of the SOAP response.
|
512
|
+
def self.find_by_number_list
|
513
|
+
response = invoke('Creditor_FindByNumberList') do |message|
|
514
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
515
|
+
end
|
516
|
+
end
|
517
|
+
|
518
|
+
# Returns handle for creditors with a given name.
|
519
|
+
# Parameters: The name to search for.
|
520
|
+
#
|
521
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
522
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_FindByName
|
523
|
+
# @return [Hash] The body content of the SOAP response.
|
524
|
+
def self.find_by_name
|
525
|
+
response = invoke('Creditor_FindByName') do |message|
|
526
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
527
|
+
end
|
528
|
+
end
|
529
|
+
|
530
|
+
# Gets handles for creditor contacts of a creditor.
|
531
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
532
|
+
#
|
533
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
534
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_GetCreditorContacts
|
535
|
+
# @return [Hash] The body content of the SOAP response.
|
536
|
+
def self.get_creditor_contacts
|
537
|
+
response = invoke('Creditor_GetCreditorContacts') do |message|
|
538
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
539
|
+
end
|
540
|
+
end
|
541
|
+
|
542
|
+
# Deletes a creditor.
|
543
|
+
# Parameters: creditorHandle: Handle for creditor.
|
544
|
+
#
|
545
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
546
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_Delete
|
547
|
+
# @return [Hash] The body content of the SOAP response.
|
548
|
+
def self.delete
|
549
|
+
response = invoke('Creditor_Delete') do |message|
|
550
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
551
|
+
end
|
552
|
+
end
|
553
|
+
|
554
|
+
# Gets handles for the entries of the creditor.
|
555
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
556
|
+
#
|
557
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
558
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_GetEntries
|
559
|
+
# @return [Hash] The body content of the SOAP response.
|
560
|
+
def self.get_entries
|
561
|
+
response = invoke('Creditor_GetEntries') do |message|
|
562
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
563
|
+
end
|
564
|
+
end
|
565
|
+
|
566
|
+
# Gets handles for the entries of the creditor that match the voucherNo.
|
567
|
+
# Parameters: creditorHandle: Handle for the creditor. voucherNo: The voucher number you wish to filter by.
|
568
|
+
#
|
569
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
570
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_GetEntriesByVoucherNo
|
571
|
+
# @return [Hash] The body content of the SOAP response.
|
572
|
+
def self.get_entries_by_voucher_no
|
573
|
+
response = invoke('Creditor_GetEntriesByVoucherNo') do |message|
|
574
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
575
|
+
end
|
576
|
+
end
|
577
|
+
|
578
|
+
# Gets handles for the entries of the creditor that match the invoiceNo.
|
579
|
+
# Parameters: creditorHandle: Handle for the creditor. invoiceNo: The invoice number you wish to filter by.
|
580
|
+
#
|
581
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
582
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_GetEntriesByInvoiceNo
|
583
|
+
# @return [Hash] The body content of the SOAP response.
|
584
|
+
def self.get_entries_by_invoice_no
|
585
|
+
response = invoke('Creditor_GetEntriesByInvoiceNo') do |message|
|
586
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
587
|
+
end
|
588
|
+
end
|
589
|
+
|
590
|
+
# Gets handles for the entries of the creditor that match both the vouher number and invoice number.
|
591
|
+
# Parameters: creditorHandle: Handle for the creditor. voucherNo: The voucher number you wish to filter by. invoiceNo: The invoice number you wish to filter by.
|
592
|
+
#
|
593
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
594
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_GetEntriesByVoucherNoAndInvoiceNo
|
595
|
+
# @return [Hash] The body content of the SOAP response.
|
596
|
+
def self.get_entries_by_voucher_no_and_invoice_no
|
597
|
+
response = invoke('Creditor_GetEntriesByVoucherNoAndInvoiceNo') do |message|
|
598
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
599
|
+
end
|
600
|
+
end
|
601
|
+
|
602
|
+
# Gets handles for the open entries of the creditor.
|
603
|
+
# Parameters: creditorHandle: Handle for the creditor.
|
604
|
+
#
|
605
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
606
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_GetOpenEntries
|
607
|
+
# @return [Hash] The body content of the SOAP response.
|
608
|
+
def self.get_open_entries
|
609
|
+
response = invoke('Creditor_GetOpenEntries') do |message|
|
610
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
611
|
+
end
|
612
|
+
end
|
613
|
+
|
614
|
+
# Creates a new creditor from a data object.
|
615
|
+
# Parameters: data: The data object that specifies the properties of the new creditor.
|
616
|
+
#
|
617
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
618
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_CreateFromData
|
619
|
+
# @return [Hash] The body content of the SOAP response.
|
620
|
+
def self.create_from_data
|
621
|
+
response = invoke('Creditor_CreateFromData') do |message|
|
622
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
623
|
+
end
|
624
|
+
end
|
625
|
+
|
626
|
+
# Creates new creditor from data objects.
|
627
|
+
# Parameters: dataArray: The array of data objects that specifies the properties of the new creditors.
|
628
|
+
#
|
629
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
630
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_CreateFromDataArray
|
631
|
+
# @return [Hash] The body content of the SOAP response.
|
632
|
+
def self.create_from_data_array
|
633
|
+
response = invoke('Creditor_CreateFromDataArray') do |message|
|
634
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
635
|
+
end
|
636
|
+
end
|
637
|
+
|
638
|
+
# Update creditors from data objects.
|
639
|
+
# Parameters: dataArray: The array of data objects.
|
640
|
+
#
|
641
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
642
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_UpdateFromDataArray
|
643
|
+
# @return [Hash] The body content of the SOAP response.
|
644
|
+
def self.update_from_data_array
|
645
|
+
response = invoke('Creditor_UpdateFromDataArray') do |message|
|
646
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
647
|
+
end
|
648
|
+
end
|
649
|
+
|
650
|
+
# Updates a creditor from a data object.
|
651
|
+
# Parameters: data: The data object.
|
652
|
+
#
|
653
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
654
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_UpdateFromData
|
655
|
+
# @return [Hash] The body content of the SOAP response.
|
656
|
+
def self.update_from_data
|
657
|
+
response = invoke('Creditor_UpdateFromData') do |message|
|
658
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
659
|
+
end
|
660
|
+
end
|
661
|
+
|
662
|
+
# Returns a creditor data object for a given creditor.
|
663
|
+
# Parameters: entityHandle: A handle for the creditor.
|
664
|
+
#
|
665
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
666
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_GetData
|
667
|
+
# @return [Hash] The body content of the SOAP response.
|
668
|
+
def self.get_data
|
669
|
+
response = invoke('Creditor_GetData') do |message|
|
670
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
671
|
+
end
|
672
|
+
end
|
673
|
+
|
674
|
+
# Returns creditor data objects for a given set of creditor handles.
|
675
|
+
# Parameters: entityHandles: An array of the creditor handles.
|
676
|
+
#
|
677
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
678
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Creditor_GetDataArray
|
679
|
+
# @return [Hash] The body content of the SOAP response.
|
680
|
+
def self.get_data_array
|
681
|
+
response = invoke('Creditor_GetDataArray') do |message|
|
682
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
683
|
+
end
|
684
|
+
end
|
685
|
+
|
686
|
+
end
|
687
|
+
end
|
688
|
+
end
|