ruconomic 0.9.1 → 0.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -3
  3. data/lib/ruconomic/api/account.rb +86 -86
  4. data/lib/ruconomic/api/accounting_period.rb +18 -18
  5. data/lib/ruconomic/api/accounting_year.rb +26 -26
  6. data/lib/ruconomic/api/activity.rb +14 -14
  7. data/lib/ruconomic/api/bank_payment_type.rb +16 -16
  8. data/lib/ruconomic/api/budget_figure.rb +56 -56
  9. data/lib/ruconomic/api/cash_book.rb +38 -38
  10. data/lib/ruconomic/api/cash_book_entry.rb +118 -118
  11. data/lib/ruconomic/api/company.rb +48 -48
  12. data/lib/ruconomic/api/cost_type.rb +22 -22
  13. data/lib/ruconomic/api/cost_type_group.rb +18 -18
  14. data/lib/ruconomic/api/creditor.rb +114 -114
  15. data/lib/ruconomic/api/creditor_contact.rb +44 -44
  16. data/lib/ruconomic/api/creditor_entry.rb +40 -40
  17. data/lib/ruconomic/api/creditor_group.rb +34 -34
  18. data/lib/ruconomic/api/currency.rb +10 -10
  19. data/lib/ruconomic/api/current_invoice.rb +184 -184
  20. data/lib/ruconomic/api/current_invoice_line.rb +72 -72
  21. data/lib/ruconomic/api/current_supplier_invoice.rb +18 -18
  22. data/lib/ruconomic/api/current_supplier_invoice_line.rb +14 -14
  23. data/lib/ruconomic/api/debtor.rb +152 -152
  24. data/lib/ruconomic/api/debtor_contact.rb +54 -54
  25. data/lib/ruconomic/api/debtor_entry.rb +38 -38
  26. data/lib/ruconomic/api/debtor_group.rb +38 -38
  27. data/lib/ruconomic/api/delivery_location.rb +56 -56
  28. data/lib/ruconomic/api/department.rb +32 -32
  29. data/lib/ruconomic/api/distribution_key.rb +30 -30
  30. data/lib/ruconomic/api/document_archive_category.rb +26 -26
  31. data/lib/ruconomic/api/employee.rb +70 -70
  32. data/lib/ruconomic/api/employee_group.rb +32 -32
  33. data/lib/ruconomic/api/entry.rb +52 -52
  34. data/lib/ruconomic/api/extended_vat_zone.rb +12 -12
  35. data/lib/ruconomic/api/inventory_location.rb +14 -14
  36. data/lib/ruconomic/api/invoice.rb +115 -111
  37. data/lib/ruconomic/api/invoice_line.rb +40 -40
  38. data/lib/ruconomic/api/key_figure_code.rb +16 -16
  39. data/lib/ruconomic/api/mileage_entry.rb +52 -52
  40. data/lib/ruconomic/api/order.rb +194 -194
  41. data/lib/ruconomic/api/order_line.rb +74 -74
  42. data/lib/ruconomic/api/price_group.rb +32 -32
  43. data/lib/ruconomic/api/product.rb +88 -88
  44. data/lib/ruconomic/api/product_group.rb +44 -44
  45. data/lib/ruconomic/api/product_price.rb +26 -26
  46. data/lib/ruconomic/api/project.rb +74 -74
  47. data/lib/ruconomic/api/project_group.rb +18 -18
  48. data/lib/ruconomic/api/quotation.rb +190 -190
  49. data/lib/ruconomic/api/quotation_line.rb +74 -74
  50. data/lib/ruconomic/api/report_code.rb +12 -12
  51. data/lib/ruconomic/api/report_code_set.rb +14 -14
  52. data/lib/ruconomic/api/scanned_document.rb +28 -28
  53. data/lib/ruconomic/api/subscriber.rb +78 -78
  54. data/lib/ruconomic/api/subscription.rb +62 -62
  55. data/lib/ruconomic/api/subscription_line.rb +50 -50
  56. data/lib/ruconomic/api/sum_interval.rb +26 -26
  57. data/lib/ruconomic/api/template_collection.rb +12 -12
  58. data/lib/ruconomic/api/term_of_payment.rb +50 -50
  59. data/lib/ruconomic/api/time_entry.rb +42 -42
  60. data/lib/ruconomic/api/unit.rb +30 -30
  61. data/lib/ruconomic/api/vat_account.rb +24 -24
  62. data/lib/ruconomic/api.rb +12 -13
  63. data/lib/ruconomic/version.rb +1 -1
  64. data/ruconomic.gemspec +1 -1
  65. metadata +20 -21
