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
data/lib/ruconomic/api/order.rb
CHANGED
@@ -6,1161 +6,1161 @@ module Ruconomic
|
|
6
6
|
# Gets the secondary line of text of an order.
|
7
7
|
# Parameters: orderHandle: Handle for the order.
|
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=Order_GetTextLine2
|
11
11
|
# @return [Hash] The body content of the SOAP response.
|
12
12
|
def self.get_text_line2
|
13
13
|
response = invoke('Order_GetTextLine2') 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
|
# Sets the secondary line of text of an order.
|
19
19
|
# Parameters: orderHandle: Handle for the order. value: The new secondary line of text of the order.
|
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=Order_SetTextLine2
|
23
23
|
# @return [Hash] The body content of the SOAP response.
|
24
24
|
def self.set_text_line2
|
25
25
|
response = invoke('Order_SetTextLine2') 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 other reference of an order.
|
31
31
|
# Parameters: orderHandle: Handle for the order.
|
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=Order_GetOtherReference
|
35
35
|
# @return [Hash] The body content of the SOAP response.
|
36
36
|
def self.get_other_reference
|
37
37
|
response = invoke('Order_GetOtherReference') 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
|
# Sets the other reference of an order.
|
43
43
|
# Parameters: orderHandle: Handle for the order. value: The new other reference of the order.
|
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=Order_SetOtherReference
|
47
47
|
# @return [Hash] The body content of the SOAP response.
|
48
48
|
def self.set_other_reference
|
49
49
|
response = invoke('Order_SetOtherReference') 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 thether an order is archived.
|
55
55
|
# Parameters: orderHandle: Handle for the order.
|
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=Order_GetIsArchived
|
59
59
|
# @return [Hash] The body content of the SOAP response.
|
60
60
|
def self.get_is_archived
|
61
61
|
response = invoke('Order_GetIsArchived') 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 whether an order is sent.
|
67
67
|
# Parameters: orderHandle: Handle for the order.
|
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=Order_GetIsSent
|
71
71
|
# @return [Hash] The body content of the SOAP response.
|
72
72
|
def self.get_is_sent
|
73
73
|
response = invoke('Order_GetIsSent') 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 the lines without VAT of an order (in the currency of the order).
|
79
79
|
# Parameters: orderHandle: Handle for the order.
|
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=Order_GetNetAmount
|
83
83
|
# @return [Hash] The body content of the SOAP response.
|
84
84
|
def self.get_net_amount
|
85
85
|
response = invoke('Order_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 the lines of an order (in the currency of the order).
|
91
91
|
# Parameters: orderHandle: Handle for the order.
|
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=Order_GetVatAmount
|
95
95
|
# @return [Hash] The body content of the SOAP response.
|
96
96
|
def self.get_vat_amount
|
97
97
|
response = invoke('Order_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 the lines of an order (in the currency of the order).
|
103
103
|
# Parameters: orderHandle: Handle for the order.
|
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=Order_GetGrossAmount
|
107
107
|
# @return [Hash] The body content of the SOAP response.
|
108
108
|
def self.get_gross_amount
|
109
109
|
response = invoke('Order_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 margin of an order (in the currency of the order).
|
115
115
|
# Parameters: orderHandle: Handle for the order.
|
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=Order_GetMargin
|
119
119
|
# @return [Hash] The body content of the SOAP response.
|
120
120
|
def self.get_margin
|
121
121
|
response = invoke('Order_GetMargin') 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 margin of an order as percent.
|
127
127
|
# Parameters: orderHandle: Handle for the order.
|
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=Order_GetMarginAsPercent
|
131
131
|
# @return [Hash] The body content of the SOAP response.
|
132
132
|
def self.get_margin_as_percent
|
133
133
|
response = invoke('Order_GetMarginAsPercent') 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 order (in the currency of the order).
|
139
139
|
# Parameters: orderHandle: Handle for the order.
|
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=Order_GetRoundingAmount
|
143
143
|
# @return [Hash] The body content of the SOAP response.
|
144
144
|
def self.get_rounding_amount
|
145
145
|
response = invoke('Order_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 order. (UK only)
|
151
151
|
# Parameters: orderHandle: Handle for the order.
|
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=Order_GetDebtorCounty
|
155
155
|
# @return [Hash] The body content of the SOAP response.
|
156
156
|
def self.get_debtor_county
|
157
157
|
response = invoke('Order_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
|
# Sets the DebtorCounty of an order. (UK only)
|
163
163
|
# Parameters: orderHandle: Handle for the order. value: The new DebtorCounty of the order.
|
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=Order_SetDebtorCounty
|
167
167
|
# @return [Hash] The body content of the SOAP response.
|
168
168
|
def self.set_debtor_county
|
169
169
|
response = invoke('Order_SetDebtorCounty') 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 DeliveryCounty of an order. (UK only)
|
175
175
|
# Parameters: orderHandle: Handle for the order.
|
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=Order_GetDeliveryCounty
|
179
179
|
# @return [Hash] The body content of the SOAP response.
|
180
180
|
def self.get_delivery_county
|
181
181
|
response = invoke('Order_GetDeliveryCounty') 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
|
# Sets the DeliveryCounty of an order. (UK only)
|
187
187
|
# Parameters: orderHandle: Handle for the order. value: The new DeliveryCounty of the order.
|
188
188
|
#
|
189
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Order_SetDeliveryCounty
|
191
191
|
# @return [Hash] The body content of the SOAP response.
|
192
192
|
def self.set_delivery_county
|
193
193
|
response = invoke('Order_SetDeliveryCounty') do |message|
|
194
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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
|
# Creates a new order from a data object.
|
199
199
|
# Parameters: data: The data object that specifies the properties of the new order.
|
200
200
|
#
|
201
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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=Order_CreateFromData
|
203
203
|
# @return [Hash] The body content of the SOAP response.
|
204
204
|
def self.create_from_data
|
205
205
|
response = invoke('Order_CreateFromData') do |message|
|
206
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
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
|
# Creates new orders from data objects.
|
211
211
|
# Parameters: dataArray: The array of data objects that specifies the properties of the new orders.
|
212
212
|
#
|
213
|
-
# @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"
|
214
214
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_CreateFromDataArray
|
215
215
|
# @return [Hash] The body content of the SOAP response.
|
216
216
|
def self.create_from_data_array
|
217
217
|
response = invoke('Order_CreateFromDataArray') do |message|
|
218
|
-
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"
|
219
219
|
end
|
220
220
|
end
|
221
221
|
|
222
222
|
# Update orders from data objects.
|
223
223
|
# Parameters: dataArray: The array of data objects.
|
224
224
|
#
|
225
|
-
# @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"
|
226
226
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_UpdateFromDataArray
|
227
227
|
# @return [Hash] The body content of the SOAP response.
|
228
228
|
def self.update_from_data_array
|
229
229
|
response = invoke('Order_UpdateFromDataArray') do |message|
|
230
|
-
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"
|
231
231
|
end
|
232
232
|
end
|
233
233
|
|
234
234
|
# Updates an order from a data object.
|
235
235
|
# Parameters: data: The data object.
|
236
236
|
#
|
237
|
-
# @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"
|
238
238
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_UpdateFromData
|
239
239
|
# @return [Hash] The body content of the SOAP response.
|
240
240
|
def self.update_from_data
|
241
241
|
response = invoke('Order_UpdateFromData') do |message|
|
242
|
-
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"
|
243
243
|
end
|
244
244
|
end
|
245
245
|
|
246
246
|
# Returns an order data object for a given order.
|
247
247
|
# Parameters: entityHandle: A handle for the order.
|
248
248
|
#
|
249
|
-
# @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"
|
250
250
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetData
|
251
251
|
# @return [Hash] The body content of the SOAP response.
|
252
252
|
def self.get_data
|
253
253
|
response = invoke('Order_GetData') do |message|
|
254
|
-
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"
|
255
255
|
end
|
256
256
|
end
|
257
257
|
|
258
258
|
# Returns order data objects for a given set of order handles.
|
259
259
|
# Parameters: entityHandles: An array of the order handles.
|
260
260
|
#
|
261
|
-
# @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"
|
262
262
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetDataArray
|
263
263
|
# @return [Hash] The body content of the SOAP response.
|
264
264
|
def self.get_data_array
|
265
265
|
response = invoke('Order_GetDataArray') do |message|
|
266
|
-
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"
|
267
267
|
end
|
268
268
|
end
|
269
269
|
|
270
270
|
# Creates a new order. The debtor properties of the new order are set to those of the debtor.
|
271
271
|
# Parameters: Handle for the debtr of the new order.
|
272
272
|
#
|
273
|
-
# @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"
|
274
274
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_Create
|
275
275
|
# @return [Hash] The body content of the SOAP response.
|
276
276
|
def self.create
|
277
277
|
response = invoke('Order_Create') do |message|
|
278
|
-
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"
|
279
279
|
end
|
280
280
|
end
|
281
281
|
|
282
282
|
# Gets an order as a PDF-file.
|
283
283
|
# Parameters: orderHandle: Handle for the order.
|
284
284
|
#
|
285
|
-
# @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"
|
286
286
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetPdf
|
287
287
|
# @return [Hash] The body content of the SOAP response.
|
288
288
|
def self.get_pdf
|
289
289
|
response = invoke('Order_GetPdf') do |message|
|
290
|
-
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"
|
291
291
|
end
|
292
292
|
end
|
293
293
|
|
294
294
|
# Returns handles for all orders.
|
295
295
|
#
|
296
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
296
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
297
297
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetAll
|
298
298
|
# @return [Hash] The body content of the SOAP response.
|
299
299
|
def self.get_all
|
300
300
|
response = invoke('Order_GetAll') do |message|
|
301
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
301
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
302
302
|
end
|
303
303
|
end
|
304
304
|
|
305
305
|
# Returns handles for all current orders.
|
306
306
|
#
|
307
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
307
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
308
308
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetAllCurrent
|
309
309
|
# @return [Hash] The body content of the SOAP response.
|
310
310
|
def self.get_all_current
|
311
311
|
response = invoke('Order_GetAllCurrent') do |message|
|
312
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
312
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
313
313
|
end
|
314
314
|
end
|
315
315
|
|
316
316
|
# Returns handles for the orders with a given other reference.
|
317
317
|
# Parameters: otherReference: The other reference to search for.
|
318
318
|
#
|
319
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
319
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
320
320
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_FindByOtherReference
|
321
321
|
# @return [Hash] The body content of the SOAP response.
|
322
322
|
def self.find_by_other_reference
|
323
323
|
response = invoke('Order_FindByOtherReference') do |message|
|
324
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
324
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
325
325
|
end
|
326
326
|
end
|
327
327
|
|
328
328
|
# Returns a handle for the order with a given number.
|
329
329
|
# Parameters: number: The number to search for.
|
330
330
|
#
|
331
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
331
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
332
332
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_FindByNumber
|
333
333
|
# @return [Hash] The body content of the SOAP response.
|
334
334
|
def self.find_by_number
|
335
335
|
response = invoke('Order_FindByNumber') do |message|
|
336
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
336
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
337
337
|
end
|
338
338
|
end
|
339
339
|
|
340
340
|
# Returns an array with handles for the orders with numbers in the given interval.
|
341
341
|
# Parameters: minNumber: The start of the interval. maxNumber: The end of the interval.
|
342
342
|
#
|
343
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
343
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
344
344
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_FindByNumberInterval
|
345
345
|
# @return [Hash] The body content of the SOAP response.
|
346
346
|
def self.find_by_number_interval
|
347
347
|
response = invoke('Order_FindByNumberInterval') do |message|
|
348
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
348
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
349
349
|
end
|
350
350
|
end
|
351
351
|
|
352
352
|
# Returns handles for orders in a given interval of days.
|
353
353
|
# Parameters: first: First day in interval. last: Last day in interval.
|
354
354
|
#
|
355
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
355
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
356
356
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_FindByDateInterval
|
357
357
|
# @return [Hash] The body content of the SOAP response.
|
358
358
|
def self.find_by_date_interval
|
359
359
|
response = invoke('Order_FindByDateInterval') do |message|
|
360
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
360
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
361
361
|
end
|
362
362
|
end
|
363
363
|
|
364
364
|
# Return handles for all orders from date. FromDate is based on CET.
|
365
365
|
#
|
366
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
366
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
367
367
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetAllUpdated
|
368
368
|
# @return [Hash] The body content of the SOAP response.
|
369
369
|
def self.get_all_updated
|
370
370
|
response = invoke('Order_GetAllUpdated') do |message|
|
371
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
371
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
372
372
|
end
|
373
373
|
end
|
374
374
|
|
375
375
|
# Gets handles for lines of an order.
|
376
376
|
# Parameters: orderHandle: Handle for the order.
|
377
377
|
#
|
378
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
378
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
379
379
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetLines
|
380
380
|
# @return [Hash] The body content of the SOAP response.
|
381
381
|
def self.get_lines
|
382
382
|
response = invoke('Order_GetLines') do |message|
|
383
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
383
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
384
384
|
end
|
385
385
|
end
|
386
386
|
|
387
387
|
# Registers an order as sent.
|
388
388
|
# Parameters: orderHandle: Handle for the order.
|
389
389
|
#
|
390
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
390
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
391
391
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_RegisterAsSent
|
392
392
|
# @return [Hash] The body content of the SOAP response.
|
393
393
|
def self.register_as_sent
|
394
394
|
response = invoke('Order_RegisterAsSent') do |message|
|
395
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
395
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
396
396
|
end
|
397
397
|
end
|
398
398
|
|
399
399
|
# Cancels sent status of an order.
|
400
400
|
# Parameters: orderHandle: Handle for the order.
|
401
401
|
#
|
402
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
402
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
403
403
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_CancelSentStatus
|
404
404
|
# @return [Hash] The body content of the SOAP response.
|
405
405
|
def self.cancel_sent_status
|
406
406
|
response = invoke('Order_CancelSentStatus') do |message|
|
407
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
407
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
408
408
|
end
|
409
409
|
end
|
410
410
|
|
411
411
|
# Upgrades an order to a current invoice.
|
412
412
|
# Parameters: orderHandle: Handle for the order.
|
413
413
|
#
|
414
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
414
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
415
415
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_UpgradeToInvoice
|
416
416
|
# @return [Hash] The body content of the SOAP response.
|
417
417
|
def self.upgrade_to_invoice
|
418
418
|
response = invoke('Order_UpgradeToInvoice') do |message|
|
419
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
419
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
420
420
|
end
|
421
421
|
end
|
422
422
|
|
423
423
|
# Deletes an order.
|
424
424
|
# Parameters: orderHandle: Handle for the order.
|
425
425
|
#
|
426
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
426
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
427
427
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_Delete
|
428
428
|
# @return [Hash] The body content of the SOAP response.
|
429
429
|
def self.delete
|
430
430
|
response = invoke('Order_Delete') do |message|
|
431
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
431
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
432
432
|
end
|
433
433
|
end
|
434
434
|
|
435
435
|
# Gets a handle for the debtor of the order.
|
436
436
|
# Parameters: orderHandle: Handle for the order.
|
437
437
|
#
|
438
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
438
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
439
439
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetDebtor
|
440
440
|
# @return [Hash] The body content of the SOAP response.
|
441
441
|
def self.get_debtor
|
442
442
|
response = invoke('Order_GetDebtor') do |message|
|
443
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
443
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
444
444
|
end
|
445
445
|
end
|
446
446
|
|
447
447
|
# Sets a handle for the debtor of the order.
|
448
448
|
# Parameters: orderHandle: Handle for the order. valueHandle: Handle for the new debtor of the order.
|
449
449
|
#
|
450
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
450
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
451
451
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetDebtor
|
452
452
|
# @return [Hash] The body content of the SOAP response.
|
453
453
|
def self.set_debtor
|
454
454
|
response = invoke('Order_SetDebtor') do |message|
|
455
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
455
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
456
456
|
end
|
457
457
|
end
|
458
458
|
|
459
459
|
# Gets the number of an order.
|
460
460
|
# Parameters: orderHandle: Handle for the order.
|
461
461
|
#
|
462
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
462
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
463
463
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetNumber
|
464
464
|
# @return [Hash] The body content of the SOAP response.
|
465
465
|
def self.get_number
|
466
466
|
response = invoke('Order_GetNumber') do |message|
|
467
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
467
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
468
468
|
end
|
469
469
|
end
|
470
470
|
|
471
471
|
# Gets the debtor number of an order.
|
472
472
|
# Parameters: orderHandle: Handle for the order.
|
473
473
|
#
|
474
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
474
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
475
475
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetDebtorName
|
476
476
|
# @return [Hash] The body content of the SOAP response.
|
477
477
|
def self.get_debtor_name
|
478
478
|
response = invoke('Order_GetDebtorName') do |message|
|
479
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
479
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
480
480
|
end
|
481
481
|
end
|
482
482
|
|
483
483
|
# Sets the debtor number of an order.
|
484
484
|
# Parameters: orderHandle: Handle for the order. value: The new debtor number of the order.
|
485
485
|
#
|
486
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
486
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
487
487
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetDebtorName
|
488
488
|
# @return [Hash] The body content of the SOAP response.
|
489
489
|
def self.set_debtor_name
|
490
490
|
response = invoke('Order_SetDebtorName') do |message|
|
491
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
491
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
492
492
|
end
|
493
493
|
end
|
494
494
|
|
495
495
|
# Gets the debtor address of an order.
|
496
496
|
# Parameters: orderHandle: Handle for the order.
|
497
497
|
#
|
498
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
498
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
499
499
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetDebtorAddress
|
500
500
|
# @return [Hash] The body content of the SOAP response.
|
501
501
|
def self.get_debtor_address
|
502
502
|
response = invoke('Order_GetDebtorAddress') do |message|
|
503
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
503
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
504
504
|
end
|
505
505
|
end
|
506
506
|
|
507
507
|
# Sets the debtor address of an order.
|
508
508
|
# Parameters: orderHandle: Handle for the order. value: The new debtor address of the order.
|
509
509
|
#
|
510
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
510
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
511
511
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetDebtorAddress
|
512
512
|
# @return [Hash] The body content of the SOAP response.
|
513
513
|
def self.set_debtor_address
|
514
514
|
response = invoke('Order_SetDebtorAddress') do |message|
|
515
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
515
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
516
516
|
end
|
517
517
|
end
|
518
518
|
|
519
519
|
# Gets the debtor postal code of an order.
|
520
520
|
# Parameters: orderHandle: Handle for the order.
|
521
521
|
#
|
522
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
522
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
523
523
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetDebtorPostalCode
|
524
524
|
# @return [Hash] The body content of the SOAP response.
|
525
525
|
def self.get_debtor_postal_code
|
526
526
|
response = invoke('Order_GetDebtorPostalCode') do |message|
|
527
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
527
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
528
528
|
end
|
529
529
|
end
|
530
530
|
|
531
531
|
# Sets the debtor postal code of an order.
|
532
532
|
# Parameters: orderHandle: Handle for the order. value: The new debtor postal code of the order.
|
533
533
|
#
|
534
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
534
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
535
535
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetDebtorPostalCode
|
536
536
|
# @return [Hash] The body content of the SOAP response.
|
537
537
|
def self.set_debtor_postal_code
|
538
538
|
response = invoke('Order_SetDebtorPostalCode') do |message|
|
539
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
539
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
540
540
|
end
|
541
541
|
end
|
542
542
|
|
543
543
|
# Gets the debtor city of an order.
|
544
544
|
# Parameters: orderHandle: Handle for the order.
|
545
545
|
#
|
546
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
546
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
547
547
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetDebtorCity
|
548
548
|
# @return [Hash] The body content of the SOAP response.
|
549
549
|
def self.get_debtor_city
|
550
550
|
response = invoke('Order_GetDebtorCity') do |message|
|
551
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
551
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
552
552
|
end
|
553
553
|
end
|
554
554
|
|
555
555
|
# Sets the debtor city of an order.
|
556
556
|
# Parameters: orderHandle: Handle for the order. value: The new debtor city of the order.
|
557
557
|
#
|
558
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
558
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
559
559
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetDebtorCity
|
560
560
|
# @return [Hash] The body content of the SOAP response.
|
561
561
|
def self.set_debtor_city
|
562
562
|
response = invoke('Order_SetDebtorCity') do |message|
|
563
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
563
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
564
564
|
end
|
565
565
|
end
|
566
566
|
|
567
567
|
# Gets the debtor country of an order.
|
568
568
|
# Parameters: orderHandle: Handle for the order.
|
569
569
|
#
|
570
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
570
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
571
571
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetDebtorCountry
|
572
572
|
# @return [Hash] The body content of the SOAP response.
|
573
573
|
def self.get_debtor_country
|
574
574
|
response = invoke('Order_GetDebtorCountry') do |message|
|
575
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
575
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
576
576
|
end
|
577
577
|
end
|
578
578
|
|
579
579
|
# Sets the debtor country of an order.
|
580
580
|
# Parameters: orderHandle: Handle for the order. value: The new debtor country of the order.
|
581
581
|
#
|
582
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
582
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
583
583
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetDebtorCountry
|
584
584
|
# @return [Hash] The body content of the SOAP response.
|
585
585
|
def self.set_debtor_country
|
586
586
|
response = invoke('Order_SetDebtorCountry') do |message|
|
587
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
587
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
588
588
|
end
|
589
589
|
end
|
590
590
|
|
591
591
|
# Gets the debtor EAN of an order.
|
592
592
|
# Parameters: orderHandle: Handle for the order.
|
593
593
|
#
|
594
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
594
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
595
595
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetDebtorEan
|
596
596
|
# @return [Hash] The body content of the SOAP response.
|
597
597
|
def self.get_debtor_ean
|
598
598
|
response = invoke('Order_GetDebtorEan') do |message|
|
599
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
599
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
600
600
|
end
|
601
601
|
end
|
602
602
|
|
603
603
|
# Sets the debtor EAN of an order.
|
604
604
|
# Parameters: orderHandle: Handle for the order. value: The new debtor EAN of the order.
|
605
605
|
#
|
606
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
606
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
607
607
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetDebtorEan
|
608
608
|
# @return [Hash] The body content of the SOAP response.
|
609
609
|
def self.set_debtor_ean
|
610
610
|
response = invoke('Order_SetDebtorEan') do |message|
|
611
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
611
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
612
612
|
end
|
613
613
|
end
|
614
614
|
|
615
615
|
# Gets a handle for the project related to the order.
|
616
616
|
# Parameters: orderHandle: Handle for the order.
|
617
617
|
#
|
618
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
618
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
619
619
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetProject
|
620
620
|
# @return [Hash] The body content of the SOAP response.
|
621
621
|
def self.get_project
|
622
622
|
response = invoke('Order_GetProject') do |message|
|
623
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
623
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
624
624
|
end
|
625
625
|
end
|
626
626
|
|
627
627
|
# Sets a handle for the project related to the order.
|
628
628
|
# Parameters: orderHandle: Handle for the order. projectHandle: handle for the project.
|
629
629
|
#
|
630
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
630
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
631
631
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetProject
|
632
632
|
# @return [Hash] The body content of the SOAP response.
|
633
633
|
def self.set_project
|
634
634
|
response = invoke('Order_SetProject') do |message|
|
635
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
635
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
636
636
|
end
|
637
637
|
end
|
638
638
|
|
639
639
|
# Gets the public entry numer of an order.
|
640
640
|
# Parameters: orderHandle: Handle for the order.
|
641
641
|
#
|
642
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
642
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
643
643
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetPublicEntryNumber
|
644
644
|
# @return [Hash] The body content of the SOAP response.
|
645
645
|
def self.get_public_entry_number
|
646
646
|
response = invoke('Order_GetPublicEntryNumber') do |message|
|
647
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
647
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
648
648
|
end
|
649
649
|
end
|
650
650
|
|
651
651
|
# Sets the public entry number of an order.
|
652
652
|
# Parameters: orderHandle: Handle for the order. value: The new public entry number of the order.
|
653
653
|
#
|
654
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
654
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
655
655
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetPublicEntryNumber
|
656
656
|
# @return [Hash] The body content of the SOAP response.
|
657
657
|
def self.set_public_entry_number
|
658
658
|
response = invoke('Order_SetPublicEntryNumber') do |message|
|
659
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
659
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
660
660
|
end
|
661
661
|
end
|
662
662
|
|
663
663
|
# Gets a handle for the attention of an order.
|
664
664
|
# Parameters: orderHandle: Handle for the order.
|
665
665
|
#
|
666
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
666
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
667
667
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetAttention
|
668
668
|
# @return [Hash] The body content of the SOAP response.
|
669
669
|
def self.get_attention
|
670
670
|
response = invoke('Order_GetAttention') do |message|
|
671
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
671
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
672
672
|
end
|
673
673
|
end
|
674
674
|
|
675
675
|
# Sets the attention of an order.
|
676
676
|
# Parameters: orderHandle: Handle for the order. valueHandle: Handle for new attention of the order.
|
677
677
|
#
|
678
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
678
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
679
679
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetAttention
|
680
680
|
# @return [Hash] The body content of the SOAP response.
|
681
681
|
def self.set_attention
|
682
682
|
response = invoke('Order_SetAttention') do |message|
|
683
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
683
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
684
684
|
end
|
685
685
|
end
|
686
686
|
|
687
687
|
# Gets a handle for the attention of the debtor of an order.
|
688
688
|
# Parameters: orderHandle: Handle for the order.
|
689
689
|
#
|
690
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
690
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
691
691
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetYourReference
|
692
692
|
# @return [Hash] The body content of the SOAP response.
|
693
693
|
def self.get_your_reference
|
694
694
|
response = invoke('Order_GetYourReference') do |message|
|
695
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
695
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
696
696
|
end
|
697
697
|
end
|
698
698
|
|
699
699
|
# Sets the attention for the debtor of an order.
|
700
700
|
# Parameters: orderHandle: Handle for the order. valueHandle: Handle for the new reference for the debtor.
|
701
701
|
#
|
702
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
702
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
703
703
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetYourReference
|
704
704
|
# @return [Hash] The body content of the SOAP response.
|
705
705
|
def self.set_your_reference
|
706
706
|
response = invoke('Order_SetYourReference') do |message|
|
707
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
707
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
708
708
|
end
|
709
709
|
end
|
710
710
|
|
711
711
|
# Gets a handle for the primary reference of the creditor of an order.
|
712
712
|
# Parameters: orderHandle: Handle for the order.
|
713
713
|
#
|
714
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
714
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
715
715
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetOurReference
|
716
716
|
# @return [Hash] The body content of the SOAP response.
|
717
717
|
def self.get_our_reference
|
718
718
|
response = invoke('Order_GetOurReference') do |message|
|
719
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
719
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
720
720
|
end
|
721
721
|
end
|
722
722
|
|
723
723
|
# Sets the primary reference of the creditor of an order.
|
724
724
|
# Parameters: orderHandle: Handle for the order. valueHandle: Handle for new primary reference of the creditor of the order.
|
725
725
|
#
|
726
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
726
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
727
727
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetOurReference
|
728
728
|
# @return [Hash] The body content of the SOAP response.
|
729
729
|
def self.set_our_reference
|
730
730
|
response = invoke('Order_SetOurReference') do |message|
|
731
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
731
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
732
732
|
end
|
733
733
|
end
|
734
734
|
|
735
735
|
# Gets a handle for the secondary reference of the creditor of an order.
|
736
736
|
# Parameters: orderHandle: Handle for the order.
|
737
737
|
#
|
738
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
738
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
739
739
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetOurReference2
|
740
740
|
# @return [Hash] The body content of the SOAP response.
|
741
741
|
def self.get_our_reference2
|
742
742
|
response = invoke('Order_GetOurReference2') do |message|
|
743
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
743
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
744
744
|
end
|
745
745
|
end
|
746
746
|
|
747
747
|
# Sets the secondary reference of the creditor of an order.
|
748
748
|
# Parameters: orderHandle: Handle for the order. valueHandle: Handle for new secondary reference of the creditor of the order.
|
749
749
|
#
|
750
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
750
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
751
751
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetOurReference2
|
752
752
|
# @return [Hash] The body content of the SOAP response.
|
753
753
|
def self.set_our_reference2
|
754
754
|
response = invoke('Order_SetOurReference2') do |message|
|
755
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
755
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
756
756
|
end
|
757
757
|
end
|
758
758
|
|
759
759
|
# Gets the date of an order.
|
760
760
|
# Parameters: orderHandle: Handle for the order.
|
761
761
|
#
|
762
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
762
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
763
763
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetDate
|
764
764
|
# @return [Hash] The body content of the SOAP response.
|
765
765
|
def self.get_date
|
766
766
|
response = invoke('Order_GetDate') do |message|
|
767
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
767
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
768
768
|
end
|
769
769
|
end
|
770
770
|
|
771
771
|
# Sets the date of an order. The due date is calculated accordingly as specified by the term of payment.
|
772
772
|
# Parameters: orderHandle: Handle for the order. value: The new date of the order.
|
773
773
|
#
|
774
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
774
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
775
775
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetDate
|
776
776
|
# @return [Hash] The body content of the SOAP response.
|
777
777
|
def self.set_date
|
778
778
|
response = invoke('Order_SetDate') do |message|
|
779
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
779
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
780
780
|
end
|
781
781
|
end
|
782
782
|
|
783
783
|
# Gets a handle for the term of payment of an order.
|
784
784
|
# Parameters: orderHandle: Handle for the order.
|
785
785
|
#
|
786
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
786
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
787
787
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetTermOfPayment
|
788
788
|
# @return [Hash] The body content of the SOAP response.
|
789
789
|
def self.get_term_of_payment
|
790
790
|
response = invoke('Order_GetTermOfPayment') do |message|
|
791
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
791
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
792
792
|
end
|
793
793
|
end
|
794
794
|
|
795
795
|
# Sets the term of payment of an order. The due date is calculated accordingly.
|
796
796
|
# Parameters: orderHandle: Handle for the order. valueHandle: Handle for new term of payment of the order.
|
797
797
|
#
|
798
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
798
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
799
799
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetTermOfPayment
|
800
800
|
# @return [Hash] The body content of the SOAP response.
|
801
801
|
def self.set_term_of_payment
|
802
802
|
response = invoke('Order_SetTermOfPayment') do |message|
|
803
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
803
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
804
804
|
end
|
805
805
|
end
|
806
806
|
|
807
807
|
# Gets the due date of an order.
|
808
808
|
# Parameters: orderHandle: Handle for the order.
|
809
809
|
#
|
810
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
810
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
811
811
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetDueDate
|
812
812
|
# @return [Hash] The body content of the SOAP response.
|
813
813
|
def self.get_due_date
|
814
814
|
response = invoke('Order_GetDueDate') do |message|
|
815
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
815
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
816
816
|
end
|
817
817
|
end
|
818
818
|
|
819
819
|
# Sets the due date of an order. It is only allowed to set the due date to an actual date when the type of TermOfPayment is set to DueDate.
|
820
820
|
# Parameters: orderHandle: Handle for the order. value: The new due date of the order.
|
821
821
|
#
|
822
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
822
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
823
823
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetDueDate
|
824
824
|
# @return [Hash] The body content of the SOAP response.
|
825
825
|
def self.set_due_date
|
826
826
|
response = invoke('Order_SetDueDate') do |message|
|
827
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
827
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
828
828
|
end
|
829
829
|
end
|
830
830
|
|
831
831
|
# Gets a handle for the currency of an order.
|
832
832
|
# Parameters: orderHandle: Handle for the order.
|
833
833
|
#
|
834
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
834
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
835
835
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetCurrency
|
836
836
|
# @return [Hash] The body content of the SOAP response.
|
837
837
|
def self.get_currency
|
838
838
|
response = invoke('Order_GetCurrency') do |message|
|
839
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
839
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
840
840
|
end
|
841
841
|
end
|
842
842
|
|
843
843
|
# Sets the currency of an order. The value may not be null.
|
844
844
|
# Parameters: orderHandle: Handle for the order. valueHandle: Handle for new currency of the order.
|
845
845
|
#
|
846
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
846
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
847
847
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetCurrency
|
848
848
|
# @return [Hash] The body content of the SOAP response.
|
849
849
|
def self.set_currency
|
850
850
|
response = invoke('Order_SetCurrency') do |message|
|
851
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
851
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
852
852
|
end
|
853
853
|
end
|
854
854
|
|
855
855
|
# Gets the exchange rate of an order.
|
856
856
|
# Parameters: orderHandle: Handle for the order.
|
857
857
|
#
|
858
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
858
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
859
859
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetExchangeRate
|
860
860
|
# @return [Hash] The body content of the SOAP response.
|
861
861
|
def self.get_exchange_rate
|
862
862
|
response = invoke('Order_GetExchangeRate') do |message|
|
863
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
863
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
864
864
|
end
|
865
865
|
end
|
866
866
|
|
867
867
|
# Sets the exchange rate of an order. The values on the lines are not updated when setting this property.
|
868
868
|
# Parameters: orderHandle: Handle for the order. value: The new exchange of the order.
|
869
869
|
#
|
870
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
870
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
871
871
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetExchangeRate
|
872
872
|
# @return [Hash] The body content of the SOAP response.
|
873
873
|
def self.set_exchange_rate
|
874
874
|
response = invoke('Order_SetExchangeRate') do |message|
|
875
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
875
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
876
876
|
end
|
877
877
|
end
|
878
878
|
|
879
879
|
# Gets whether the order has VAT included.
|
880
880
|
# Parameters: orderHandle: Handle for the order.
|
881
881
|
#
|
882
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
882
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
883
883
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetIsVatIncluded
|
884
884
|
# @return [Hash] The body content of the SOAP response.
|
885
885
|
def self.get_is_vat_included
|
886
886
|
response = invoke('Order_GetIsVatIncluded') do |message|
|
887
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
887
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
888
888
|
end
|
889
889
|
end
|
890
890
|
|
891
891
|
# Sets whether the order has VAT included.
|
892
892
|
# Parameters: orderHandle: Handle for the order. value: The new value indicating whether the order should include VAT.
|
893
893
|
#
|
894
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
894
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
895
895
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetIsVatIncluded
|
896
896
|
# @return [Hash] The body content of the SOAP response.
|
897
897
|
def self.set_is_vat_included
|
898
898
|
response = invoke('Order_SetIsVatIncluded') do |message|
|
899
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
899
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
900
900
|
end
|
901
901
|
end
|
902
902
|
|
903
903
|
# Gets the current VAT zone of the Order.
|
904
904
|
# Parameters: orderHandle: Handle for the order.
|
905
905
|
#
|
906
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
906
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
907
907
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetVatZone
|
908
908
|
# @return [Hash] The body content of the SOAP response.
|
909
909
|
def self.get_vat_zone
|
910
910
|
response = invoke('Order_GetVatZone') do |message|
|
911
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
911
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
912
912
|
end
|
913
913
|
end
|
914
914
|
|
915
915
|
# Sets the VAT zone of the Order.
|
916
916
|
# Parameters: orderHandle: Handle for the order. valueHandle: Handle to the new VAT zone of the Order.
|
917
917
|
#
|
918
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
918
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
919
919
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetVatZone
|
920
920
|
# @return [Hash] The body content of the SOAP response.
|
921
921
|
def self.set_vat_zone
|
922
922
|
response = invoke('Order_SetVatZone') do |message|
|
923
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
923
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
924
924
|
end
|
925
925
|
end
|
926
926
|
|
927
927
|
# Gets a handle for the layout of an order.
|
928
928
|
# Parameters: orderHandle: Handle for the order.
|
929
929
|
#
|
930
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
930
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
931
931
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetLayout
|
932
932
|
# @return [Hash] The body content of the SOAP response.
|
933
933
|
def self.get_layout
|
934
934
|
response = invoke('Order_GetLayout') do |message|
|
935
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
935
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
936
936
|
end
|
937
937
|
end
|
938
938
|
|
939
939
|
# Sets the layout of an order.
|
940
940
|
# Parameters: orderHandle: Handle for the order. valueHandle: Handle for new layout of the order.
|
941
941
|
#
|
942
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
942
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
943
943
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetLayout
|
944
944
|
# @return [Hash] The body content of the SOAP response.
|
945
945
|
def self.set_layout
|
946
946
|
response = invoke('Order_SetLayout') do |message|
|
947
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
947
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
948
948
|
end
|
949
949
|
end
|
950
950
|
|
951
951
|
# Gets a handle for the delivery location of an order.
|
952
952
|
# Parameters: orderHandle: Handle for the order.
|
953
953
|
#
|
954
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
954
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
955
955
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetDeliveryLocation
|
956
956
|
# @return [Hash] The body content of the SOAP response.
|
957
957
|
def self.get_delivery_location
|
958
958
|
response = invoke('Order_GetDeliveryLocation') do |message|
|
959
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
959
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
960
960
|
end
|
961
961
|
end
|
962
962
|
|
963
963
|
# Sets the delivery location of an order.
|
964
964
|
# Parameters: orderHandle: Handle for the order. valueHandle: Handle for new delivery location of the order.
|
965
965
|
#
|
966
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
966
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
967
967
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetDeliveryLocation
|
968
968
|
# @return [Hash] The body content of the SOAP response.
|
969
969
|
def self.set_delivery_location
|
970
970
|
response = invoke('Order_SetDeliveryLocation') do |message|
|
971
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
971
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
972
972
|
end
|
973
973
|
end
|
974
974
|
|
975
975
|
# Gets the delivery address of an order.
|
976
976
|
# Parameters: orderHandle: Handle for the order.
|
977
977
|
#
|
978
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
978
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
979
979
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetDeliveryAddress
|
980
980
|
# @return [Hash] The body content of the SOAP response.
|
981
981
|
def self.get_delivery_address
|
982
982
|
response = invoke('Order_GetDeliveryAddress') do |message|
|
983
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
983
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
984
984
|
end
|
985
985
|
end
|
986
986
|
|
987
987
|
# Sets the delivery address of an order.
|
988
988
|
# Parameters: orderHandle: Handle for the order. value: The new delivery address of the order.
|
989
989
|
#
|
990
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
990
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
991
991
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetDeliveryAddress
|
992
992
|
# @return [Hash] The body content of the SOAP response.
|
993
993
|
def self.set_delivery_address
|
994
994
|
response = invoke('Order_SetDeliveryAddress') do |message|
|
995
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
995
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
996
996
|
end
|
997
997
|
end
|
998
998
|
|
999
999
|
# Gets the delivery postal code of an order.
|
1000
1000
|
# Parameters: orderHandle: Handle for the order.
|
1001
1001
|
#
|
1002
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1002
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1003
1003
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetDeliveryPostalCode
|
1004
1004
|
# @return [Hash] The body content of the SOAP response.
|
1005
1005
|
def self.get_delivery_postal_code
|
1006
1006
|
response = invoke('Order_GetDeliveryPostalCode') do |message|
|
1007
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1007
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1008
1008
|
end
|
1009
1009
|
end
|
1010
1010
|
|
1011
1011
|
# Sets the delivery postal code of an order.
|
1012
1012
|
# Parameters: orderHandle: Handle for the order. value: The new delivery postal code of the order.
|
1013
1013
|
#
|
1014
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1014
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1015
1015
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetDeliveryPostalCode
|
1016
1016
|
# @return [Hash] The body content of the SOAP response.
|
1017
1017
|
def self.set_delivery_postal_code
|
1018
1018
|
response = invoke('Order_SetDeliveryPostalCode') do |message|
|
1019
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1019
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1020
1020
|
end
|
1021
1021
|
end
|
1022
1022
|
|
1023
1023
|
# Gets the delivery city of an order.
|
1024
1024
|
# Parameters: orderHandle: Handle for the order.
|
1025
1025
|
#
|
1026
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1026
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1027
1027
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetDeliveryCity
|
1028
1028
|
# @return [Hash] The body content of the SOAP response.
|
1029
1029
|
def self.get_delivery_city
|
1030
1030
|
response = invoke('Order_GetDeliveryCity') do |message|
|
1031
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1031
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1032
1032
|
end
|
1033
1033
|
end
|
1034
1034
|
|
1035
1035
|
# Sets the delivery city of an order.
|
1036
1036
|
# Parameters: orderHandle: Handle for the order. value: The new delivery city of the order.
|
1037
1037
|
#
|
1038
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1038
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1039
1039
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetDeliveryCity
|
1040
1040
|
# @return [Hash] The body content of the SOAP response.
|
1041
1041
|
def self.set_delivery_city
|
1042
1042
|
response = invoke('Order_SetDeliveryCity') do |message|
|
1043
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1043
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1044
1044
|
end
|
1045
1045
|
end
|
1046
1046
|
|
1047
1047
|
# Gets the delivery country of an order.
|
1048
1048
|
# Parameters: orderHandle: Handle for the order.
|
1049
1049
|
#
|
1050
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1050
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1051
1051
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetDeliveryCountry
|
1052
1052
|
# @return [Hash] The body content of the SOAP response.
|
1053
1053
|
def self.get_delivery_country
|
1054
1054
|
response = invoke('Order_GetDeliveryCountry') do |message|
|
1055
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1055
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1056
1056
|
end
|
1057
1057
|
end
|
1058
1058
|
|
1059
1059
|
# Sets the delivery country of an order.
|
1060
1060
|
# Parameters: orderHandle: Handle for the order. value: The new delivery country of the order.
|
1061
1061
|
#
|
1062
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1062
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1063
1063
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetDeliveryCountry
|
1064
1064
|
# @return [Hash] The body content of the SOAP response.
|
1065
1065
|
def self.set_delivery_country
|
1066
1066
|
response = invoke('Order_SetDeliveryCountry') do |message|
|
1067
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1067
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1068
1068
|
end
|
1069
1069
|
end
|
1070
1070
|
|
1071
1071
|
# Gets the terms of delivery of an order.
|
1072
1072
|
# Parameters: orderHandle: Handle for the order.
|
1073
1073
|
#
|
1074
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1074
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1075
1075
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetTermsOfDelivery
|
1076
1076
|
# @return [Hash] The body content of the SOAP response.
|
1077
1077
|
def self.get_terms_of_delivery
|
1078
1078
|
response = invoke('Order_GetTermsOfDelivery') do |message|
|
1079
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1079
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1080
1080
|
end
|
1081
1081
|
end
|
1082
1082
|
|
1083
1083
|
# Sets the terms of delivery of an order.
|
1084
1084
|
# Parameters: orderHandle: Handle for the order. value: The new terms of delivery of the order.
|
1085
1085
|
#
|
1086
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1086
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1087
1087
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetTermsOfDelivery
|
1088
1088
|
# @return [Hash] The body content of the SOAP response.
|
1089
1089
|
def self.set_terms_of_delivery
|
1090
1090
|
response = invoke('Order_SetTermsOfDelivery') do |message|
|
1091
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1091
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1092
1092
|
end
|
1093
1093
|
end
|
1094
1094
|
|
1095
1095
|
# Gets the delivery date of an order.
|
1096
1096
|
# Parameters: orderHandle: Handle for the order.
|
1097
1097
|
#
|
1098
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1098
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1099
1099
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetDeliveryDate
|
1100
1100
|
# @return [Hash] The body content of the SOAP response.
|
1101
1101
|
def self.get_delivery_date
|
1102
1102
|
response = invoke('Order_GetDeliveryDate') do |message|
|
1103
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1103
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1104
1104
|
end
|
1105
1105
|
end
|
1106
1106
|
|
1107
1107
|
# Sets the delivery date of an order.
|
1108
1108
|
# Parameters: orderHandle: Handle for the order. value: The new delivery date of the order.
|
1109
1109
|
#
|
1110
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1110
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1111
1111
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetDeliveryDate
|
1112
1112
|
# @return [Hash] The body content of the SOAP response.
|
1113
1113
|
def self.set_delivery_date
|
1114
1114
|
response = invoke('Order_SetDeliveryDate') do |message|
|
1115
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1115
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1116
1116
|
end
|
1117
1117
|
end
|
1118
1118
|
|
1119
1119
|
# Gets the heading of an order.
|
1120
1120
|
# Parameters: orderHandle: Handle for the order.
|
1121
1121
|
#
|
1122
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1122
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1123
1123
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetHeading
|
1124
1124
|
# @return [Hash] The body content of the SOAP response.
|
1125
1125
|
def self.get_heading
|
1126
1126
|
response = invoke('Order_GetHeading') do |message|
|
1127
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1127
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1128
1128
|
end
|
1129
1129
|
end
|
1130
1130
|
|
1131
1131
|
# Sets the heading of an order.
|
1132
1132
|
# Parameters: orderHandle: Handle for the order. value: The new heading of the order.
|
1133
1133
|
#
|
1134
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1134
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1135
1135
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetHeading
|
1136
1136
|
# @return [Hash] The body content of the SOAP response.
|
1137
1137
|
def self.set_heading
|
1138
1138
|
response = invoke('Order_SetHeading') do |message|
|
1139
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1139
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1140
1140
|
end
|
1141
1141
|
end
|
1142
1142
|
|
1143
1143
|
# Gets the primary line of text of an order.
|
1144
1144
|
# Parameters: orderHandle: Handle for the order.
|
1145
1145
|
#
|
1146
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1146
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1147
1147
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_GetTextLine1
|
1148
1148
|
# @return [Hash] The body content of the SOAP response.
|
1149
1149
|
def self.get_text_line1
|
1150
1150
|
response = invoke('Order_GetTextLine1') do |message|
|
1151
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1151
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1152
1152
|
end
|
1153
1153
|
end
|
1154
1154
|
|
1155
1155
|
# Sets the primary line of text of an order.
|
1156
1156
|
# Parameters: orderHandle: Handle for the order. value: The new primary line of text of the order.
|
1157
1157
|
#
|
1158
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1158
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1159
1159
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Order_SetTextLine1
|
1160
1160
|
# @return [Hash] The body content of the SOAP response.
|
1161
1161
|
def self.set_text_line1
|
1162
1162
|
response = invoke('Order_SetTextLine1') do |message|
|
1163
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
1163
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
1164
1164
|
end
|
1165
1165
|
end
|
1166
1166
|
|