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