@@ -6,261 +6,261 @@ module Ruconomic
6
6
  # Creates a new creditor contact from a data object.
7
7
  # Parameters: data: The data object that specifies the properties of the new creditor contact.
8
8
  #
9
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
9
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
10
10
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_CreateFromData
11
11
  # @return [Hash] The body content of the SOAP response.
12
12
  def self.create_from_data
13
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"
14
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
15
15
  end
16
16
  end
17
17
 
18
18
  # Creates new creditor contacts from data objects.
19
19
  # Parameters: dataArray: The array of data objects that specifies the properties of the new creditor contacts.
20
20
  #
21
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
21
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
22
22
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_CreateFromDataArray
23
23
  # @return [Hash] The body content of the SOAP response.
24
24
  def self.create_from_data_array
25
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"
26
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
27
27
  end
28
28
  end
29
29
 
30
30
  # Update creditor contacts from data objects.
31
31
  # Parameters: dataArray: The array of data objects.
32
32
  #
33
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
33
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
34
34
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_UpdateFromDataArray
35
35
  # @return [Hash] The body content of the SOAP response.
36
36
  def self.update_from_data_array
37
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"
38
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
39
39
  end
40
40
  end
41
41
 
42
42
  # Updates a creditor contact from a data object.
43
43
  # Parameters: data: The data object.
44
44
  #
45
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
45
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
46
46
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_UpdateFromData
47
47
  # @return [Hash] The body content of the SOAP response.
48
48
  def self.update_from_data
49
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"
50
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
51
51
  end
52
52
  end
53
53
 
54
54
  # Returns a creditor contact data object for a given creditor contact.
55
55
  # Parameters: entityHandle: A handle for the creditor contact.
56
56
  #
57
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
57
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
58
58
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_GetData
59
59
  # @return [Hash] The body content of the SOAP response.
60
60
  def self.get_data
61
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"
62
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
63
63
  end
64
64
  end
65
65
 
66
66
  # Returns creditor contact data objects for a given set of creditor contact handles.
67
67
  # Parameters: entityHandles: An array of the creditor contact handles.
68
68
  #
69
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
69
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
70
70
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_GetDataArray
71
71
  # @return [Hash] The body content of the SOAP response.
72
72
  def self.get_data_array
73
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"
74
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
75
75
  end
76
76
  end
77
77
 
78
78
  # Gets a handle for the creditor of a creditor contact.
79
79
  # Parameters: creditorContactHandle: Handle for the creditor contact.
80
80
  #
81
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
81
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
82
82
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_GetCreditor
83
83
  # @return [Hash] The body content of the SOAP response.
84
84
  def self.get_creditor
85
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"
86
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
87
87
  end
88
88
  end
89
89
 
90
90
  # Gets the name of a creditor contact.
91
91
  # Parameters: creditorContactHandle: Handle for the creditor contact.
92
92
  #
93
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
93
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
94
94
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_GetName
95
95
  # @return [Hash] The body content of the SOAP response.
96
96
  def self.get_name
97
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"
98
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
99
99
  end
100
100
  end
101
101
 
102
102
  # Sets the name of a creditor contact.
103
103
  # Parameters: creditorContactHandle: Handle for the creditor contact. value: The new name of the creditor contact.
