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,1102 +6,1102 @@ module Ruconomic
6
6
  # Gets whether the current invoice has VAT included.
7
7
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
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=CurrentInvoice_GetIsVatIncluded
11
11
  # @return [Hash] The body content of the SOAP response.
12
12
  def self.get_is_vat_included
13
13
  response = invoke('CurrentInvoice_GetIsVatIncluded') 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
  # Set whether the current invoice has VAT included.
19
19
  # Parameters: currentInvoiceHandle: Handle for the current invoice. valueHandle: Handle for the new layout of the current invoice. value: value indicating whether the current invoice includes VAT or not.
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=CurrentInvoice_SetIsVatIncluded
23
23
  # @return [Hash] The body content of the SOAP response.
24
24
  def self.set_is_vat_included
25
25
  response = invoke('CurrentInvoice_SetIsVatIncluded') 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
  # Gets the current VAT zone of the CurrentInvoice.
31
31
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
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=CurrentInvoice_GetVatZone
35
35
  # @return [Hash] The body content of the SOAP response.
36
36
  def self.get_vat_zone
37
37
  response = invoke('CurrentInvoice_GetVatZone') 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
  # Set the VAT zone of the CurrentInvoice.
43
43
  # Parameters: currentInvoiceHandle: Handle for the current invoice. valueHandle: Handle for the new VAT zone of the current invoice.
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=CurrentInvoice_SetVatZone
47
47
  # @return [Hash] The body content of the SOAP response.
48
48
  def self.set_vat_zone
49
49
  response = invoke('CurrentInvoice_SetVatZone') 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
  # Gets a handle for the layout of a current invoice.
55
55
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
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=CurrentInvoice_GetLayout
59
59
  # @return [Hash] The body content of the SOAP response.
60
60
  def self.get_layout
61
61
  response = invoke('CurrentInvoice_GetLayout') 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
  # Set the layout of a current invoice.
67
67
  # Parameters: currentInvoiceHandle: Handle for the current invoice. valueHandle: Handle for the new layout of the current invoice.
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=CurrentInvoice_SetLayout
71
71
  # @return [Hash] The body content of the SOAP response.
72
72
  def self.set_layout
73
73
  response = invoke('CurrentInvoice_SetLayout') 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 delivery location of a current invoice.
79
79
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
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=CurrentInvoice_GetDeliveryLocation
83
83
  # @return [Hash] The body content of the SOAP response.
84
84
  def self.get_delivery_location
85
85
  response = invoke('CurrentInvoice_GetDeliveryLocation') 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
  # Set the delivery location of a current invoice.
91
91
  # Parameters: currentInvoiceHandle: Handle for the current invoice. valueHandle: Handle for the new delivery location of the current invoice.
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=CurrentInvoice_SetDeliveryLocation
95
95
  # @return [Hash] The body content of the SOAP response.
96
96
  def self.set_delivery_location
97
97
  response = invoke('CurrentInvoice_SetDeliveryLocation') 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
  # Gets the delivery address of a current invoice.
103
103
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
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=CurrentInvoice_GetDeliveryAddress
107
107
  # @return [Hash] The body content of the SOAP response.
108
108
  def self.get_delivery_address
109
109
  response = invoke('CurrentInvoice_GetDeliveryAddress') 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
  # Set the delivery address of a current invoice.
115
115
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new delivery address of the current invoice.
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=CurrentInvoice_SetDeliveryAddress
119
119
  # @return [Hash] The body content of the SOAP response.
120
120
  def self.set_delivery_address
121
121
  response = invoke('CurrentInvoice_SetDeliveryAddress') 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
  # Gets the delivery postal code of a current invoice.
127
127
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
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=CurrentInvoice_GetDeliveryPostalCode
131
131
  # @return [Hash] The body content of the SOAP response.
132
132
  def self.get_delivery_postal_code
133
133
  response = invoke('CurrentInvoice_GetDeliveryPostalCode') 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
  # Set the delivery postal code of a current invoice.
139
139
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new delivery postal code of the current invoice.
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=CurrentInvoice_SetDeliveryPostalCode
143
143
  # @return [Hash] The body content of the SOAP response.
144
144
  def self.set_delivery_postal_code
145
145
  response = invoke('CurrentInvoice_SetDeliveryPostalCode') 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
  # Gets the delivery city of a current invoice.
151
151
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
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=CurrentInvoice_GetDeliveryCity
155
155
  # @return [Hash] The body content of the SOAP response.
156
156
  def self.get_delivery_city
157
157
  response = invoke('CurrentInvoice_GetDeliveryCity') 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
  # Set the delivery city of a current invoice.
163
163
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new delivery city of the current invoice.
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=CurrentInvoice_SetDeliveryCity
167
167
  # @return [Hash] The body content of the SOAP response.
168
168
  def self.set_delivery_city
169
169
  response = invoke('CurrentInvoice_SetDeliveryCity') 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 delivery country of a current invoice.
