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.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/ruconomic/api/account.rb +86 -86
- data/lib/ruconomic/api/accounting_period.rb +18 -18
- data/lib/ruconomic/api/accounting_year.rb +26 -26
- data/lib/ruconomic/api/activity.rb +14 -14
- data/lib/ruconomic/api/bank_payment_type.rb +16 -16
- data/lib/ruconomic/api/budget_figure.rb +56 -56
- data/lib/ruconomic/api/cash_book.rb +38 -38
- data/lib/ruconomic/api/cash_book_entry.rb +118 -118
- data/lib/ruconomic/api/company.rb +48 -48
- data/lib/ruconomic/api/cost_type.rb +22 -22
- data/lib/ruconomic/api/cost_type_group.rb +18 -18
- data/lib/ruconomic/api/creditor.rb +114 -114
- data/lib/ruconomic/api/creditor_contact.rb +44 -44
- data/lib/ruconomic/api/creditor_entry.rb +40 -40
- data/lib/ruconomic/api/creditor_group.rb +34 -34
- data/lib/ruconomic/api/currency.rb +10 -10
- data/lib/ruconomic/api/current_invoice.rb +184 -184
- data/lib/ruconomic/api/current_invoice_line.rb +72 -72
- data/lib/ruconomic/api/current_supplier_invoice.rb +18 -18
- data/lib/ruconomic/api/current_supplier_invoice_line.rb +14 -14
- data/lib/ruconomic/api/debtor.rb +152 -152
- data/lib/ruconomic/api/debtor_contact.rb +54 -54
- data/lib/ruconomic/api/debtor_entry.rb +38 -38
- data/lib/ruconomic/api/debtor_group.rb +38 -38
- data/lib/ruconomic/api/delivery_location.rb +56 -56
- data/lib/ruconomic/api/department.rb +32 -32
- data/lib/ruconomic/api/distribution_key.rb +30 -30
- data/lib/ruconomic/api/document_archive_category.rb +26 -26
- data/lib/ruconomic/api/employee.rb +70 -70
- data/lib/ruconomic/api/employee_group.rb +32 -32
- data/lib/ruconomic/api/entry.rb +52 -52
- data/lib/ruconomic/api/extended_vat_zone.rb +12 -12
- data/lib/ruconomic/api/inventory_location.rb +14 -14
- data/lib/ruconomic/api/invoice.rb +115 -111
- data/lib/ruconomic/api/invoice_line.rb +40 -40
- data/lib/ruconomic/api/key_figure_code.rb +16 -16
- data/lib/ruconomic/api/mileage_entry.rb +52 -52
- data/lib/ruconomic/api/order.rb +194 -194
- data/lib/ruconomic/api/order_line.rb +74 -74
- data/lib/ruconomic/api/price_group.rb +32 -32
- data/lib/ruconomic/api/product.rb +88 -88
- data/lib/ruconomic/api/product_group.rb +44 -44
- data/lib/ruconomic/api/product_price.rb +26 -26
- data/lib/ruconomic/api/project.rb +74 -74
- data/lib/ruconomic/api/project_group.rb +18 -18
- data/lib/ruconomic/api/quotation.rb +190 -190
- data/lib/ruconomic/api/quotation_line.rb +74 -74
- data/lib/ruconomic/api/report_code.rb +12 -12
- data/lib/ruconomic/api/report_code_set.rb +14 -14
- data/lib/ruconomic/api/scanned_document.rb +28 -28
- data/lib/ruconomic/api/subscriber.rb +78 -78
- data/lib/ruconomic/api/subscription.rb +62 -62
- data/lib/ruconomic/api/subscription_line.rb +50 -50
- data/lib/ruconomic/api/sum_interval.rb +26 -26
- data/lib/ruconomic/api/template_collection.rb +12 -12
- data/lib/ruconomic/api/term_of_payment.rb +50 -50
- data/lib/ruconomic/api/time_entry.rb +42 -42
- data/lib/ruconomic/api/unit.rb +30 -30
- data/lib/ruconomic/api/vat_account.rb +24 -24
- data/lib/ruconomic/api.rb +12 -13
- data/lib/ruconomic/version.rb +1 -1
- data/ruconomic.gemspec +1 -1
- metadata +20 -21
@@ -6,647 +6,651 @@ module Ruconomic
|
|
6
6
|
# Gets the due date of the invoice.
|
7
7
|
# Parameters: invoiceHandle: Handle for the invoice.
|
8
8
|
#
|
9
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Invoice_GetDueDate
|
11
11
|
# @return [Hash] The body content of the SOAP response.
|
12
12
|
def self.get_due_date
|
13
13
|
response = invoke('Invoice_GetDueDate') do |message|
|
14
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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
|
# Gets the heading of the invoice.
|
19
19
|
# Parameters: invoiceHandle: Handle for the invoice.
|
20
20
|
#
|
21
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Invoice_GetHeading
|
23
23
|
# @return [Hash] The body content of the SOAP response.
|
24
24
|
def self.get_heading
|
25
25
|
response = invoke('Invoice_GetHeading') do |message|
|
26
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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 primary line of text of the invoice.
|
31
31
|
# Parameters: invoiceHandle: Handle for the invoice.
|
32
32
|
#
|
33
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Invoice_GetTextLine1
|
35
35
|
# @return [Hash] The body content of the SOAP response.
|
36
36
|
def self.get_text_line1
|
37
37
|
response = invoke('Invoice_GetTextLine1') do |message|
|
38
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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
|
# Gets the secondary line of text of the invoice.
|
43
43
|
# Parameters: invoiceHandle: Handle for the invoice.
|
44
44
|
#
|
45
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Invoice_GetTextLine2
|
47
47
|
# @return [Hash] The body content of the SOAP response.
|
48
48
|
def self.get_text_line2
|
49
49
|
response = invoke('Invoice_GetTextLine2') do |message|
|
50
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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 the other reference of the invoice.
|
55
55
|
# Parameters: invoiceHandle: Handle for the invoice.
|
56
56
|
#
|
57
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Invoice_GetOtherReference
|
59
59
|
# @return [Hash] The body content of the SOAP response.
|
60
60
|
def self.get_other_reference
|
61
61
|
response = invoke('Invoice_GetOtherReference') do |message|
|
62
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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
|
# Gets the order number of the invoice.
|
67
67
|
# Parameters: invoiceHandle: Handle for the invoice.
|
68
68
|
#
|
69
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Invoice_GetOrderNumber
|
71
71
|
# @return [Hash] The body content of the SOAP response.
|
72
72
|
def self.get_order_number
|
73
73
|
response = invoke('Invoice_GetOrderNumber') do |message|
|
74
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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 the total amount for all lines without VAT of the invoice (in the currency of the invoice).
|
79
79
|
# Parameters: invoiceHandle: Handle for the invoice.
|
80
80
|
#
|
81
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Invoice_GetNetAmount
|
83
83
|
# @return [Hash] The body content of the SOAP response.
|
84
84
|
def self.get_net_amount
|
85
85
|
response = invoke('Invoice_GetNetAmount') do |message|
|
86
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
86
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
87
87
|
end
|
88
88
|
end
|
89
89
|
|
90
90
|
# Gets the total VAT amount for all lines of the invoice (in the currency of the invoice).
|
91
91
|
# Parameters: invoiceHandle: Handle for the invoice.
|
92
92
|
#
|
93
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Invoice_GetVatAmount
|
95
95
|
# @return [Hash] The body content of the SOAP response.
|
96
96
|
def self.get_vat_amount
|
97
97
|
response = invoke('Invoice_GetVatAmount') do |message|
|
98
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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 total gross amount for all lines of the invoice (in the currency of the invoice).
|
103
103
|
# Parameters: invoiceHandle: Handle for the invoice.
|
104
104
|
#
|
105
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Invoice_GetGrossAmount
|
107
107
|
# @return [Hash] The body content of the SOAP response.
|
108
108
|
def self.get_gross_amount
|
109
109
|
response = invoke('Invoice_GetGrossAmount') do |message|
|
110
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
110
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
111
111
|
end
|
112
112
|
end
|
113
113
|
|
114
114
|
# Gets the remainder of the invoice (in the currency of the invoice).
|
115
115
|
# Parameters: invoiceHandle: Handle for the invoice.
|
116
116
|
#
|
117
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Invoice_GetRemainder
|
119
119
|
# @return [Hash] The body content of the SOAP response.
|
120
120
|
def self.get_remainder
|
121
121
|
response = invoke('Invoice_GetRemainder') do |message|
|
122
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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 remainder of the invoice (in the default currency).
|
127
127
|
# Parameters: invoiceHandle: Handle for the invoice.
|
128
128
|
#
|
129
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Invoice_GetRemainderDefaultCurrency
|
131
131
|
# @return [Hash] The body content of the SOAP response.
|
132
132
|
def self.get_remainder_default_currency
|
133
133
|
response = invoke('Invoice_GetRemainderDefaultCurrency') do |message|
|
134
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
134
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
135
135
|
end
|
136
136
|
end
|
137
137
|
|
138
138
|
# Gets the rounding amount for all lines of the invoice (in the currency of the invoice).
|
139
139
|
# Parameters: invoiceHandle: Handle for the invoice.
|
140
140
|
#
|
141
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Invoice_GetRoundingAmount
|
143
143
|
# @return [Hash] The body content of the SOAP response.
|
144
144
|
def self.get_rounding_amount
|
145
145
|
response = invoke('Invoice_GetRoundingAmount') do |message|
|
146
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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 DebtorCounty of an invoice. (UK only)
|
151
151
|
# Parameters: InvoiceHandle: Handle for the Invoice.
|
152
152
|
#
|
153
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Invoice_GetDebtorCounty
|
155
155
|
# @return [Hash] The body content of the SOAP response.
|
156
156
|
def self.get_debtor_county
|
157
157
|
response = invoke('Invoice_GetDebtorCounty') do |message|
|
158
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
158
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
159
159
|
end
|
160
160
|
end
|
161
161
|
|
162
162
|
# Gets the DeliveryCounty of an invoice. (UK only)
|
163
163
|
# Parameters: InvoiceHandle: Handle for the Invoice.
|
164
164
|
#
|
165
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Invoice_GetDeliveryCounty
|
167
167
|
# @return [Hash] The body content of the SOAP response.
|
168
168
|
def self.get_delivery_county
|
169
169
|
response = invoke('Invoice_GetDeliveryCounty') do |message|
|
170
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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 deduction amount of the invoice.
|
175
175
|
# Parameters: invoiceHandle: Handle for the invoice.
|
176
176
|
#
|
177
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Invoice_GetDeductionAmount
|
179
179
|
# @return [Hash] The body content of the SOAP response.
|
180
180
|
def self.get_deduction_amount
|
181
181
|
response = invoke('Invoice_GetDeductionAmount') do |message|
|
182
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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
|
# Returns handles for all invoices.
|
187
187
|
#
|
188
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
188
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
189
189
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetAll
|
190
190
|
# @return [Hash] The body content of the SOAP response.
|
191
191
|
def self.get_all
|
192
192
|
response = invoke('Invoice_GetAll') do |message|
|
193
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
193
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
194
194
|
end
|
195
195
|
end
|
196
196
|
|
197
197
|
# Returns a handle for the invoice with the given number.
|
198
198
|
# Parameters: number: The number to search for.
|
199
199
|
#
|
200
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
201
200
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_FindByNumber
|
202
|
-
# @return [
|
203
|
-
def self.find_by_number
|
201
|
+
# @return [String] The invoice handle.
|
202
|
+
def self.find_by_number(number)
|
204
203
|
response = invoke('Invoice_FindByNumber') do |message|
|
205
|
-
|
204
|
+
message.add 'number', number
|
206
205
|
end
|
206
|
+
|
207
|
+
response.to_hash[:invoice_find_by_number_response][:invoice_find_by_number_result][:number]
|
207
208
|
end
|
208
209
|
|
209
210
|
# Returns an array with handles for the invoices corresponding to the given invoice numbers. If a invoice with a given number does not exist then the array contains nothing at that index.
|
210
211
|
# Parameters: numbers: The numbers to search for.
|
211
212
|
#
|
212
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
213
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
213
214
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_FindByNumberList
|
214
215
|
# @return [Hash] The body content of the SOAP response.
|
215
216
|
def self.find_by_number_list
|
216
217
|
response = invoke('Invoice_FindByNumberList') do |message|
|
217
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
218
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
218
219
|
end
|
219
220
|
end
|
220
221
|
|
221
222
|
# Returns an array with handles for the invoices with invoice numbers in the given interval.
|
222
223
|
# Parameters: minNumber: The start of the interval. maxNumber: The end of the interval.
|
223
224
|
#
|
224
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
225
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
225
226
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_FindByNumberInterval
|
226
227
|
# @return [Hash] The body content of the SOAP response.
|
227
228
|
def self.find_by_number_interval
|
228
229
|
response = invoke('Invoice_FindByNumberInterval') do |message|
|
229
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
230
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
230
231
|
end
|
231
232
|
end
|
232
233
|
|
233
234
|
# Returns handles for invoices in a given interval of days.
|
234
235
|
# Parameters: first: First day in interval. last: Last day in interval.
|
235
236
|
#
|
236
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
237
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
237
238
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_FindByDateInterval
|
238
239
|
# @return [Hash] The body content of the SOAP response.
|
239
240
|
def self.find_by_date_interval
|
240
241
|
response = invoke('Invoice_FindByDateInterval') do |message|
|
241
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
242
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
242
243
|
end
|
243
244
|
end
|
244
245
|
|
245
246
|
# Returns handles for invoices which have the given employee as OurReference.
|
246
247
|
# Parameters: ourReferenceHandle: The employee to search for.
|
247
248
|
#
|
248
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
249
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
249
250
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_FindByOurReference
|
250
251
|
# @return [Hash] The body content of the SOAP response.
|
251
252
|
def self.find_by_our_reference
|
252
253
|
response = invoke('Invoice_FindByOurReference') do |message|
|
253
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
254
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
254
255
|
end
|
255
256
|
end
|
256
257
|
|
257
258
|
# Returns handles for the invoices with a given other reference.
|
258
259
|
# Parameters: otherReference: The other reference to search for.
|
259
260
|
#
|
260
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
261
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
261
262
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_FindByOtherReference
|
262
263
|
# @return [Hash] The body content of the SOAP response.
|
263
264
|
def self.find_by_other_reference
|
264
265
|
response = invoke('Invoice_FindByOtherReference') do |message|
|
265
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
266
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
266
267
|
end
|
267
268
|
end
|
268
269
|
|
269
270
|
# Returns handles for the invoices with a given order number.
|
270
271
|
# Parameters: orderNumber: The number to search for.
|
271
272
|
#
|
272
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
273
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
273
274
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_FindByOrderNumber
|
274
275
|
# @return [Hash] The body content of the SOAP response.
|
275
276
|
def self.find_by_order_number
|
276
277
|
response = invoke('Invoice_FindByOrderNumber') do |message|
|
277
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
278
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
278
279
|
end
|
279
280
|
end
|
280
281
|
|
281
282
|
# Gets handles for the lines of the invoice.
|
282
283
|
# Parameters: invoiceHandle: Handle for the invoice.
|
283
284
|
#
|
284
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
285
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
285
286
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetLines
|
286
287
|
# @return [Hash] The body content of the SOAP response.
|
287
288
|
def self.get_lines
|
288
289
|
response = invoke('Invoice_GetLines') do |message|
|
289
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
290
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
290
291
|
end
|
291
292
|
end
|
292
293
|
|
293
294
|
# Gets an invoice as a PDF-file.
|
294
295
|
# Parameters: invoiceHandle: Handle for the invoice.
|
295
296
|
#
|
296
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
297
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
297
298
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetPdf
|
298
299
|
# @return [Hash] The body content of the SOAP response.
|
299
300
|
def self.get_pdf
|
300
301
|
response = invoke('Invoice_GetPdf') do |message|
|
301
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
302
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
302
303
|
end
|
303
304
|
end
|
304
305
|
|
305
306
|
# Gets an OIO XML string representing an invoice.
|
306
307
|
# Parameters: invoiceHandle: Handle for the invoice.
|
307
308
|
#
|
308
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
309
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
309
310
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetOioXml
|
310
311
|
# @return [Hash] The body content of the SOAP response.
|
311
312
|
def self.get_oio_xml
|
312
313
|
response = invoke('Invoice_GetOioXml') do |message|
|
313
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
314
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
314
315
|
end
|
315
316
|
end
|
316
317
|
|
317
318
|
# Returns an invoice data object for a given invoice.
|
318
319
|
# Parameters: entityHandle: A handle for the invoice.
|
319
320
|
#
|
320
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
321
321
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetData
|
322
322
|
# @return [Hash] The body content of the SOAP response.
|
323
|
-
def self.get_data
|
323
|
+
def self.get_data(entityHandle)
|
324
324
|
response = invoke('Invoice_GetData') do |message|
|
325
|
-
|
325
|
+
message.add 'entityHandle' do |number|
|
326
|
+
number.add 'Number', entityHandle
|
327
|
+
end
|
326
328
|
end
|
329
|
+
|
330
|
+
response.to_hash[:invoice_get_data_response][:invoice_get_data_result]
|
327
331
|
end
|
328
332
|
|
329
333
|
# Returns invoice data objects for a given set of invoice handles.
|
330
334
|
# Parameters: entityHandles: An array of the invoice handles.
|
331
335
|
#
|
332
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
336
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
333
337
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDataArray
|
334
338
|
# @return [Hash] The body content of the SOAP response.
|
335
339
|
def self.get_data_array
|
336
340
|
response = invoke('Invoice_GetDataArray') do |message|
|
337
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
341
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
338
342
|
end
|
339
343
|
end
|
340
344
|
|
341
345
|
# Gets the number of an invoice.
|
342
346
|
# Parameters: invoiceHandle: Handle for the invoice.
|
343
347
|
#
|
344
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
348
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
345
349
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetNumber
|
346
350
|
# @return [Hash] The body content of the SOAP response.
|
347
351
|
def self.get_number
|
348
352
|
response = invoke('Invoice_GetNumber') do |message|
|
349
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
353
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
350
354
|
end
|
351
355
|
end
|
352
356
|
|
353
357
|
# Gets a handle for the debtor for an invoice.
|
354
358
|
# Parameters: invoiceHandle: Handle for the invoice.
|
355
359
|
#
|
356
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
360
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
357
361
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDebtor
|
358
362
|
# @return [Hash] The body content of the SOAP response.
|
359
363
|
def self.get_debtor
|
360
364
|
response = invoke('Invoice_GetDebtor') do |message|
|
361
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
365
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
362
366
|
end
|
363
367
|
end
|
364
368
|
|
365
369
|
# Gets a handle for the project for an invoice.
|
366
370
|
# Parameters: invoiceHandle: Handle for the invoice.
|
367
371
|
#
|
368
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
372
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
369
373
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetProject
|
370
374
|
# @return [Hash] The body content of the SOAP response.
|
371
375
|
def self.get_project
|
372
376
|
response = invoke('Invoice_GetProject') do |message|
|
373
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
377
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
374
378
|
end
|
375
379
|
end
|
376
380
|
|
377
381
|
# Gets the name for an invoice.
|
378
382
|
# Parameters: invoiceHandle: Handle for the invoice.
|
379
383
|
#
|
380
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
384
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
381
385
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDebtorName
|
382
386
|
# @return [Hash] The body content of the SOAP response.
|
383
387
|
def self.get_debtor_name
|
384
388
|
response = invoke('Invoice_GetDebtorName') do |message|
|
385
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
389
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
386
390
|
end
|
387
391
|
end
|
388
392
|
|
389
393
|
# Gets the debtor address for an invoice.
|
390
394
|
# Parameters: invoiceHandle: Handle for the invoice.
|
391
395
|
#
|
392
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
396
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
393
397
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDebtorAddress
|
394
398
|
# @return [Hash] The body content of the SOAP response.
|
395
399
|
def self.get_debtor_address
|
396
400
|
response = invoke('Invoice_GetDebtorAddress') do |message|
|
397
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
401
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
398
402
|
end
|
399
403
|
end
|
400
404
|
|
401
405
|
# Gets the debtor postal code for an invoice.
|
402
406
|
# Parameters: invoiceHandle: Handle for the invoice.
|
403
407
|
#
|
404
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
408
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
405
409
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDebtorPostalCode
|
406
410
|
# @return [Hash] The body content of the SOAP response.
|
407
411
|
def self.get_debtor_postal_code
|
408
412
|
response = invoke('Invoice_GetDebtorPostalCode') do |message|
|
409
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
413
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
410
414
|
end
|
411
415
|
end
|
412
416
|
|
413
417
|
# Gets the debtor city for an invoice.
|
414
418
|
# Parameters: invoiceHandle: Handle for the invoice.
|
415
419
|
#
|
416
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
420
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
417
421
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDebtorCity
|
418
422
|
# @return [Hash] The body content of the SOAP response.
|
419
423
|
def self.get_debtor_city
|
420
424
|
response = invoke('Invoice_GetDebtorCity') do |message|
|
421
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
425
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
422
426
|
end
|
423
427
|
end
|
424
428
|
|
425
429
|
# Gets the debtor country for an invoice.
|
426
430
|
# Parameters: invoiceHandle: Handle for the invoice.
|
427
431
|
#
|
428
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
432
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
429
433
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDebtorCountry
|
430
434
|
# @return [Hash] The body content of the SOAP response.
|
431
435
|
def self.get_debtor_country
|
432
436
|
response = invoke('Invoice_GetDebtorCountry') do |message|
|
433
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
437
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
434
438
|
end
|
435
439
|
end
|
436
440
|
|
437
441
|
# Gets the debtor EAN for an invoice.
|
438
442
|
# Parameters: invoiceHandle: Handle for the invoice.
|
439
443
|
#
|
440
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
444
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
441
445
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDebtorEan
|
442
446
|
# @return [Hash] The body content of the SOAP response.
|
443
447
|
def self.get_debtor_ean
|
444
448
|
response = invoke('Invoice_GetDebtorEan') do |message|
|
445
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
449
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
446
450
|
end
|
447
451
|
end
|
448
452
|
|
449
453
|
# Gets the public entry number an invoice.
|
450
454
|
# Parameters: invoiceHandle: Handle for the invoice.
|
451
455
|
#
|
452
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
456
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
453
457
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetPublicEntryNumber
|
454
458
|
# @return [Hash] The body content of the SOAP response.
|
455
459
|
def self.get_public_entry_number
|
456
460
|
response = invoke('Invoice_GetPublicEntryNumber') do |message|
|
457
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
461
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
458
462
|
end
|
459
463
|
end
|
460
464
|
|
461
465
|
# Gets a handle for the attention of an invoice.
|
462
466
|
# Parameters: invoiceHandle: Handle for the invoice.
|
463
467
|
#
|
464
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
468
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
465
469
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetAttention
|
466
470
|
# @return [Hash] The body content of the SOAP response.
|
467
471
|
def self.get_attention
|
468
472
|
response = invoke('Invoice_GetAttention') do |message|
|
469
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
473
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
470
474
|
end
|
471
475
|
end
|
472
476
|
|
473
477
|
# Gets a handle for the reference of the debtor of an invoice.
|
474
478
|
# Parameters: invoiceHandle: Handle for the invoice.
|
475
479
|
#
|
476
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
480
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
477
481
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetYourReference
|
478
482
|
# @return [Hash] The body content of the SOAP response.
|
479
483
|
def self.get_your_reference
|
480
484
|
response = invoke('Invoice_GetYourReference') do |message|
|
481
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
485
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
482
486
|
end
|
483
487
|
end
|
484
488
|
|
485
489
|
# Gets a handle for the primary reference of the creditor of an invoice.
|
486
490
|
# Parameters: invoiceHandle: Handle for the invoice.
|
487
491
|
#
|
488
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
492
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
489
493
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetOurReference
|
490
494
|
# @return [Hash] The body content of the SOAP response.
|
491
495
|
def self.get_our_reference
|
492
496
|
response = invoke('Invoice_GetOurReference') do |message|
|
493
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
497
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
494
498
|
end
|
495
499
|
end
|
496
500
|
|
497
501
|
# Gets a handle for the secodary reference of the creditor of an invoice.
|
498
502
|
# Parameters: invoiceHandle: Handle for the invoice.
|
499
503
|
#
|
500
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
504
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
501
505
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetOurReference2
|
502
506
|
# @return [Hash] The body content of the SOAP response.
|
503
507
|
def self.get_our_reference2
|
504
508
|
response = invoke('Invoice_GetOurReference2') do |message|
|
505
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
509
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
506
510
|
end
|
507
511
|
end
|
508
512
|
|
509
513
|
# Gets a handle for the term of payment of an invoice.
|
510
514
|
# Parameters: invoiceHandle: Handle for the invoice.
|
511
515
|
#
|
512
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
516
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
513
517
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetTermOfPayment
|
514
518
|
# @return [Hash] The body content of the SOAP response.
|
515
519
|
def self.get_term_of_payment
|
516
520
|
response = invoke('Invoice_GetTermOfPayment') do |message|
|
517
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
521
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
518
522
|
end
|
519
523
|
end
|
520
524
|
|
521
525
|
# Gets a handle for the currency of an invoice.
|
522
526
|
# Parameters: invoiceHandle: Handle for the invoice.
|
523
527
|
#
|
524
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
528
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
525
529
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetCurrency
|
526
530
|
# @return [Hash] The body content of the SOAP response.
|
527
531
|
def self.get_currency
|
528
532
|
response = invoke('Invoice_GetCurrency') do |message|
|
529
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
533
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
530
534
|
end
|
531
535
|
end
|
532
536
|
|
533
537
|
# Gets whether the invoice has VAT included.
|
534
538
|
# Parameters: invoiceHandle: Handle for the invoice.
|
535
539
|
#
|
536
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
540
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
537
541
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetIsVatIncluded
|
538
542
|
# @return [Hash] The body content of the SOAP response.
|
539
543
|
def self.get_is_vat_included
|
540
544
|
response = invoke('Invoice_GetIsVatIncluded') do |message|
|
541
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
545
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
542
546
|
end
|
543
547
|
end
|
544
548
|
|
545
549
|
# Gets a handle for the layout of the invoice.
|
546
550
|
# Parameters: invoiceHandle: Handle for the invoice.
|
547
551
|
#
|
548
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
552
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
549
553
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetLayout
|
550
554
|
# @return [Hash] The body content of the SOAP response.
|
551
555
|
def self.get_layout
|
552
556
|
response = invoke('Invoice_GetLayout') do |message|
|
553
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
557
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
554
558
|
end
|
555
559
|
end
|
556
560
|
|
557
561
|
# Gets a handle for the delivery location of the invoice.
|
558
562
|
# Parameters: invoiceHandle: Handle for the invoice.
|
559
563
|
#
|
560
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
564
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
561
565
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDeliveryLocation
|
562
566
|
# @return [Hash] The body content of the SOAP response.
|
563
567
|
def self.get_delivery_location
|
564
568
|
response = invoke('Invoice_GetDeliveryLocation') do |message|
|
565
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
569
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
566
570
|
end
|
567
571
|
end
|
568
572
|
|
569
573
|
# Gets the delivery address of the invoice.
|
570
574
|
# Parameters: invoiceHandle: Handle for the invoice.
|
571
575
|
#
|
572
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
576
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
573
577
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDeliveryAddress
|
574
578
|
# @return [Hash] The body content of the SOAP response.
|
575
579
|
def self.get_delivery_address
|
576
580
|
response = invoke('Invoice_GetDeliveryAddress') do |message|
|
577
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
581
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
578
582
|
end
|
579
583
|
end
|
580
584
|
|
581
585
|
# Gets the delivery postal code of the invoice.
|
582
586
|
# Parameters: invoiceHandle: Handle for the invoice.
|
583
587
|
#
|
584
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
588
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
585
589
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDeliveryPostalCode
|
586
590
|
# @return [Hash] The body content of the SOAP response.
|
587
591
|
def self.get_delivery_postal_code
|
588
592
|
response = invoke('Invoice_GetDeliveryPostalCode') do |message|
|
589
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
593
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
590
594
|
end
|
591
595
|
end
|
592
596
|
|
593
597
|
# Gets the delivery city of the invoice.
|
594
598
|
# Parameters: invoiceHandle: Handle for the invoice.
|
595
599
|
#
|
596
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
600
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
597
601
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDeliveryCity
|
598
602
|
# @return [Hash] The body content of the SOAP response.
|
599
603
|
def self.get_delivery_city
|
600
604
|
response = invoke('Invoice_GetDeliveryCity') do |message|
|
601
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
605
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
602
606
|
end
|
603
607
|
end
|
604
608
|
|
605
609
|
# Gets the delivery country of the invoice.
|
606
610
|
# Parameters: invoiceHandle: Handle for the invoice.
|
607
611
|
#
|
608
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
612
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
609
613
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDeliveryCountry
|
610
614
|
# @return [Hash] The body content of the SOAP response.
|
611
615
|
def self.get_delivery_country
|
612
616
|
response = invoke('Invoice_GetDeliveryCountry') do |message|
|
613
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
617
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
614
618
|
end
|
615
619
|
end
|
616
620
|
|
617
621
|
# Gets the terms of delivery of the invoice.
|
618
622
|
# Parameters: invoiceHandle: Handle for the invoice.
|
619
623
|
#
|
620
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
624
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
621
625
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetTermsOfDelivery
|
622
626
|
# @return [Hash] The body content of the SOAP response.
|
623
627
|
def self.get_terms_of_delivery
|
624
628
|
response = invoke('Invoice_GetTermsOfDelivery') do |message|
|
625
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
629
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
626
630
|
end
|
627
631
|
end
|
628
632
|
|
629
633
|
# Gets the delivery date of the invoice.
|
630
634
|
# Parameters: invoiceHandle: Handle for the invoice.
|
631
635
|
#
|
632
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
636
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
633
637
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDeliveryDate
|
634
638
|
# @return [Hash] The body content of the SOAP response.
|
635
639
|
def self.get_delivery_date
|
636
640
|
response = invoke('Invoice_GetDeliveryDate') do |message|
|
637
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
641
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
638
642
|
end
|
639
643
|
end
|
640
644
|
|
641
645
|
# Gets the date of the invoice.
|
642
646
|
# Parameters: invoiceHandle: Handle for the invoice.
|
643
647
|
#
|
644
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
648
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
645
649
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Invoice_GetDate
|
646
650
|
# @return [Hash] The body content of the SOAP response.
|
647
651
|
def self.get_date
|
648
652
|
response = invoke('Invoice_GetDate') do |message|
|
649
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
653
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
650
654
|
end
|
651
655
|
end
|
652
656
|
|