104
104
  #
105
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
105
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
106
106
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_SetName
107
107
  # @return [Hash] The body content of the SOAP response.
108
108
  def self.set_name
109
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"
110
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
111
111
  end
112
112
  end
113
113
 
114
114
  # Gets the number of a creditor contact.
115
115
  # Parameters: creditorContactHandle: Handle for the creditor contact.
116
116
  #
117
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
117
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
118
118
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_GetNumber
119
119
  # @return [Hash] The body content of the SOAP response.
120
120
  def self.get_number
121
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"
122
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
123
123
  end
124
124
  end
125
125
 
126
126
  # Sets the telephone number of a creditor contact.
127
127
  # Parameters: creditorContactHandle: Handle for the creditor contact. value: The new telephone number of the creditor contact.
128
128
  #
129
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
129
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
130
130
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_SetTelephoneNumber
131
131
  # @return [Hash] The body content of the SOAP response.
132
132
  def self.set_telephone_number
133
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"
134
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
135
135
  end
136
136
  end
137
137
 
138
138
  # Gets the telephone number of a creditor contact.
139
139
  # Parameters: creditorContactHandle: Handle for the creditor contact.
140
140
  #
141
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
141
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
142
142
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_GetTelephoneNumber
143
143
  # @return [Hash] The body content of the SOAP response.
144
144
  def self.get_telephone_number
145
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"
146
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
147
147
  end
148
148
  end
149
149
 
150
150
  # Sets the email of a creditor contact.
151
151
  # Parameters: creditorContactHandle: Handle for the creditor contact. value: The new email of the creditor contact.
152
152
  #
153
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
153
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
154
154
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_SetEmail
155
155
  # @return [Hash] The body content of the SOAP response.
156
156
  def self.set_email
157
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"
158
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
159
159
  end
160
160
  end
161
161
 
162
162
  # Gets the email of a creditor contact.
163
163
  # Parameters: creditorContactHandle: Handle for the creditor contact.
164
164
  #
165
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
165
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
166
166
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_GetEmail
167
167
  # @return [Hash] The body content of the SOAP response.
168
168
  def self.get_email
169
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"
170
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
171
171
  end
172
172
  end
173
173
 
174
174
  # Gets the comments of a creditor contact.
175
175
  # Parameters: creditorContactHandle: Handle for the creditor contact.
176
176
  #
177
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
177
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
178
178
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_GetComments
179
179
  # @return [Hash] The body content of the SOAP response.
180
180
  def self.get_comments
181
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"
182
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
183
183
  end
184
184
  end
185
185
 
186
186
  # Sets the comments of a creditor contact.
187
187
  # Parameters: creditorContactHandle: Handle for the creditor contact. value: The new comments of the creditor contact.
188
188
  #
189
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
189
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
190
190
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_SetComments
191
191
  # @return [Hash] The body content of the SOAP response.
192
192
  def self.set_comments
193
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"
194
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
195
195
  end
196
196
  end
197
197
 
198
198
  # Gets the external ID of a creditor contact.
199
199
  # Parameters: creditorContactHandle: Handle for the creditor contact.
200
200
  #
201
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
201
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
202
202
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_GetExternalId
203
203
  # @return [Hash] The body content of the SOAP response.
204
204
  def self.get_external_id
205
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"
206
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
207
207
  end
208
208
  end
209
209
 
210
210
  # Sets the external ID of a creditor contact.
211
211
  # Parameters: creditorContactHandle: Handle for the creditor contact. value: The new external ID of the creditor contact.
212
212
  #
213
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
213
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
214
214
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_SetExternalId
215
215
  # @return [Hash] The body content of the SOAP response.
216
216
  def self.set_external_id
217
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"
218
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
219
219
  end
220
220
  end
221
221
 
222
222
  # Creates a new creditor contact.
223
223
  #