175
175
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
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=CurrentInvoice_GetDeliveryCountry
179
179
  # @return [Hash] The body content of the SOAP response.
180
180
  def self.get_delivery_country
181
181
  response = invoke('CurrentInvoice_GetDeliveryCountry') 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
  # Set the delivery country of a current invoice.
187
187
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new delivery country of the current invoice.
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=CurrentInvoice_SetDeliveryCountry
191
191
  # @return [Hash] The body content of the SOAP response.
192
192
  def self.set_delivery_country
193
193
  response = invoke('CurrentInvoice_SetDeliveryCountry') 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 terms of delivery of a current invoice.
199
199
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
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=CurrentInvoice_GetTermsOfDelivery
203
203
  # @return [Hash] The body content of the SOAP response.
204
204
  def self.get_terms_of_delivery
205
205
  response = invoke('CurrentInvoice_GetTermsOfDelivery') 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 terms of delivery of a current invoice.
211
211
  # Parameters: currentInvoiceHandle: Handle for the currentInvoice. value: The new terms of delivery of the current invoice.
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=CurrentInvoice_SetTermsOfDelivery
215
215
  # @return [Hash] The body content of the SOAP response.
216
216
  def self.set_terms_of_delivery
217
217
  response = invoke('CurrentInvoice_SetTermsOfDelivery') 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 delivery date of a current invoice.
223
223
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
224
224
  #
225
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
225
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
226
226
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetDeliveryDate
227
227
  # @return [Hash] The body content of the SOAP response.
228
228
  def self.get_delivery_date
229
229
  response = invoke('CurrentInvoice_GetDeliveryDate') do |message|
230
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
230
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
231
231
  end
232
232
  end
233
233
 
234
234
  # Set the delivery date of a current invoice.
235
235
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new delivery date of the current invoice.
236
236
  #
237
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
237
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
238
238
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetDeliveryDate
239
239
  # @return [Hash] The body content of the SOAP response.
240
240
  def self.set_delivery_date
241
241
  response = invoke('CurrentInvoice_SetDeliveryDate') do |message|
242
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
242
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
243
243
  end
244
244
  end
245
245
 
246
246
  # Gets the heading of a current invoice.
247
247
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
248
248
  #
249
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
249
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
250
250
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetHeading
251
251
  # @return [Hash] The body content of the SOAP response.
252
252
  def self.get_heading
253
253
  response = invoke('CurrentInvoice_GetHeading') do |message|
254
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
254
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
255
255
  end
256
256
  end
257
257
 
258
258
  # Set the heading of a current invoice.
259
259
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new heading of the current invoice.
260
260
  #
261
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
261
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
262
262
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetHeading
263
263
  # @return [Hash] The body content of the SOAP response.
264
264
  def self.set_heading
265
265
  response = invoke('CurrentInvoice_SetHeading') do |message|
266
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
266
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
267
267
  end
268
268
  end
269
269
 
270
270
  # Gets the primary line of text of a current invoice.
271
271
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
272
272
  #
273
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
273
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
274
274
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetTextLine1
275
275
  # @return [Hash] The body content of the SOAP response.
276
276
  def self.get_text_line1
277
277
  response = invoke('CurrentInvoice_GetTextLine1') do |message|
278
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
278
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
279
279
  end
280
280
  end
281
281
 
282
282
  # Set the primary line of a current invoice.
283
283
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new primary line of text of the current invoice.
284
284
  #
285
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
285
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
286
286
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetTextLine1
287
287
  # @return [Hash] The body content of the SOAP response.
288
288
  def self.set_text_line1
289
289
  response = invoke('CurrentInvoice_SetTextLine1') do |message|
290
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
290
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
291
291
  end
292
292
  end
293
293
 
294
294
  # Gets the secondary line of text of a current invoice.
295
295
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
296
296
  #
297
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
297
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
298
298
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetTextLine2
299
299
  # @return [Hash] The body content of the SOAP response.
300
300
  def self.get_text_line2
301
301
  response = invoke('CurrentInvoice_GetTextLine2') do |message|
302
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
302
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
303
303
  end
304
304
  end
305
305
 
306
306
  # Set the secondary line of a current invoice.
307
307
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new secondary line of text of the current invoice.
308
308
  #
309
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
309
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
310
310
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetTextLine2
311
311
  # @return [Hash] The body content of the SOAP response.
312
312
  def self.set_text_line2
313
313
  response = invoke('CurrentInvoice_SetTextLine2') do |message|
314
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
314
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
315
315
  end
316
316
  end
317
317
 
318
318
  # Gets the other reference of a current invoice.
319
319
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
320
320
  #
321
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
321
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
322
322
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetOtherReference
323
323
  # @return [Hash] The body content of the SOAP response.
324
324
  def self.get_other_reference
325
325
  response = invoke('CurrentInvoice_GetOtherReference') do |message|
