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,1145 @@
|
|
1
|
+
module Ruconomic
|
2
|
+
module API
|
3
|
+
module Quotation
|
4
|
+
extend Ruconomic::WebService
|
5
|
+
|
6
|
+
# Gets the delivery address of an quotation.
|
7
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetDeliveryAddress
|
11
|
+
# @return [Hash] The body content of the SOAP response.
|
12
|
+
def self.get_delivery_address
|
13
|
+
response = invoke('Quotation_GetDeliveryAddress') 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 delivery address of an quotation.
|
19
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new delivery address of the quotation.
|
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=Quotation_SetDeliveryAddress
|
23
|
+
# @return [Hash] The body content of the SOAP response.
|
24
|
+
def self.set_delivery_address
|
25
|
+
response = invoke('Quotation_SetDeliveryAddress') 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 delivery postal code of an quotation.
|
31
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetDeliveryPostalCode
|
35
|
+
# @return [Hash] The body content of the SOAP response.
|
36
|
+
def self.get_delivery_postal_code
|
37
|
+
response = invoke('Quotation_GetDeliveryPostalCode') 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 delivery postal code of an quotation.
|
43
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new delivery postal code of the quotation.
|
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=Quotation_SetDeliveryPostalCode
|
47
|
+
# @return [Hash] The body content of the SOAP response.
|
48
|
+
def self.set_delivery_postal_code
|
49
|
+
response = invoke('Quotation_SetDeliveryPostalCode') 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 the delivery city of an quotation.
|
55
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetDeliveryCity
|
59
|
+
# @return [Hash] The body content of the SOAP response.
|
60
|
+
def self.get_delivery_city
|
61
|
+
response = invoke('Quotation_GetDeliveryCity') 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
|
+
# Sets the delivery city of an quotation.
|
67
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new delivery city of the quotation.
|
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=Quotation_SetDeliveryCity
|
71
|
+
# @return [Hash] The body content of the SOAP response.
|
72
|
+
def self.set_delivery_city
|
73
|
+
response = invoke('Quotation_SetDeliveryCity') 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 delivery country of an quotation.
|
79
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetDeliveryCountry
|
83
|
+
# @return [Hash] The body content of the SOAP response.
|
84
|
+
def self.get_delivery_country
|
85
|
+
response = invoke('Quotation_GetDeliveryCountry') 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
|
+
# Sets the delivery country of an quotation.
|
91
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new delivery country of the quotation.
|
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=Quotation_SetDeliveryCountry
|
95
|
+
# @return [Hash] The body content of the SOAP response.
|
96
|
+
def self.set_delivery_country
|
97
|
+
response = invoke('Quotation_SetDeliveryCountry') 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 terms of delivery of an quotation.
|
103
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetTermsOfDelivery
|
107
|
+
# @return [Hash] The body content of the SOAP response.
|
108
|
+
def self.get_terms_of_delivery
|
109
|
+
response = invoke('Quotation_GetTermsOfDelivery') 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
|
+
# Sets the terms of delivery of an quotation.
|
115
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new terms of delivery of the quotation.
|
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=Quotation_SetTermsOfDelivery
|
119
|
+
# @return [Hash] The body content of the SOAP response.
|
120
|
+
def self.set_terms_of_delivery
|
121
|
+
response = invoke('Quotation_SetTermsOfDelivery') 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 delivery date of an quotation.
|
127
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetDeliveryDate
|
131
|
+
# @return [Hash] The body content of the SOAP response.
|
132
|
+
def self.get_delivery_date
|
133
|
+
response = invoke('Quotation_GetDeliveryDate') 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
|
+
# Sets the delivery date of an quotation.
|
139
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new delivery date of the quotation.
|
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=Quotation_SetDeliveryDate
|
143
|
+
# @return [Hash] The body content of the SOAP response.
|
144
|
+
def self.set_delivery_date
|
145
|
+
response = invoke('Quotation_SetDeliveryDate') 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 heading of an quotation.
|
151
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetHeading
|
155
|
+
# @return [Hash] The body content of the SOAP response.
|
156
|
+
def self.get_heading
|
157
|
+
response = invoke('Quotation_GetHeading') 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 heading of an quotation.
|
163
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new heading of the quotation.
|
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=Quotation_SetHeading
|
167
|
+
# @return [Hash] The body content of the SOAP response.
|
168
|
+
def self.set_heading
|
169
|
+
response = invoke('Quotation_SetHeading') 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 primary line of text of an quotation.
|
175
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetTextLine1
|
179
|
+
# @return [Hash] The body content of the SOAP response.
|
180
|
+
def self.get_text_line1
|
181
|
+
response = invoke('Quotation_GetTextLine1') 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 primary line of text of an quotation.
|
187
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new primary line of text of the quotation.
|
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=Quotation_SetTextLine1
|
191
|
+
# @return [Hash] The body content of the SOAP response.
|
192
|
+
def self.set_text_line1
|
193
|
+
response = invoke('Quotation_SetTextLine1') 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
|
+
# Gets the secondary line of text of an quotation.
|
199
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetTextLine2
|
203
|
+
# @return [Hash] The body content of the SOAP response.
|
204
|
+
def self.get_text_line2
|
205
|
+
response = invoke('Quotation_GetTextLine2') 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
|
+
# Sets the secondary line of text of an quotation.
|
211
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new secondary line of text of the quotation.
|
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=Quotation_SetTextLine2
|
215
|
+
# @return [Hash] The body content of the SOAP response.
|
216
|
+
def self.set_text_line2
|
217
|
+
response = invoke('Quotation_SetTextLine2') 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
|
+
# Gets the other reference of an quotation.
|
223
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetOtherReference
|
227
|
+
# @return [Hash] The body content of the SOAP response.
|
228
|
+
def self.get_other_reference
|
229
|
+
response = invoke('Quotation_GetOtherReference') 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
|
+
# Sets the other reference of an quotation.
|
235
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new other reference of the quotation.
|
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=Quotation_SetOtherReference
|
239
|
+
# @return [Hash] The body content of the SOAP response.
|
240
|
+
def self.set_other_reference
|
241
|
+
response = invoke('Quotation_SetOtherReference') 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
|
+
# Gets thether an quotation is archived.
|
247
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetIsArchived
|
251
|
+
# @return [Hash] The body content of the SOAP response.
|
252
|
+
def self.get_is_archived
|
253
|
+
response = invoke('Quotation_GetIsArchived') 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
|
+
# Gets whether an quotation is sent.
|
259
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetIsSent
|
263
|
+
# @return [Hash] The body content of the SOAP response.
|
264
|
+
def self.get_is_sent
|
265
|
+
response = invoke('Quotation_GetIsSent') 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
|
+
# Gets the total amount for all the lines without VAT of an quotation (in the currency of the quotation).
|
271
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetNetAmount
|
275
|
+
# @return [Hash] The body content of the SOAP response.
|
276
|
+
def self.get_net_amount
|
277
|
+
response = invoke('Quotation_GetNetAmount') 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 the total VAT amount for all the lines of an quotation (in the currency of the quotation).
|
283
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetVatAmount
|
287
|
+
# @return [Hash] The body content of the SOAP response.
|
288
|
+
def self.get_vat_amount
|
289
|
+
response = invoke('Quotation_GetVatAmount') 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
|
+
# Gets the total gross amount for all the lines of an quotation (in the currency of the quotation).
|
295
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
296
|
+
#
|
297
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
298
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_GetGrossAmount
|
299
|
+
# @return [Hash] The body content of the SOAP response.
|
300
|
+
def self.get_gross_amount
|
301
|
+
response = invoke('Quotation_GetGrossAmount') do |message|
|
302
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
303
|
+
end
|
304
|
+
end
|
305
|
+
|
306
|
+
# Gets the margin of an quotation (in the currency of the quotation).
|
307
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
308
|
+
#
|
309
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
310
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_GetMargin
|
311
|
+
# @return [Hash] The body content of the SOAP response.
|
312
|
+
def self.get_margin
|
313
|
+
response = invoke('Quotation_GetMargin') do |message|
|
314
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
315
|
+
end
|
316
|
+
end
|
317
|
+
|
318
|
+
# Gets the margin of an quotation as percent.
|
319
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
320
|
+
#
|
321
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
322
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_GetMarginAsPercent
|
323
|
+
# @return [Hash] The body content of the SOAP response.
|
324
|
+
def self.get_margin_as_percent
|
325
|
+
response = invoke('Quotation_GetMarginAsPercent') do |message|
|
326
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
327
|
+
end
|
328
|
+
end
|
329
|
+
|
330
|
+
# Gets the rounding amount for all lines of the quotation (in the currency of the quotation).
|
331
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
332
|
+
#
|
333
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
334
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_GetRoundingAmount
|
335
|
+
# @return [Hash] The body content of the SOAP response.
|
336
|
+
def self.get_rounding_amount
|
337
|
+
response = invoke('Quotation_GetRoundingAmount') do |message|
|
338
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
339
|
+
end
|
340
|
+
end
|
341
|
+
|
342
|
+
# Gets the DebtorCounty of an quotation. (UK only)
|
343
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
344
|
+
#
|
345
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
346
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_GetDebtorCounty
|
347
|
+
# @return [Hash] The body content of the SOAP response.
|
348
|
+
def self.get_debtor_county
|
349
|
+
response = invoke('Quotation_GetDebtorCounty') do |message|
|
350
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
351
|
+
end
|
352
|
+
end
|
353
|
+
|
354
|
+
# Sets the DebtorCounty of an quotation. (UK only)
|
355
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new DebtorCounty of the quotation.
|
356
|
+
#
|
357
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
358
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_SetDebtorCounty
|
359
|
+
# @return [Hash] The body content of the SOAP response.
|
360
|
+
def self.set_debtor_county
|
361
|
+
response = invoke('Quotation_SetDebtorCounty') do |message|
|
362
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
363
|
+
end
|
364
|
+
end
|
365
|
+
|
366
|
+
# Gets the DeliveryCounty of an quotation. (UK only)
|
367
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
368
|
+
#
|
369
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
370
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_GetDeliveryCounty
|
371
|
+
# @return [Hash] The body content of the SOAP response.
|
372
|
+
def self.get_delivery_county
|
373
|
+
response = invoke('Quotation_GetDeliveryCounty') do |message|
|
374
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
375
|
+
end
|
376
|
+
end
|
377
|
+
|
378
|
+
# Sets the DeliveryCounty of an quotation. (UK only)
|
379
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new DeliveryCounty of the quotation.
|
380
|
+
#
|
381
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
382
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_SetDeliveryCounty
|
383
|
+
# @return [Hash] The body content of the SOAP response.
|
384
|
+
def self.set_delivery_county
|
385
|
+
response = invoke('Quotation_SetDeliveryCounty') do |message|
|
386
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
387
|
+
end
|
388
|
+
end
|
389
|
+
|
390
|
+
# Creates a new quotation from a data object.
|
391
|
+
# Parameters: data: The data object that specifies the properties of the new quotation.
|
392
|
+
#
|
393
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
394
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_CreateFromData
|
395
|
+
# @return [Hash] The body content of the SOAP response.
|
396
|
+
def self.create_from_data
|
397
|
+
response = invoke('Quotation_CreateFromData') do |message|
|
398
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
399
|
+
end
|
400
|
+
end
|
401
|
+
|
402
|
+
# Creates new quotations from data objects.
|
403
|
+
# Parameters: dataArray: The array of data objects that specifies the properties of the new quotations.
|
404
|
+
#
|
405
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
406
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_CreateFromDataArray
|
407
|
+
# @return [Hash] The body content of the SOAP response.
|
408
|
+
def self.create_from_data_array
|
409
|
+
response = invoke('Quotation_CreateFromDataArray') do |message|
|
410
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
411
|
+
end
|
412
|
+
end
|
413
|
+
|
414
|
+
# Update quotations from data objects.
|
415
|
+
# Parameters: dataArray: The array of data objects.
|
416
|
+
#
|
417
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
418
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_UpdateFromDataArray
|
419
|
+
# @return [Hash] The body content of the SOAP response.
|
420
|
+
def self.update_from_data_array
|
421
|
+
response = invoke('Quotation_UpdateFromDataArray') do |message|
|
422
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
423
|
+
end
|
424
|
+
end
|
425
|
+
|
426
|
+
# Updates a quotation from a data object.
|
427
|
+
# Parameters: data: The data object.
|
428
|
+
#
|
429
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
430
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_UpdateFromData
|
431
|
+
# @return [Hash] The body content of the SOAP response.
|
432
|
+
def self.update_from_data
|
433
|
+
response = invoke('Quotation_UpdateFromData') do |message|
|
434
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
435
|
+
end
|
436
|
+
end
|
437
|
+
|
438
|
+
# Returns a quotation data object for a given quotation.
|
439
|
+
# Parameters: entityHandle: A handle for the quotation.
|
440
|
+
#
|
441
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
442
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_GetData
|
443
|
+
# @return [Hash] The body content of the SOAP response.
|
444
|
+
def self.get_data
|
445
|
+
response = invoke('Quotation_GetData') do |message|
|
446
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
447
|
+
end
|
448
|
+
end
|
449
|
+
|
450
|
+
# Returns quotation data objects for a given set of quotation handles.
|
451
|
+
# Parameters: entityHandles: An array of the quotation handles.
|
452
|
+
#
|
453
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
454
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_GetDataArray
|
455
|
+
# @return [Hash] The body content of the SOAP response.
|
456
|
+
def self.get_data_array
|
457
|
+
response = invoke('Quotation_GetDataArray') do |message|
|
458
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
459
|
+
end
|
460
|
+
end
|
461
|
+
|
462
|
+
# Creates a new quotation. The debtor properties of the new quotation are set to those of the debtor.
|
463
|
+
# Parameters: Handle for the debtr of the new quotation.
|
464
|
+
#
|
465
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
466
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_Create
|
467
|
+
# @return [Hash] The body content of the SOAP response.
|
468
|
+
def self.create
|
469
|
+
response = invoke('Quotation_Create') do |message|
|
470
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
471
|
+
end
|
472
|
+
end
|
473
|
+
|
474
|
+
# Gets a quotation as a PDF-file.
|
475
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
476
|
+
#
|
477
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
478
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_GetPdf
|
479
|
+
# @return [Hash] The body content of the SOAP response.
|
480
|
+
def self.get_pdf
|
481
|
+
response = invoke('Quotation_GetPdf') do |message|
|
482
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
483
|
+
end
|
484
|
+
end
|
485
|
+
|
486
|
+
# Returns handles for all quotations.
|
487
|
+
#
|
488
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
489
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_GetAll
|
490
|
+
# @return [Hash] The body content of the SOAP response.
|
491
|
+
def self.get_all
|
492
|
+
response = invoke('Quotation_GetAll') do |message|
|
493
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
494
|
+
end
|
495
|
+
end
|
496
|
+
|
497
|
+
# Returns handles for all quotations.
|
498
|
+
#
|
499
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
500
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_GetAllCurrent
|
501
|
+
# @return [Hash] The body content of the SOAP response.
|
502
|
+
def self.get_all_current
|
503
|
+
response = invoke('Quotation_GetAllCurrent') do |message|
|
504
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
505
|
+
end
|
506
|
+
end
|
507
|
+
|
508
|
+
# Returns handles for the quotations with a given other reference.
|
509
|
+
# Parameters: otherReference: The other reference to search for.
|
510
|
+
#
|
511
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
512
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_FindByOtherReference
|
513
|
+
# @return [Hash] The body content of the SOAP response.
|
514
|
+
def self.find_by_other_reference
|
515
|
+
response = invoke('Quotation_FindByOtherReference') do |message|
|
516
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
517
|
+
end
|
518
|
+
end
|
519
|
+
|
520
|
+
# Returns a handle for the quotation with a given number.
|
521
|
+
# Parameters: number: The number to search for.
|
522
|
+
#
|
523
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
524
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_FindByNumber
|
525
|
+
# @return [Hash] The body content of the SOAP response.
|
526
|
+
def self.find_by_number
|
527
|
+
response = invoke('Quotation_FindByNumber') do |message|
|
528
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
529
|
+
end
|
530
|
+
end
|
531
|
+
|
532
|
+
# Returns an array with handles for the quotations with numbers in the given interval.
|
533
|
+
# Parameters: minNumber: The start of the interval. maxNumber: The end of the interval.
|
534
|
+
#
|
535
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
536
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_FindByNumberInterval
|
537
|
+
# @return [Hash] The body content of the SOAP response.
|
538
|
+
def self.find_by_number_interval
|
539
|
+
response = invoke('Quotation_FindByNumberInterval') do |message|
|
540
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
541
|
+
end
|
542
|
+
end
|
543
|
+
|
544
|
+
# Returns handles for quotations in a given interval of days.
|
545
|
+
# Parameters: first: First day in interval. last: Last day in interval.
|
546
|
+
#
|
547
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
548
|
+
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Quotation_FindByDateInterval
|
549
|
+
# @return [Hash] The body content of the SOAP response.
|
550
|
+
def self.find_by_date_interval
|
551
|
+
response = invoke('Quotation_FindByDateInterval') do |message|
|
552
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/ta/e-conomic#contributing"
|
553
|
+
end
|
554
|
+
end
|
555
|
+
|
556
|
+
# Return handles for all quotations from date. FromDate is based on CET.
|
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=Quotation_GetAllUpdated
|
560
|
+
# @return [Hash] The body content of the SOAP response.
|
561
|
+
def self.get_all_updated
|
562
|
+
response = invoke('Quotation_GetAllUpdated') 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 handles for lines of a quotation.
|
568
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetLines
|
572
|
+
# @return [Hash] The body content of the SOAP response.
|
573
|
+
def self.get_lines
|
574
|
+
response = invoke('Quotation_GetLines') 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
|
+
# Registers a quotation as sent.
|
580
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_RegisterAsSent
|
584
|
+
# @return [Hash] The body content of the SOAP response.
|
585
|
+
def self.register_as_sent
|
586
|
+
response = invoke('Quotation_RegisterAsSent') 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
|
+
# Cancels sent status of a quotation.
|
592
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_CancelSentStatus
|
596
|
+
# @return [Hash] The body content of the SOAP response.
|
597
|
+
def self.cancel_sent_status
|
598
|
+
response = invoke('Quotation_CancelSentStatus') 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
|
+
# Upgrades a quotation to an order.
|
604
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_UpgradeToOrder
|
608
|
+
# @return [Hash] The body content of the SOAP response.
|
609
|
+
def self.upgrade_to_order
|
610
|
+
response = invoke('Quotation_UpgradeToOrder') 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
|
+
# Deletes a quotation.
|
616
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_Delete
|
620
|
+
# @return [Hash] The body content of the SOAP response.
|
621
|
+
def self.delete
|
622
|
+
response = invoke('Quotation_Delete') 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
|
+
# Gets a handle for the debtor of the quotation.
|
628
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetDebtor
|
632
|
+
# @return [Hash] The body content of the SOAP response.
|
633
|
+
def self.get_debtor
|
634
|
+
response = invoke('Quotation_GetDebtor') 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
|
+
# Sets a handle for the debtor of the quotation.
|
640
|
+
# Parameters: quotationHandle: Handle for the quotation. valueHandle: Handle for the new debtor of the quotation.
|
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=Quotation_SetDebtor
|
644
|
+
# @return [Hash] The body content of the SOAP response.
|
645
|
+
def self.set_debtor
|
646
|
+
response = invoke('Quotation_SetDebtor') 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
|
+
# Gets the number of a quotation.
|
652
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetNumber
|
656
|
+
# @return [Hash] The body content of the SOAP response.
|
657
|
+
def self.get_number
|
658
|
+
response = invoke('Quotation_GetNumber') 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 the debtor number of an quotation.
|
664
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetDebtorName
|
668
|
+
# @return [Hash] The body content of the SOAP response.
|
669
|
+
def self.get_debtor_name
|
670
|
+
response = invoke('Quotation_GetDebtorName') 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 debtor number of an quotation.
|
676
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new debtor number of the quotation.
|
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=Quotation_SetDebtorName
|
680
|
+
# @return [Hash] The body content of the SOAP response.
|
681
|
+
def self.set_debtor_name
|
682
|
+
response = invoke('Quotation_SetDebtorName') 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 the debtor address of an quotation.
|
688
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetDebtorAddress
|
692
|
+
# @return [Hash] The body content of the SOAP response.
|
693
|
+
def self.get_debtor_address
|
694
|
+
response = invoke('Quotation_GetDebtorAddress') 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 debtor address of an quotation.
|
700
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new debtor address of the quotation.
|
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=Quotation_SetDebtorAddress
|
704
|
+
# @return [Hash] The body content of the SOAP response.
|
705
|
+
def self.set_debtor_address
|
706
|
+
response = invoke('Quotation_SetDebtorAddress') 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 the debtor postal code of an quotation.
|
712
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetDebtorPostalCode
|
716
|
+
# @return [Hash] The body content of the SOAP response.
|
717
|
+
def self.get_debtor_postal_code
|
718
|
+
response = invoke('Quotation_GetDebtorPostalCode') 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 debtor postal code of an quotation.
|
724
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new debtor postal code of the quotation.
|
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=Quotation_SetDebtorPostalCode
|
728
|
+
# @return [Hash] The body content of the SOAP response.
|
729
|
+
def self.set_debtor_postal_code
|
730
|
+
response = invoke('Quotation_SetDebtorPostalCode') 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 the debtor city of an quotation.
|
736
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetDebtorCity
|
740
|
+
# @return [Hash] The body content of the SOAP response.
|
741
|
+
def self.get_debtor_city
|
742
|
+
response = invoke('Quotation_GetDebtorCity') 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 debtor city of an quotation.
|
748
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new debtor city of the quotation.
|
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=Quotation_SetDebtorCity
|
752
|
+
# @return [Hash] The body content of the SOAP response.
|
753
|
+
def self.set_debtor_city
|
754
|
+
response = invoke('Quotation_SetDebtorCity') 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 debtor country of an quotation.
|
760
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetDebtorCountry
|
764
|
+
# @return [Hash] The body content of the SOAP response.
|
765
|
+
def self.get_debtor_country
|
766
|
+
response = invoke('Quotation_GetDebtorCountry') 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 debtor country of an quotation.
|
772
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new debtor country of the quotation.
|
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=Quotation_SetDebtorCountry
|
776
|
+
# @return [Hash] The body content of the SOAP response.
|
777
|
+
def self.set_debtor_country
|
778
|
+
response = invoke('Quotation_SetDebtorCountry') 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 the debtor EAN of an quotation.
|
784
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetDebtorEan
|
788
|
+
# @return [Hash] The body content of the SOAP response.
|
789
|
+
def self.get_debtor_ean
|
790
|
+
response = invoke('Quotation_GetDebtorEan') 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 debtor EAN of an quotation.
|
796
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new debtor EAN of the quotation.
|
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=Quotation_SetDebtorEan
|
800
|
+
# @return [Hash] The body content of the SOAP response.
|
801
|
+
def self.set_debtor_ean
|
802
|
+
response = invoke('Quotation_SetDebtorEan') 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 public entry numer of an quotation.
|
808
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetPublicEntryNumber
|
812
|
+
# @return [Hash] The body content of the SOAP response.
|
813
|
+
def self.get_public_entry_number
|
814
|
+
response = invoke('Quotation_GetPublicEntryNumber') 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 public entry number of an quotation.
|
820
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new public entry number of the quotation.
|
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=Quotation_SetPublicEntryNumber
|
824
|
+
# @return [Hash] The body content of the SOAP response.
|
825
|
+
def self.set_public_entry_number
|
826
|
+
response = invoke('Quotation_SetPublicEntryNumber') 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 attention of an quotation.
|
832
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetAttention
|
836
|
+
# @return [Hash] The body content of the SOAP response.
|
837
|
+
def self.get_attention
|
838
|
+
response = invoke('Quotation_GetAttention') 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 attention of an quotation.
|
844
|
+
# Parameters: quotationHandle: Handle for the quotation. valueHandle: Handle for new attention of the quotation.
|
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=Quotation_SetAttention
|
848
|
+
# @return [Hash] The body content of the SOAP response.
|
849
|
+
def self.set_attention
|
850
|
+
response = invoke('Quotation_SetAttention') 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 a handle for the attention of the debtor of an quotation.
|
856
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetYourReference
|
860
|
+
# @return [Hash] The body content of the SOAP response.
|
861
|
+
def self.get_your_reference
|
862
|
+
response = invoke('Quotation_GetYourReference') 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 attention for the debtor of an quotation.
|
868
|
+
# Parameters: quotationHandle: Handle for the quotation. valueHandle: Handle for the new reference for the debtor.
|
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=Quotation_SetYourReference
|
872
|
+
# @return [Hash] The body content of the SOAP response.
|
873
|
+
def self.set_your_reference
|
874
|
+
response = invoke('Quotation_SetYourReference') 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 a handle for the primary reference of the creditor of an quotation.
|
880
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetOurReference
|
884
|
+
# @return [Hash] The body content of the SOAP response.
|
885
|
+
def self.get_our_reference
|
886
|
+
response = invoke('Quotation_GetOurReference') 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 the primary reference of the creditor of an quotation.
|
892
|
+
# Parameters: quotationHandle: Handle for the quotation. valueHandle: Handle for new primary reference of the creditor of the quotation.
|
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=Quotation_SetOurReference
|
896
|
+
# @return [Hash] The body content of the SOAP response.
|
897
|
+
def self.set_our_reference
|
898
|
+
response = invoke('Quotation_SetOurReference') 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 a handle for the secondary reference of the creditor of an quotation.
|
904
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetOurReference2
|
908
|
+
# @return [Hash] The body content of the SOAP response.
|
909
|
+
def self.get_our_reference2
|
910
|
+
response = invoke('Quotation_GetOurReference2') 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 secondary reference of the creditor of an quotation.
|
916
|
+
# Parameters: quotationHandle: Handle for the quotation. valueHandle: Handle for new secondary reference of the creditor of the quotation.
|
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=Quotation_SetOurReference2
|
920
|
+
# @return [Hash] The body content of the SOAP response.
|
921
|
+
def self.set_our_reference2
|
922
|
+
response = invoke('Quotation_SetOurReference2') 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 the date of an quotation.
|
928
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetDate
|
932
|
+
# @return [Hash] The body content of the SOAP response.
|
933
|
+
def self.get_date
|
934
|
+
response = invoke('Quotation_GetDate') 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 date of an quotation. The due date is calculated accordingly as specified by the term of payment.
|
940
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new date of the quotation.
|
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=Quotation_SetDate
|
944
|
+
# @return [Hash] The body content of the SOAP response.
|
945
|
+
def self.set_date
|
946
|
+
response = invoke('Quotation_SetDate') 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 term of payment of an quotation.
|
952
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetTermOfPayment
|
956
|
+
# @return [Hash] The body content of the SOAP response.
|
957
|
+
def self.get_term_of_payment
|
958
|
+
response = invoke('Quotation_GetTermOfPayment') 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 term of payment of an quotation. The due date is calculated accordingly.
|
964
|
+
# Parameters: quotationHandle: Handle for the quotation. valueHandle: Handle for new term of payment of the quotation.
|
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=Quotation_SetTermOfPayment
|
968
|
+
# @return [Hash] The body content of the SOAP response.
|
969
|
+
def self.set_term_of_payment
|
970
|
+
response = invoke('Quotation_SetTermOfPayment') 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 due date of an quotation.
|
976
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetDueDate
|
980
|
+
# @return [Hash] The body content of the SOAP response.
|
981
|
+
def self.get_due_date
|
982
|
+
response = invoke('Quotation_GetDueDate') 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 due date of an quotation. It is only allowed to set the due date to an actual date when the type of TermOfPayment is set to DueDate.
|
988
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new due date of the quotation.
|
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=Quotation_SetDueDate
|
992
|
+
# @return [Hash] The body content of the SOAP response.
|
993
|
+
def self.set_due_date
|
994
|
+
response = invoke('Quotation_SetDueDate') 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 a handle for the currency of an quotation.
|
1000
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetCurrency
|
1004
|
+
# @return [Hash] The body content of the SOAP response.
|
1005
|
+
def self.get_currency
|
1006
|
+
response = invoke('Quotation_GetCurrency') 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 currency of an quotation. The value may not be null.
|
1012
|
+
# Parameters: quotationHandle: Handle for the quotation. valueHandle: Handle for new currency of the quotation.
|
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=Quotation_SetCurrency
|
1016
|
+
# @return [Hash] The body content of the SOAP response.
|
1017
|
+
def self.set_currency
|
1018
|
+
response = invoke('Quotation_SetCurrency') 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 exchange rate of an quotation.
|
1024
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetExchangeRate
|
1028
|
+
# @return [Hash] The body content of the SOAP response.
|
1029
|
+
def self.get_exchange_rate
|
1030
|
+
response = invoke('Quotation_GetExchangeRate') 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 exchange rate of an quotation. The values on the lines are not updated when setting this property.
|
1036
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new exchange of the quotation.
|
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=Quotation_SetExchangeRate
|
1040
|
+
# @return [Hash] The body content of the SOAP response.
|
1041
|
+
def self.set_exchange_rate
|
1042
|
+
response = invoke('Quotation_SetExchangeRate') 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 whether the quotation has VAT included.
|
1048
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetIsVatIncluded
|
1052
|
+
# @return [Hash] The body content of the SOAP response.
|
1053
|
+
def self.get_is_vat_included
|
1054
|
+
response = invoke('Quotation_GetIsVatIncluded') 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 whether the quotation has VAT included.
|
1060
|
+
# Parameters: quotationHandle: Handle for the quotation. value: The new value indicating whether the quotation should include VAT.
|
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=Quotation_SetIsVatIncluded
|
1064
|
+
# @return [Hash] The body content of the SOAP response.
|
1065
|
+
def self.set_is_vat_included
|
1066
|
+
response = invoke('Quotation_SetIsVatIncluded') 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 current VAT zone of the quotation.
|
1072
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetVatZone
|
1076
|
+
# @return [Hash] The body content of the SOAP response.
|
1077
|
+
def self.get_vat_zone
|
1078
|
+
response = invoke('Quotation_GetVatZone') 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 current VAT zone of the quotation.
|
1084
|
+
# Parameters: quotationHandle: Handle for the quotation. valueHandle: The new value handle to an ExtendVatZone.
|
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=Quotation_SetVatZone
|
1088
|
+
# @return [Hash] The body content of the SOAP response.
|
1089
|
+
def self.set_vat_zone
|
1090
|
+
response = invoke('Quotation_SetVatZone') 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 a handle for the layout of an quotation.
|
1096
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetLayout
|
1100
|
+
# @return [Hash] The body content of the SOAP response.
|
1101
|
+
def self.get_layout
|
1102
|
+
response = invoke('Quotation_GetLayout') 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 layout of an quotation.
|
1108
|
+
# Parameters: quotationHandle: Handle for the quotation. valueHandle: Handle for new layout of the quotation.
|
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=Quotation_SetLayout
|
1112
|
+
# @return [Hash] The body content of the SOAP response.
|
1113
|
+
def self.set_layout
|
1114
|
+
response = invoke('Quotation_SetLayout') 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 a handle for the delivery location of an quotation.
|
1120
|
+
# Parameters: quotationHandle: Handle for the quotation.
|
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=Quotation_GetDeliveryLocation
|
1124
|
+
# @return [Hash] The body content of the SOAP response.
|
1125
|
+
def self.get_delivery_location
|
1126
|
+
response = invoke('Quotation_GetDeliveryLocation') 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 delivery location of an quotation.
|
1132
|
+
# Parameters: quotationHandle: Handle for the quotation. valueHandle: Handle for new delivery location of the quotation.
|
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=Quotation_SetDeliveryLocation
|
1136
|
+
# @return [Hash] The body content of the SOAP response.
|
1137
|
+
def self.set_delivery_location
|
1138
|
+
response = invoke('Quotation_SetDeliveryLocation') 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
|
+
end
|
1144
|
+
end
|
1145
|
+
end
|