224
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
224
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
225
225
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_Create
226
226
  # @return [Hash] The body content of the SOAP response.
227
227
  def self.create
228
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"
229
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
230
230
  end
231
231
  end
232
232
 
233
233
  # Returns handles for all creditor contacts.
234
234
  #
235
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
235
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
236
236
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_GetAll
237
237
  # @return [Hash] The body content of the SOAP response.
238
238
  def self.get_all
239
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"
240
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
241
241
  end
242
242
  end
243
243
 
244
244
  # Returns handles for creditor contacts with the given name.
245
245
  #
246
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
246
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
247
247
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_FindByName
248
248
  # @return [Hash] The body content of the SOAP response.
249
249
  def self.find_by_name
250
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"
251
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
252
252
  end
253
253
  end
254
254
 
255
255
  # Deletes a creditor contact.
256
256
  # Parameters: creditorContactHandle: Handle for the creditor contact.
257
257
  #
258
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
258
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
259
259
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorContact_Delete
260
260
  # @return [Hash] The body content of the SOAP response.
261
261
  def self.delete
262
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"
263
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
264
264
  end
265
265
  end
266
266
 
@@ -5,228 +5,228 @@ module Ruconomic
5
5
 
6
6
  # Gets the currency of the creditor entry.
7
7
  #
8
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
8
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
9
9
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetCurrency
10
10
  # @return [Hash] The body content of the SOAP response.
11
11
  def self.get_currency
12
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"
13
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
14
14
  end
15
15
  end
16
16
 
17
17
  # Gets the currency amount of the creditor entry.
18
18
  #
19
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
19
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
20
20
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetAmount
21
21
  # @return [Hash] The body content of the SOAP response.
22
22
  def self.get_amount
23
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"
24
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
25
25
  end
26
26
  end
27
27
 
28
28
  # Gets the invoice number of the creditor entry.
29
29
  #
30
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
30
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
31
31
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetInvoiceNumber
32
32
  # @return [Hash] The body content of the SOAP response.
33
33
  def self.get_invoice_number
34
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"
35
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
36
36
  end
37
37
  end
38
38
 
39
39
  # Gets the due date of the creditor entry.
40
40
  #
41
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
41
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
42
42
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetDueDate
43
43
  # @return [Hash] The body content of the SOAP response.
44
44
  def self.get_due_date
45
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"
46
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
47
47
  end
48
48
  end
49
49
 
50
50
  # Gets the currency remainder of the creditor entry.
51
51
  #
52
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
52
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
53
53
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetRemainder
54
54
  # @return [Hash] The body content of the SOAP response.
55
55
  def self.get_remainder
56
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"
57
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
58
58
  end
59
59
  end
60
60
 
61
61
  # Gets the remainder of the creditor entry in the default currency.
62
62
  #
63
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
63
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
64
64
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetRemainderDefaultCurrency
65
65
  # @return [Hash] The body content of the SOAP response.
66
66
  def self.get_remainder_default_currency
67
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"
68
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
69
69
  end
70
70
  end
71
71
 
72
72
  # Returns an array of handles for the creditor entries with numbers in the given interval.
73
73
  # Parameters: from: The beginning of the interval. to: the end of the interval.
74
74
  #
75
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
75
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
76
76
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_FindBySerialNumber
77
77
  # @return [Hash] The body content of the SOAP response.
78
78
  def self.find_by_serial_number
79
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"
80
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
81
81
  end
82
82
  end
83
83
 
84
84
  # Returns an array of handles for the creditor entries with numbers filtered by serial number, entry type, invoice numbers.
85
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
86
  #
87
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
87
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
88
88
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_FindBySerialNumberTypeAndInvoiceNumber
89
89
  # @return [Hash] The body content of the SOAP response.
90
90
  def self.find_by_serial_number_type_and_invoice_number
91
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"
92
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
93
93
  end
94
94
  end
95
95
 
96
96
  # Returns an array of handles for the creditor entries with the specified invoice number.