326
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
326
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
327
327
  end
328
328
  end
329
329
 
330
330
  # Set the other reference of a current invoice.
331
331
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new other reference of the current invoice.
332
332
  #
333
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
333
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
334
334
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetOtherReference
335
335
  # @return [Hash] The body content of the SOAP response.
336
336
  def self.set_other_reference
337
337
  response = invoke('CurrentInvoice_SetOtherReference') do |message|
338
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
338
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
339
339
  end
340
340
  end
341
341
 
342
342
  # Gets the total amount for all the lines without VAT if the current invoice (in the currency of that current invoice).
343
343
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
344
344
  #
345
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
345
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
346
346
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetNetAmount
347
347
  # @return [Hash] The body content of the SOAP response.
348
348
  def self.get_net_amount
349
349
  response = invoke('CurrentInvoice_GetNetAmount') do |message|
350
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
350
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
351
351
  end
352
352
  end
353
353
 
354
354
  # Gets the total VAT amount for all the lines of a current invoice (in the currency of that current invoice).
355
355
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
356
356
  #
357
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
357
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
358
358
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetVatAmount
359
359
  # @return [Hash] The body content of the SOAP response.
360
360
  def self.get_vat_amount
361
361
  response = invoke('CurrentInvoice_GetVatAmount') do |message|
362
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
362
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
363
363
  end
364
364
  end
365
365
 
366
366
  # Gets the total gross amount for all the lines of a current invoice (in the currency of that current invoice).
367
367
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
368
368
  #
369
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
369
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
370
370
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetGrossAmount
371
371
  # @return [Hash] The body content of the SOAP response.
372
372
  def self.get_gross_amount
373
373
  response = invoke('CurrentInvoice_GetGrossAmount') do |message|
374
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
374
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
375
375
  end
376
376
  end
377
377
 
378
378
  # Gets the margin of a current invoice (in the currency of that current invoice).
379
379
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
380
380
  #
381
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
381
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
382
382
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetMargin
383
383
  # @return [Hash] The body content of the SOAP response.
384
384
  def self.get_margin
385
385
  response = invoke('CurrentInvoice_GetMargin') do |message|
386
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
386
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
387
387
  end
388
388
  end
389
389
 
390
390
  # Gets the margin of a current invoice as percent.
391
391
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
392
392
  #
393
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
393
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
394
394
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetMarginAsPercent
395
395
  # @return [Hash] The body content of the SOAP response.
396
396
  def self.get_margin_as_percent
397
397
  response = invoke('CurrentInvoice_GetMarginAsPercent') do |message|
398
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
398
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
399
399
  end
400
400
  end
401
401
 
402
402
  # Gets the rounding amount for all lines of the current invoice (in the currency of the invoice).
403
403
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
404
404
  #
405
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
405
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
406
406
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetRoundingAmount
407
407
  # @return [Hash] The body content of the SOAP response.
408
408
  def self.get_rounding_amount
409
409
  response = invoke('CurrentInvoice_GetRoundingAmount') do |message|
410
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
410
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
411
411
  end
412
412
  end
413
413
 
414
414
  # Gets the DebtorCounty of a current invoice. (UK only)
415
415
  # Parameters: currentInvoiceHandle: Handle for the currentInvoice.
416
416
  #
417
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
417
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
418
418
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetDebtorCounty
419
419
  # @return [Hash] The body content of the SOAP response.
420
420
  def self.get_debtor_county
421
421
  response = invoke('CurrentInvoice_GetDebtorCounty') do |message|
422
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
422
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
423
423
  end
424
424
  end
425
425
 
426
426
  # Sets the DebtorCounty of a current invoice. (UK only)
427
427
  # Parameters: currentInvoiceHandle: Handle for the currentInvoice. value: The new DebtorCounty of the currentInvoice.
428
428
  #
429
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
429
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
430
430
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetDebtorCounty
431
431
  # @return [Hash] The body content of the SOAP response.
432
432
  def self.set_debtor_county
433
433
  response = invoke('CurrentInvoice_SetDebtorCounty') do |message|
434
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
434
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
435
435
  end
436
436
  end
437
437
 
438
438
  # Gets the DeliveryCounty of a current invoice. (UK only)
439
439
  # Parameters: currentInvoiceHandle: Handle for the currentInvoice.
440
440
  #
441
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
441
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
442
442
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetDeliveryCounty
443
443
  # @return [Hash] The body content of the SOAP response.
444
444
  def self.get_delivery_county
445
445
  response = invoke('CurrentInvoice_GetDeliveryCounty') do |message|
446
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
446
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
447
447
  end
448
448
  end
449
449
 
450
450
  # Sets the DeliveryCounty of a current invoice. (UK only)
451
451
  # Parameters: currentInvoiceHandle: Handle for the currentInvoice. value: The new DeliveryCounty of the currentInvoice.
452
452
  #
453
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
453
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
454
454
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetDeliveryCounty
455
455
  # @return [Hash] The body content of the SOAP response.
456
456
  def self.set_delivery_county
457
457
  response = invoke('CurrentInvoice_SetDeliveryCounty') do |message|
458
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
458
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
459
459
  end
460
460
  end
461
461
 
462
462
  # Gets the deduction amount of the current invoice.
463
463
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
464
464
  #
465
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
465
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
466
466
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetDeductionAmount
467
467
  # @return [Hash] The body content of the SOAP response.
468
468
  def self.get_deduction_amount
469
469
  response = invoke('CurrentInvoice_GetDeductionAmount') do |message|
470
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
470
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
471
471
  end
472
472
  end
473
473
 
474
474
  # Creates a new current invoice from a data object.
475
475
  # Parameters: data: The data object that specifies the properties of the new current invoice.
476
476
  #
477
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
477
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
478
478
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_CreateFromData
479
479
  # @return [Hash] The body content of the SOAP response.
480
480
  def self.create_from_data
481
481
  response = invoke('CurrentInvoice_CreateFromData') do |message|
482
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
482
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
483
483
  end
484
484
  end
485
485
 
486
486
  # Creates new current invoices from data objects.
487
487
  # Parameters: dataArray: The array of data objects that specifies the properties of the new current invoices.
488
488
  #
489
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
489
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
490
490
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_CreateFromDataArray
491
491
  # @return [Hash] The body content of the SOAP response.
492
492
  def self.create_from_data_array
493
493
  response = invoke('CurrentInvoice_CreateFromDataArray') do |message|
494
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
494
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
495
495
  end
496
496
  end
497
497
 
498
498
  # Update current invoices from data objects.
499
499
  # Parameters: dataArray: The array of data objects.
500
500
  #
501
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
501
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
502
502
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_UpdateFromDataArray
503
503
  # @return [Hash] The body content of the SOAP response.
504
504
  def self.update_from_data_array
505
505
  response = invoke('CurrentInvoice_UpdateFromDataArray') do |message|
506
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
506
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
507
507
  end
508
508
  end
509
509
 
510
510
  # Updates a current invoice from a data object.
511
511
  # Parameters: data: The data object.
512
512
  #
513
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
513
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
514
514
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_UpdateFromData
515
515
  # @return [Hash] The body content of the SOAP response.
516
516
  def self.update_from_data
517
517
  response = invoke('CurrentInvoice_UpdateFromData') do |message|
518
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
518
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
519
519
  end
520
520
  end
521
521
 
522
522
  # Returns a current invoice data object for a given current invoice.
523
523
  # Parameters: entityHandle: A handle for the current invoice.
524
524
  #
525
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
525
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
526
526
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetData
527
527
  # @return [Hash] The body content of the SOAP response.
528
528
  def self.get_data
529
529
  response = invoke('CurrentInvoice_GetData') do |message|
530
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
530
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
531
531
  end
532
532
  end
533
533
 
534
534
  # Returns current invoice data objects for a given set of current invoice handles.
535
535
  # Parameters: entityHandles: An array of the current invoice handles.
536
536
  #
537
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
537
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
538
538
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetDataArray
539
539
  # @return [Hash] The body content of the SOAP response.
540
540
  def self.get_data_array
541
541
  response = invoke('CurrentInvoice_GetDataArray') do |message|
542
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
542
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
543
543
  end
544
544
  end
545
545
 
546
546
  # Creates a new current invoice.
547
547
  # Parameters: debtor: Handle for a debitor.
548
548
  #
549
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
549
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
550
550
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_Create
551
551
  # @return [Hash] The body content of the SOAP response.
552
552
  def self.create
553
553
  response = invoke('CurrentInvoice_Create') do |message|
554
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
554
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
555
555
  end
556
556
  end
557
557
 
558
558
  # Returns handles for all current invoices.
559
559
  #
560
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
560
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
561
561
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetAll
562
562
  # @return [Hash] The body content of the SOAP response.
563
563
  def self.get_all
564
564
  response = invoke('CurrentInvoice_GetAll') do |message|
565
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
565
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
566
566
  end
567
567
  end
568
568
 
569
569
  # Returns handles for the current invoices which have the given employee as OurReference.
570
570
  # Parameters: ourReferenceHandle: Handle for the employee to search for.
571
571
  #
572
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
572
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
573
573
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_FindByOurReference
574
574
  # @return [Hash] The body content of the SOAP response.
575
575
  def self.find_by_our_reference
576
576
  response = invoke('CurrentInvoice_FindByOurReference') do |message|
577
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
577
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
578
578
  end
579
579
  end
580
580
 
581
581
  # Returns handles for the current invoices with a given other reference.
582
582
  # Parameters: otherReference: The other reference to search for.
583
583
  #
584
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
584
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
585
585
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_FindByOtherReference
586
586
  # @return [Hash] The body content of the SOAP response.
587
587
  def self.find_by_other_reference