97
97
  # Parameters: invoiceNumber: The invoice number to search for.
98
98
  #
99
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
99
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
100
100
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_FindByInvoiceNumber
101
101
  # @return [Hash] The body content of the SOAP response.
102
102
  def self.find_by_invoice_number
103
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"
104
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
105
105
  end
106
106
  end
107
107
 
108
108
  # Matches the entries passed to the function. No return value.
109
109
  # Parameters: entries: The creditor entries to be matched.
110
110
  #
111
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
111
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
112
112
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_MatchEntries
113
113
  # @return [Hash] The body content of the SOAP response.
114
114
  def self.match_entries
115
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"
116
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
117
117
  end
118
118
  end
119
119
 
120
120
  # Returns a creditor entry data object for a given creditor entry.
121
121
  # Parameters: entityHandle: A handle for the creditor entry.
122
122
  #
123
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
123
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
124
124
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetData
125
125
  # @return [Hash] The body content of the SOAP response.
126
126
  def self.get_data
127
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"
128
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
129
129
  end
130
130
  end
131
131
 
132
132
  # Returns creditor entry data objects for a given set of creditor entry handles.
133
133
  # Parameters: entityHandles: An array of the creditor entry handles.
134
134
  #
135
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
135
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
136
136
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetDataArray
137
137
  # @return [Hash] The body content of the SOAP response.
138
138
  def self.get_data_array
139
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"
140
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
141
141
  end
142
142
  end
143
143
 
144
144
  # Gets the number of the creditor entry.
145
145
  # Parameters: creditorentryHandle: Handle for the creditor entry.
146
146
  #
147
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
147
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
148
148
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetSerialNumber
149
149
  # @return [Hash] The body content of the SOAP response.
150
150
  def self.get_serial_number
151
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"
152
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
153
153
  end
154
154
  end
155
155
 
156
156
  # Gets the entry type of the creditor entry.
157
157
  #
158
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
158
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
159
159
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetType
160
160
  # @return [Hash] The body content of the SOAP response.
161
161
  def self.get_type
162
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"
163
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
164
164
  end
165
165
  end
166
166
 
167
167
  # Gets the date of the creditor entry.
168
168
  #
169
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
169
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
170
170
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetDate
171
171
  # @return [Hash] The body content of the SOAP response.
172
172
  def self.get_date
173
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"
174
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
175
175
  end
176
176
  end
177
177
 
178
178
  # Gets the creditor of the creditor entry.
179
179
  #
180
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
180
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
181
181
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetCreditor
182
182
  # @return [Hash] The body content of the SOAP response.
183
183
  def self.get_creditor
184
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"
185
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
186
186
  end
187
187
  end
188
188
 
189
189
  # Gets the account of the creditor entry.
190
190
  #
191
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
191
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
192
192
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetAccount
193
193
  # @return [Hash] The body content of the SOAP response.
194
194
  def self.get_account
195
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"
196
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
197
197
  end
198
198
  end
199
199
 
200
200
  # Gets the voucher number of the creditor entry.
201
201
  #
202
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
202
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
203
203
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetVoucherNumber
204
204
  # @return [Hash] The body content of the SOAP response.
205
205
  def self.get_voucher_number
206
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"
207
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
208
208
  end
209
209
  end
210
210
 
211
211
  # Gets the text of the creditor entry.
212
212
  #
213
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
213
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
214
214
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetText
215
215
  # @return [Hash] The body content of the SOAP response.
216
216
  def self.get_text
217
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"
218
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
219
219
  end
220
220
  end
221
221
 
222
222
  # Gets the amount of the creditor entry in the default currency.
223
223
  #
224
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
224
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
225
225
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CreditorEntry_GetAmountDefaultCurrency
226
226
  # @return [Hash] The body content of the SOAP response.
227
227
  def self.get_amount_default_currency
228
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"
229
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
230
230
  end
231
231
  end
232
232