588
588
  response = invoke('CurrentInvoice_FindByOtherReference') do |message|
589
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
589
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
590
590
  end
591
591
  end
592
592
 
593
593
  # Returns handles for current invoices in a given interval of days.
594
594
  # Parameters: first: First day in interval. last: Last day in interval.
595
595
  #
596
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
596
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
597
597
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_FindByDateInterval
598
598
  # @return [Hash] The body content of the SOAP response.
599
599
  def self.find_by_date_interval
600
600
  response = invoke('CurrentInvoice_FindByDateInterval') do |message|
601
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
601
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
602
602
  end
603
603
  end
604
604
 
605
605
  # Return handles for all current invoices from date. FromDate is based on CET.
606
606
  #
607
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
607
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
608
608
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetAllUpdated
609
609
  # @return [Hash] The body content of the SOAP response.
610
610
  def self.get_all_updated
611
611
  response = invoke('CurrentInvoice_GetAllUpdated') do |message|
612
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
612
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
613
613
  end
614
614
  end
615
615
 
616
616
  # Gets a current invoice as a PDF file.
617
617
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
618
618
  #
619
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
619
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
620
620
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetPdf
621
621
  # @return [Hash] The body content of the SOAP response.
622
622
  def self.get_pdf
623
623
  response = invoke('CurrentInvoice_GetPdf') do |message|
624
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
624
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
625
625
  end
626
626
  end
627
627
 
628
628
  # Books a current invoice. An invoice number greater than all other invoice numbers will be assigned to the resulting invoice.
629
629
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
630
630
  #
631
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
631
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
632
632
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_Book
633
633
  # @return [Hash] The body content of the SOAP response.
634
634
  def self.book
635
635
  response = invoke('CurrentInvoice_Book') do |message|
636
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
636
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
637
637
  end
638
638
  end
639
639
 
640
640
  # Books a current invoice.
641
641
  # Parameters: currentInvoiceHandle: Handle for the current invoice. number: The invoice number of the resulting invoice; must be positive and different from all other invoice numbers.
642
642
  #
643
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
643
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
644
644
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_BookWithNumber
645
645
  # @return [Hash] The body content of the SOAP response.
646
646
  def self.book_with_number
647
647
  response = invoke('CurrentInvoice_BookWithNumber') do |message|
648
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
648
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
649
649
  end
650
650
  end
651
651
 
652
652
  # Deletes a current invoice.
653
653
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
654
654
  #
655
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
655
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
656
656
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_Delete
657
657
  # @return [Hash] The body content of the SOAP response.
658
658
  def self.delete
659
659
  response = invoke('CurrentInvoice_Delete') do |message|
660
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
660
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
661
661
  end
662
662
  end
663
663
 
664
664
  # Gets handles for the lines of a current invoice.
665
665
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
666
666
  #
667
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
667
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
668
668
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetLines
669
669
  # @return [Hash] The body content of the SOAP response.
670
670
  def self.get_lines
671
671
  response = invoke('CurrentInvoice_GetLines') do |message|
672
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
672
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
673
673
  end
674
674
  end
675
675
 
676
676
  # Gets handle for the debtor of a current invoice.
677
677
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
678
678
  #
679
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
679
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
680
680
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetDebtor
681
681
  # @return [Hash] The body content of the SOAP response.
682
682
  def self.get_debtor
683
683
  response = invoke('CurrentInvoice_GetDebtor') do |message|
684
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
684
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
685
685
  end
686
686
  end
687
687
 
688
688
  # Set the debtor of a current invoice.
689
689
  # Parameters: currentInvoiceHandle: Handle for the current invoice. valueHandle: Handle for the new debtor.
690
690
  #
691
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
691
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
692
692
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetDebtor
693
693
  # @return [Hash] The body content of the SOAP response.
694
694
  def self.set_debtor
695
695
  response = invoke('CurrentInvoice_SetDebtor') do |message|
696
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
696
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
697
697
  end
698
698
  end
699
699
 
700
700
  # Gets the project of a current invoice.
701
701
  # Parameters: invoiceHandle: Handle for the invoice.
702
702
  #
703
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
703
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
704
704
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetProject
705
705
  # @return [Hash] The body content of the SOAP response.
706
706
  def self.get_project
707
707
  response = invoke('CurrentInvoice_GetProject') do |message|
708
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
708
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
709
709
  end
710
710
  end
711
711
 
712
712
  # Set the project of a current invoice.
713
713
  # Parameters: invoiceHandle: Handle for the invoice.
714
714
  #
715
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
715
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
716
716
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetProject
717
717
  # @return [Hash] The body content of the SOAP response.
718
718
  def self.set_project
719
719
  response = invoke('CurrentInvoice_SetProject') do |message|
720
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
720
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
721
721
  end
722
722
  end
723
723
 
724
724
  # Gets the name of the debtor of a current invoice.
725
725
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
726
726
  #
727
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
727
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
728
728
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetDebtorName
729
729
  # @return [Hash] The body content of the SOAP response.
730
730
  def self.get_debtor_name
731
731
  response = invoke('CurrentInvoice_GetDebtorName') do |message|
732
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
732
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
733
733
  end
734
734
  end
735
735
 
736
736
  # Set the name of the debtor of a current invoice.
737
737
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new name of the debtor of the current invoice.
738
738
  #
739
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
739
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
740
740
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetDebtorName
741
741
  # @return [Hash] The body content of the SOAP response.
742
742
  def self.set_debtor_name
743
743
  response = invoke('CurrentInvoice_SetDebtorName') do |message|
744
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
744
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
745
745
  end
746
746
  end
747
747
 
748
748
  # Gets the address of the debtor of a current invoice.
749
749
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
750
750
  #
751
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
751
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
752
752
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetDebtorAddress
753
753
  # @return [Hash] The body content of the SOAP response.
754
754
  def self.get_debtor_address
755
755
  response = invoke('CurrentInvoice_GetDebtorAddress') do |message|
756
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
756
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
757
757
  end
758
758
  end
759
759
 
760
760
  # Set the address of the debtor of a current invoice.
761
761
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new name of the debtor of the current invoice.
762
762
  #
763
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
763
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
764
764
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetDebtorAddress
765
765
  # @return [Hash] The body content of the SOAP response.
766
766
  def self.set_debtor_address
767
767
  response = invoke('CurrentInvoice_SetDebtorAddress') do |message|
768
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
768
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
769
769
  end
770
770
  end
771
771
 
772
772
  # Gets the postal code of the debtor of a current invoice.
773
773
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
774
774
  #
775
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
775
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
776
776
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetDebtorPostalCode
777
777
  # @return [Hash] The body content of the SOAP response.
778
778
  def self.get_debtor_postal_code
779
779
  response = invoke('CurrentInvoice_GetDebtorPostalCode') do |message|
780
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
780
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
781
781
  end
782
782
  end
783
783
 
784
784
  # Set the postal code of the debtor of a current invoice.
785
785
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new postal code of the debtor of the current invoice.
786
786
  #
787
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
787
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
788
788
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetDebtorPostalCode
789
789
  # @return [Hash] The body content of the SOAP response.
790
790
  def self.set_debtor_postal_code
791
791
  response = invoke('CurrentInvoice_SetDebtorPostalCode') do |message|
792
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
792
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
793
793
  end
794
794
  end
795
795
 
796
796
  # Gets the city of the debtor of a current invoice.
797
797
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
798
798
  #
799
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
799
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
800
800
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetDebtorCity
801
801
  # @return [Hash] The body content of the SOAP response.
802
802
  def self.get_debtor_city
803
803
  response = invoke('CurrentInvoice_GetDebtorCity') do |message|
804
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
804
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
805
805
  end
806
806
  end
807
807
 
808
808
  # Set the city of the debtor of a current invoice.
809
809
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new city of the debtor of the current invoice.
810
810
  #
811
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
811
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
812
812
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetDebtorCity
813
813
  # @return [Hash] The body content of the SOAP response.
814
814
  def self.set_debtor_city
815
815
  response = invoke('CurrentInvoice_SetDebtorCity') do |message|
816
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
816
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
817
817
  end
818
818
  end
819
819
 
820
820
  # Gets the country of the debtor of a current invoice.
821
821
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
822
822
  #
823
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
823
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
824
824
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetDebtorCountry
825
825
  # @return [Hash] The body content of the SOAP response.
826
826
  def self.get_debtor_country
827
827
  response = invoke('CurrentInvoice_GetDebtorCountry') do |message|
828
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
828
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
829
829
  end
830
830
  end
831
831
 
832
832
  # Set the country of the debtor of a current invoice.
833
833
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new country of the debtor of the current invoice.
834
834
  #
835
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
835
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
836
836
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetDebtorCountry
837
837
  # @return [Hash] The body content of the SOAP response.
838
838
  def self.set_debtor_country
839
839
  response = invoke('CurrentInvoice_SetDebtorCountry') do |message|
840
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
840
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
841
841
  end
842
842
  end
843
843
 
844
844
  # Gets the European Article Number of the debtor of a current invoice.
845
845
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
846
846
  #
847
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
847
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
848
848
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetDebtorEan
849
849
  # @return [Hash] The body content of the SOAP response.
850
850
  def self.get_debtor_ean
851
851
  response = invoke('CurrentInvoice_GetDebtorEan') do |message|
852
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
852
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
853
853
  end
854
854
  end
855
855
 
856
856
  # Set the European Article Number of the debtor of a current invoice.
857
857
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new EAN of the current invoice.
858
858
  #
859
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
859
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
860
860
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetDebtorEan
861
861
  # @return [Hash] The body content of the SOAP response.
862
862
  def self.set_debtor_ean
863
863
  response = invoke('CurrentInvoice_SetDebtorEan') do |message|
864
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
864
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
865
865
  end
866
866
  end
867
867
 
868
868
  # Gets the public entry number of a current invoice.
869
869
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
870
870
  #
871
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
871
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
872
872
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetPublicEntryNumber
873
873
  # @return [Hash] The body content of the SOAP response.
874
874
  def self.get_public_entry_number
875
875
  response = invoke('CurrentInvoice_GetPublicEntryNumber') do |message|
876
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
876
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
877
877
  end
878
878
  end
879
879
 
880
880
  # Set the public entry number of a current invoice.
881
881
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new public entry number of the current invoice.
882
882
  #
883
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
883
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
884
884
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetPublicEntryNumber
885
885
  # @return [Hash] The body content of the SOAP response.
886
886
  def self.set_public_entry_number
887
887
  response = invoke('CurrentInvoice_SetPublicEntryNumber') do |message|
888
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
888
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
889
889
  end
890
890
  end
891
891
 
892
892
  # Gets a handle for the attention of a current invoice.
893
893
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
894
894
  #
895
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
895
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
896
896
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetAttention
897
897
  # @return [Hash] The body content of the SOAP response.
898
898
  def self.get_attention
899
899
  response = invoke('CurrentInvoice_GetAttention') do |message|
900
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
900
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
901
901
  end
902
902
  end
903
903
 
904
904
  # Set the attention of a current invoice.
905
905
  # Parameters: currentInvoiceHandle: Handle for the current invoice. valueHandle: Handle for the new attention of the current invoice.
906
906
  #
907
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
907
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
908
908
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetAttention
909
909
  # @return [Hash] The body content of the SOAP response.
910
910
  def self.set_attention
911
911
  response = invoke('CurrentInvoice_SetAttention') do |message|
912
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
912
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
913
913
  end
914
914
  end
915
915
 
916
916
  # Gets a handle for the reference of the debtor of a current invoice.
917
917
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
918
918
  #
919
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
919
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
920
920
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetYourReference
921
921
  # @return [Hash] The body content of the SOAP response.
922
922
  def self.get_your_reference
923
923
  response = invoke('CurrentInvoice_GetYourReference') do |message|
924
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
924
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
925
925
  end
926
926
  end
927
927
 
928
928
  # Set the the reference for the debtor of a current invoice.
929
929
  # Parameters: currentInvoiceHandle: Handle for the current invoice. valueHandle: Handle for the new reference for the debtor.
930
930
  #
931
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
931
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
932
932
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetYourReference
933
933
  # @return [Hash] The body content of the SOAP response.
934
934
  def self.set_your_reference
935
935
  response = invoke('CurrentInvoice_SetYourReference') do |message|
936
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
936
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
937
937
  end
938
938
  end
939
939
 
940
940
  # Gets a handle for the primary reference of the creditor of a current invoice.
941
941
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
942
942
  #
943
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
943
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
944
944
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetOurReference
945
945
  # @return [Hash] The body content of the SOAP response.
946
946
  def self.get_our_reference
947
947
  response = invoke('CurrentInvoice_GetOurReference') do |message|
948
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
948
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
949
949
  end
950
950
  end
951
951
 
952
952
  # Set the the primary reference of the creditor of a current invoice.
953
953
  # Parameters: currentInvoiceHandle: Handle for the current invoice. valueHandle: Handle for the new primary reference of the creditor of the current invoice.
954
954
  #
955
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
955
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
956
956
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetOurReference
957
957
  # @return [Hash] The body content of the SOAP response.
958
958
  def self.set_our_reference
959
959
  response = invoke('CurrentInvoice_SetOurReference') do |message|
960
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
960
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
961
961
  end
962
962
  end
963
963
 
964
964
  # Gets a handle for the secondary reference of the creditor of a current invoice.
965
965
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
966
966
  #
967
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
967
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
968
968
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetOurReference2
969
969
  # @return [Hash] The body content of the SOAP response.
970
970
  def self.get_our_reference2
971
971
  response = invoke('CurrentInvoice_GetOurReference2') do |message|
972
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
972
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
973
973
  end
974
974
  end
975
975
 
976
976
  # Set the the secondary reference of the creditor of a current invoice.
977
977
  # Parameters: currentInvoiceHandle: Handle for the current invoice. valueHandle: Handle for the new secondary reference of the creditor of the current invoice.
978
978
  #
979
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
979
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
980
980
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetOurReference2
981
981
  # @return [Hash] The body content of the SOAP response.
982
982
  def self.set_our_reference2
983
983
  response = invoke('CurrentInvoice_SetOurReference2') do |message|
984
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
984
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
985
985
  end
986
986
  end
987
987
 
988
988
  # Gets the date of a current invoice.
989
989
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
990
990
  #
991
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
991
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
992
992
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetDate
993
993
  # @return [Hash] The body content of the SOAP response.
994
994
  def self.get_date
995
995
  response = invoke('CurrentInvoice_GetDate') do |message|
996
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
996
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
997
997
  end
998
998
  end
999
999
 
1000
1000
  # Set the date of a current invoice. The due date is calculated accordingly as specified by the term of payment.
1001
1001
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new date of the current invoice.
1002
1002
  #
1003
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1003
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1004
1004
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetDate
1005
1005
  # @return [Hash] The body content of the SOAP response.
1006
1006
  def self.set_date
1007
1007
  response = invoke('CurrentInvoice_SetDate') do |message|
1008
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1008
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1009
1009
  end
1010
1010
  end
1011
1011
 
1012
1012
  # Gets a handle for the term of payment of a current invoice.
1013
1013
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
1014
1014
  #
1015
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1015
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1016
1016
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetTermOfPayment
1017
1017
  # @return [Hash] The body content of the SOAP response.
1018
1018
  def self.get_term_of_payment
1019
1019
  response = invoke('CurrentInvoice_GetTermOfPayment') do |message|
1020
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1020
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1021
1021
  end
1022
1022
  end
1023
1023
 
1024
1024
  # Set the term of payment of a current invoice. The due date is calculated accordingly.
1025
1025
  # Parameters: currentInvoiceHandle: Handle for the current invoice. valueHandle: Handle for the new term of payment of the current invoice.
1026
1026
  #
1027
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1027
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1028
1028
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetTermOfPayment
1029
1029
  # @return [Hash] The body content of the SOAP response.
1030
1030
  def self.set_term_of_payment
1031
1031
  response = invoke('CurrentInvoice_SetTermOfPayment') do |message|
1032
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1032
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1033
1033
  end
1034
1034
  end
1035
1035
 
1036
1036
  # Gets the due date of a current invoice.
1037
1037
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
1038
1038
  #
1039
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1039
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1040
1040
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetDueDate
1041
1041
  # @return [Hash] The body content of the SOAP response.
1042
1042
  def self.get_due_date
1043
1043
  response = invoke('CurrentInvoice_GetDueDate') do |message|
1044
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1044
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1045
1045
  end
1046
1046
  end
1047
1047
 
1048
1048
  # Set the due date of a current invoice. It is only allowed to set the due date to an actual date when the type of TermOfPayment is set to DueDate.
1049
1049
  # Parameters: currentInvoiceHandle: Handle for the current invoice. value: The new due date of the current invoice.
1050
1050
  #
1051
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1051
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1052
1052
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetDueDate
1053
1053
  # @return [Hash] The body content of the SOAP response.
1054
1054
  def self.set_due_date
1055
1055
  response = invoke('CurrentInvoice_SetDueDate') do |message|
1056
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1056
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1057
1057
  end
1058
1058
  end
1059
1059
 
1060
1060
  # Gets the currency of a current invoice.
1061
1061
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
1062
1062
  #
1063
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1063
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1064
1064
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetCurrency
1065
1065
  # @return [Hash] The body content of the SOAP response.
1066
1066
  def self.get_currency
1067
1067
  response = invoke('CurrentInvoice_GetCurrency') do |message|
1068
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1068
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1069
1069
  end
1070
1070
  end
1071
1071
 
1072
1072
  # Set the currency of a current invoice.
1073
1073
  # Parameters: currentInvoiceHandle: Handle for the current invoice. valueHandle: Handle for the new currency of the current invoice.
1074
1074
  #
1075
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1075
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1076
1076
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetCurrency
1077
1077
  # @return [Hash] The body content of the SOAP response.
1078
1078
  def self.set_currency
1079
1079
  response = invoke('CurrentInvoice_SetCurrency') do |message|
1080
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1080
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1081
1081
  end
1082
1082
  end
1083
1083
 
1084
1084
  # Gets the exchange rate of a current invoice.
1085
1085
  # Parameters: currentInvoiceHandle: Handle for the current invoice.
1086
1086
  #
1087
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1087
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1088
1088
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_GetExchangeRate
1089
1089
  # @return [Hash] The body content of the SOAP response.
1090
1090
  def self.get_exchange_rate
1091
1091
  response = invoke('CurrentInvoice_GetExchangeRate') do |message|
1092
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1092
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1093
1093
  end
1094
1094
  end
1095
1095
 
1096
1096
  # Set the exchange rate of a current invoice.
1097
1097
  # Parameters: currentInvoiceHandle: Handle for the current invoice. valueHandle: New exchange of the current invoice.
1098
1098
  #
1099
- # @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1099
+ # @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1100
1100
  # @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=CurrentInvoice_SetExchangeRate
1101
1101
  # @return [Hash] The body content of the SOAP response.
1102
1102
  def self.set_exchange_rate
1103
1103
  response = invoke('CurrentInvoice_SetExchangeRate') do |message|
1104
- raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
1104
+ raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
1105
1105
  end
1106
1106
  end
1107
1107