ruconomic 0.9.1 → 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/ruconomic/api/account.rb +86 -86
- data/lib/ruconomic/api/accounting_period.rb +18 -18
- data/lib/ruconomic/api/accounting_year.rb +26 -26
- data/lib/ruconomic/api/activity.rb +14 -14
- data/lib/ruconomic/api/bank_payment_type.rb +16 -16
- data/lib/ruconomic/api/budget_figure.rb +56 -56
- data/lib/ruconomic/api/cash_book.rb +38 -38
- data/lib/ruconomic/api/cash_book_entry.rb +118 -118
- data/lib/ruconomic/api/company.rb +48 -48
- data/lib/ruconomic/api/cost_type.rb +22 -22
- data/lib/ruconomic/api/cost_type_group.rb +18 -18
- data/lib/ruconomic/api/creditor.rb +114 -114
- data/lib/ruconomic/api/creditor_contact.rb +44 -44
- data/lib/ruconomic/api/creditor_entry.rb +40 -40
- data/lib/ruconomic/api/creditor_group.rb +34 -34
- data/lib/ruconomic/api/currency.rb +10 -10
- data/lib/ruconomic/api/current_invoice.rb +184 -184
- data/lib/ruconomic/api/current_invoice_line.rb +72 -72
- data/lib/ruconomic/api/current_supplier_invoice.rb +18 -18
- data/lib/ruconomic/api/current_supplier_invoice_line.rb +14 -14
- data/lib/ruconomic/api/debtor.rb +152 -152
- data/lib/ruconomic/api/debtor_contact.rb +54 -54
- data/lib/ruconomic/api/debtor_entry.rb +38 -38
- data/lib/ruconomic/api/debtor_group.rb +38 -38
- data/lib/ruconomic/api/delivery_location.rb +56 -56
- data/lib/ruconomic/api/department.rb +32 -32
- data/lib/ruconomic/api/distribution_key.rb +30 -30
- data/lib/ruconomic/api/document_archive_category.rb +26 -26
- data/lib/ruconomic/api/employee.rb +70 -70
- data/lib/ruconomic/api/employee_group.rb +32 -32
- data/lib/ruconomic/api/entry.rb +52 -52
- data/lib/ruconomic/api/extended_vat_zone.rb +12 -12
- data/lib/ruconomic/api/inventory_location.rb +14 -14
- data/lib/ruconomic/api/invoice.rb +115 -111
- data/lib/ruconomic/api/invoice_line.rb +40 -40
- data/lib/ruconomic/api/key_figure_code.rb +16 -16
- data/lib/ruconomic/api/mileage_entry.rb +52 -52
- data/lib/ruconomic/api/order.rb +194 -194
- data/lib/ruconomic/api/order_line.rb +74 -74
- data/lib/ruconomic/api/price_group.rb +32 -32
- data/lib/ruconomic/api/product.rb +88 -88
- data/lib/ruconomic/api/product_group.rb +44 -44
- data/lib/ruconomic/api/product_price.rb +26 -26
- data/lib/ruconomic/api/project.rb +74 -74
- data/lib/ruconomic/api/project_group.rb +18 -18
- data/lib/ruconomic/api/quotation.rb +190 -190
- data/lib/ruconomic/api/quotation_line.rb +74 -74
- data/lib/ruconomic/api/report_code.rb +12 -12
- data/lib/ruconomic/api/report_code_set.rb +14 -14
- data/lib/ruconomic/api/scanned_document.rb +28 -28
- data/lib/ruconomic/api/subscriber.rb +78 -78
- data/lib/ruconomic/api/subscription.rb +62 -62
- data/lib/ruconomic/api/subscription_line.rb +50 -50
- data/lib/ruconomic/api/sum_interval.rb +26 -26
- data/lib/ruconomic/api/template_collection.rb +12 -12
- data/lib/ruconomic/api/term_of_payment.rb +50 -50
- data/lib/ruconomic/api/time_entry.rb +42 -42
- data/lib/ruconomic/api/unit.rb +30 -30
- data/lib/ruconomic/api/vat_account.rb +24 -24
- data/lib/ruconomic/api.rb +12 -13
- data/lib/ruconomic/version.rb +1 -1
- data/ruconomic.gemspec +1 -1
- metadata +20 -21
@@ -6,333 +6,333 @@ module Ruconomic
|
|
6
6
|
# Gets a handle for the debtor of a delivery location.
|
7
7
|
# Parameters: deliveryLocationHandle: Handle for the delivery location.
|
8
8
|
#
|
9
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
9
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
10
10
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_GetDebtor
|
11
11
|
# @return [Hash] The body content of the SOAP response.
|
12
12
|
def self.get_debtor
|
13
13
|
response = invoke('DeliveryLocation_GetDebtor') do |message|
|
14
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
14
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
15
15
|
end
|
16
16
|
end
|
17
17
|
|
18
18
|
# Gets the number of a delivery location.
|
19
19
|
# Parameters: deliveryLocationHandle: Handle for the delivery location.
|
20
20
|
#
|
21
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
21
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
22
22
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_GetNumber
|
23
23
|
# @return [Hash] The body content of the SOAP response.
|
24
24
|
def self.get_number
|
25
25
|
response = invoke('DeliveryLocation_GetNumber') do |message|
|
26
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
26
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
30
|
# Gets the address of a delivery location.
|
31
31
|
# Parameters: deliveryLocationHandle: Handle for the delivery location.
|
32
32
|
#
|
33
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
33
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
34
34
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_GetAddress
|
35
35
|
# @return [Hash] The body content of the SOAP response.
|
36
36
|
def self.get_address
|
37
37
|
response = invoke('DeliveryLocation_GetAddress') do |message|
|
38
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
38
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
42
|
# Sets the address of a delivery location.
|
43
43
|
# Parameters: deliveryLocationHandle: Handle for the delivery location. value: The new address of the delivery location.
|
44
44
|
#
|
45
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
45
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
46
46
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_SetAddress
|
47
47
|
# @return [Hash] The body content of the SOAP response.
|
48
48
|
def self.set_address
|
49
49
|
response = invoke('DeliveryLocation_SetAddress') do |message|
|
50
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
50
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
54
|
# Gets the postal code of a delivery location.
|
55
55
|
# Parameters: deliveryLocationHandle: Handle for the delivery location.
|
56
56
|
#
|
57
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
57
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
58
58
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_GetPostalCode
|
59
59
|
# @return [Hash] The body content of the SOAP response.
|
60
60
|
def self.get_postal_code
|
61
61
|
response = invoke('DeliveryLocation_GetPostalCode') do |message|
|
62
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
62
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
66
66
|
# Sets the postal code of a delivery location.
|
67
67
|
# Parameters: deliveryLocationHandle: Handle for the delivery location. value: The new postal code of the delivery location.
|
68
68
|
#
|
69
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
69
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
70
70
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_SetPostalCode
|
71
71
|
# @return [Hash] The body content of the SOAP response.
|
72
72
|
def self.set_postal_code
|
73
73
|
response = invoke('DeliveryLocation_SetPostalCode') do |message|
|
74
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
74
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
78
78
|
# Gets the city of a delivery location.
|
79
79
|
# Parameters: deliveryLocationHandle: Handle for the delivery location.
|
80
80
|
#
|
81
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
81
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
82
82
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_GetCity
|
83
83
|
# @return [Hash] The body content of the SOAP response.
|
84
84
|
def self.get_city
|
85
85
|
response = invoke('DeliveryLocation_GetCity') do |message|
|
86
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
86
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
87
87
|
end
|
88
88
|
end
|
89
89
|
|
90
90
|
# Sets the city of a delivery location.
|
91
91
|
# Parameters: deliveryLocationHandle: Handle for the delivery location. value: The new city of the delivery location.
|
92
92
|
#
|
93
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
93
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
94
94
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_SetCity
|
95
95
|
# @return [Hash] The body content of the SOAP response.
|
96
96
|
def self.set_city
|
97
97
|
response = invoke('DeliveryLocation_SetCity') do |message|
|
98
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
98
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
99
99
|
end
|
100
100
|
end
|
101
101
|
|
102
102
|
# Sets the country of a delivery location.
|
103
103
|
# Parameters: deliveryLocationHandle: Handle for the delivery location. value: The new country of the delivery location.
|
104
104
|
#
|
105
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
105
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
106
106
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_SetCountry
|
107
107
|
# @return [Hash] The body content of the SOAP response.
|
108
108
|
def self.set_country
|
109
109
|
response = invoke('DeliveryLocation_SetCountry') do |message|
|
110
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
110
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
111
111
|
end
|
112
112
|
end
|
113
113
|
|
114
114
|
# Gets the country of a delivery location.
|
115
115
|
# Parameters: deliveryLocationHandle: Handle for the delivery location.
|
116
116
|
#
|
117
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
117
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
118
118
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_GetCountry
|
119
119
|
# @return [Hash] The body content of the SOAP response.
|
120
120
|
def self.get_country
|
121
121
|
response = invoke('DeliveryLocation_GetCountry') do |message|
|
122
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
122
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
123
123
|
end
|
124
124
|
end
|
125
125
|
|
126
126
|
# Sets the terms of delivery of a delivery location.
|
127
127
|
# Parameters: deliveryLocationHandle: Handle for the delivery location. value: The new terms of delivery of the delivery location.
|
128
128
|
#
|
129
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
129
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
130
130
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_SetTermsOfDelivery
|
131
131
|
# @return [Hash] The body content of the SOAP response.
|
132
132
|
def self.set_terms_of_delivery
|
133
133
|
response = invoke('DeliveryLocation_SetTermsOfDelivery') do |message|
|
134
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
134
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
135
135
|
end
|
136
136
|
end
|
137
137
|
|
138
138
|
# Gets the terms of delivery of a delivery location.
|
139
139
|
# Parameters: deliveryLocationHandle: Handle for the delivery location.
|
140
140
|
#
|
141
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
141
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
142
142
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_GetTermsOfDelivery
|
143
143
|
# @return [Hash] The body content of the SOAP response.
|
144
144
|
def self.get_terms_of_delivery
|
145
145
|
response = invoke('DeliveryLocation_GetTermsOfDelivery') do |message|
|
146
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
146
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
147
147
|
end
|
148
148
|
end
|
149
149
|
|
150
150
|
# Gets whether a delivery location is accessible.
|
151
151
|
# Parameters: deliveryLocationHandle: Handle for the delivery location.
|
152
152
|
#
|
153
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
153
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
154
154
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_GetIsAccessible
|
155
155
|
# @return [Hash] The body content of the SOAP response.
|
156
156
|
def self.get_is_accessible
|
157
157
|
response = invoke('DeliveryLocation_GetIsAccessible') do |message|
|
158
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
158
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
159
159
|
end
|
160
160
|
end
|
161
161
|
|
162
162
|
# Sets whether a delivery location is accessible.
|
163
163
|
# Parameters: deliveryLocationHandle: Handle for the delivery location. value: Value that indicates whether the delivery location should be accessible.
|
164
164
|
#
|
165
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
165
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
166
166
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_SetIsAccessible
|
167
167
|
# @return [Hash] The body content of the SOAP response.
|
168
168
|
def self.set_is_accessible
|
169
169
|
response = invoke('DeliveryLocation_SetIsAccessible') do |message|
|
170
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
170
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
171
171
|
end
|
172
172
|
end
|
173
173
|
|
174
174
|
# Gets the external ID of a delivery location.
|
175
175
|
# Parameters: deliveryLocationHandle: Handle for the delivery location.
|
176
176
|
#
|
177
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
177
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
178
178
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_GetExternalId
|
179
179
|
# @return [Hash] The body content of the SOAP response.
|
180
180
|
def self.get_external_id
|
181
181
|
response = invoke('DeliveryLocation_GetExternalId') do |message|
|
182
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
182
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
183
183
|
end
|
184
184
|
end
|
185
185
|
|
186
186
|
# Sets the external ID of a delivery location.
|
187
187
|
# Parameters: deliveryLocationHandle: Handle for the delivery location. value: The new external ID of the delivery location.
|
188
188
|
#
|
189
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
189
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
190
190
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_SetExternalId
|
191
191
|
# @return [Hash] The body content of the SOAP response.
|
192
192
|
def self.set_external_id
|
193
193
|
response = invoke('DeliveryLocation_SetExternalId') do |message|
|
194
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
194
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
195
195
|
end
|
196
196
|
end
|
197
197
|
|
198
198
|
# Gets the County of a delivery location. (UK only)
|
199
199
|
# Parameters: deliveryLocationHandle: Handle for the deliveryLocation.
|
200
200
|
#
|
201
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
201
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
202
202
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_GetCounty
|
203
203
|
# @return [Hash] The body content of the SOAP response.
|
204
204
|
def self.get_county
|
205
205
|
response = invoke('DeliveryLocation_GetCounty') do |message|
|
206
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
206
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
207
207
|
end
|
208
208
|
end
|
209
209
|
|
210
210
|
# Sets the County of a delivery location. (UK only)
|
211
211
|
# Parameters: deliveryLocationHandle: Handle for the deliveryLocation. value: The new County of the deliveryLocation.
|
212
212
|
#
|
213
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
213
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
214
214
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_SetCounty
|
215
215
|
# @return [Hash] The body content of the SOAP response.
|
216
216
|
def self.set_county
|
217
217
|
response = invoke('DeliveryLocation_SetCounty') do |message|
|
218
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
218
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
219
219
|
end
|
220
220
|
end
|
221
221
|
|
222
222
|
# Creates a new delivery location.
|
223
223
|
#
|
224
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
224
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
225
225
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_Create
|
226
226
|
# @return [Hash] The body content of the SOAP response.
|
227
227
|
def self.create
|
228
228
|
response = invoke('DeliveryLocation_Create') do |message|
|
229
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
229
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
230
230
|
end
|
231
231
|
end
|
232
232
|
|
233
233
|
# Returns handles for all delivery locations.
|
234
234
|
#
|
235
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
235
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
236
236
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_GetAll
|
237
237
|
# @return [Hash] The body content of the SOAP response.
|
238
238
|
def self.get_all
|
239
239
|
response = invoke('DeliveryLocation_GetAll') do |message|
|
240
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
240
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
241
241
|
end
|
242
242
|
end
|
243
243
|
|
244
244
|
# Returns handles for all delivery location with a given external ID.
|
245
245
|
# Parameters: externalId: The external ID to search for.
|
246
246
|
#
|
247
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
247
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
248
248
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_FindByExternalId
|
249
249
|
# @return [Hash] The body content of the SOAP response.
|
250
250
|
def self.find_by_external_id
|
251
251
|
response = invoke('DeliveryLocation_FindByExternalId') do |message|
|
252
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
252
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
253
253
|
end
|
254
254
|
end
|
255
255
|
|
256
256
|
# Deletes a delivery location
|
257
257
|
#
|
258
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
258
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
259
259
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_Delete
|
260
260
|
# @return [Hash] The body content of the SOAP response.
|
261
261
|
def self.delete
|
262
262
|
response = invoke('DeliveryLocation_Delete') do |message|
|
263
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
263
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
264
264
|
end
|
265
265
|
end
|
266
266
|
|
267
267
|
# Creates a new delivery location contact from a data object.
|
268
268
|
# Parameters: data: The data object that specifies the properties of the new delivery location.
|
269
269
|
#
|
270
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
270
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
271
271
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_CreateFromData
|
272
272
|
# @return [Hash] The body content of the SOAP response.
|
273
273
|
def self.create_from_data
|
274
274
|
response = invoke('DeliveryLocation_CreateFromData') do |message|
|
275
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
275
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
276
276
|
end
|
277
277
|
end
|
278
278
|
|
279
279
|
# Creates new delivery locations from data objects.
|
280
280
|
# Parameters: dataArray: The array of data objects that specifies the properties of the new delivery locations.
|
281
281
|
#
|
282
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
282
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
283
283
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_CreateFromDataArray
|
284
284
|
# @return [Hash] The body content of the SOAP response.
|
285
285
|
def self.create_from_data_array
|
286
286
|
response = invoke('DeliveryLocation_CreateFromDataArray') do |message|
|
287
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
287
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
288
288
|
end
|
289
289
|
end
|
290
290
|
|
291
291
|
# Update delivery locations from data objects.
|
292
292
|
# Parameters: dataArray: The array of data objects.
|
293
293
|
#
|
294
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
294
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
295
295
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_UpdateFromDataArray
|
296
296
|
# @return [Hash] The body content of the SOAP response.
|
297
297
|
def self.update_from_data_array
|
298
298
|
response = invoke('DeliveryLocation_UpdateFromDataArray') do |message|
|
299
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
299
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
300
300
|
end
|
301
301
|
end
|
302
302
|
|
303
303
|
# Updates a delivery location from a data object.
|
304
304
|
# Parameters: data: The data object.
|
305
305
|
#
|
306
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
306
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
307
307
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_UpdateFromData
|
308
308
|
# @return [Hash] The body content of the SOAP response.
|
309
309
|
def self.update_from_data
|
310
310
|
response = invoke('DeliveryLocation_UpdateFromData') do |message|
|
311
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
311
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
312
312
|
end
|
313
313
|
end
|
314
314
|
|
315
315
|
# Returns a delivery location data object for a given delivery location.
|
316
316
|
# Parameters: entityHandle: A handle for the delivery location.
|
317
317
|
#
|
318
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
318
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
319
319
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_GetData
|
320
320
|
# @return [Hash] The body content of the SOAP response.
|
321
321
|
def self.get_data
|
322
322
|
response = invoke('DeliveryLocation_GetData') do |message|
|
323
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
323
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
324
324
|
end
|
325
325
|
end
|
326
326
|
|
327
327
|
# Returns delivery location data objects for a given set of delivery location handles.
|
328
328
|
# Parameters: entityHandles: An array of the delivery location handles.
|
329
329
|
#
|
330
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
330
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
331
331
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=DeliveryLocation_GetDataArray
|
332
332
|
# @return [Hash] The body content of the SOAP response.
|
333
333
|
def self.get_data_array
|
334
334
|
response = invoke('DeliveryLocation_GetDataArray') do |message|
|
335
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
335
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
336
336
|
end
|
337
337
|
end
|
338
338
|
|
@@ -6,189 +6,189 @@ module Ruconomic
|
|
6
6
|
# Creates a new department from a data object.
|
7
7
|
# Parameters: data: The data object that specifies the properties of the new department.
|
8
8
|
#
|
9
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
9
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
10
10
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Department_CreateFromData
|
11
11
|
# @return [Hash] The body content of the SOAP response.
|
12
12
|
def self.create_from_data
|
13
13
|
response = invoke('Department_CreateFromData') do |message|
|
14
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
14
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
15
15
|
end
|
16
16
|
end
|
17
17
|
|
18
18
|
# Creates new departments from data objects.
|
19
19
|
# Parameters: dataArray: The array of data objects that specifies the properties of the new departments.
|
20
20
|
#
|
21
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
21
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
22
22
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Department_CreateFromDataArray
|
23
23
|
# @return [Hash] The body content of the SOAP response.
|
24
24
|
def self.create_from_data_array
|
25
25
|
response = invoke('Department_CreateFromDataArray') do |message|
|
26
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
26
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
30
|
# Update departments from data objects.
|
31
31
|
# Parameters: dataArray: The array of data objects.
|
32
32
|
#
|
33
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
33
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
34
34
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Department_UpdateFromDataArray
|
35
35
|
# @return [Hash] The body content of the SOAP response.
|
36
36
|
def self.update_from_data_array
|
37
37
|
response = invoke('Department_UpdateFromDataArray') do |message|
|
38
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
38
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
42
|
# Updates a department from a data object.
|
43
43
|
# Parameters: data: The data object.
|
44
44
|
#
|
45
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
45
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
46
46
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Department_UpdateFromData
|
47
47
|
# @return [Hash] The body content of the SOAP response.
|
48
48
|
def self.update_from_data
|
49
49
|
response = invoke('Department_UpdateFromData') do |message|
|
50
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
50
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
54
|
# Returns a department data object for a given department.
|
55
55
|
# Parameters: entityHandle: A handle for the department.
|
56
56
|
#
|
57
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
57
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
58
58
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Department_GetData
|
59
59
|
# @return [Hash] The body content of the SOAP response.
|
60
60
|
def self.get_data
|
61
61
|
response = invoke('Department_GetData') do |message|
|
62
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
62
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
66
66
|
# Returns department data objects for a given set of department handles.
|
67
67
|
# Parameters: entityHandles: An array of the department handles.
|
68
68
|
#
|
69
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
69
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
70
70
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Department_GetDataArray
|
71
71
|
# @return [Hash] The body content of the SOAP response.
|
72
72
|
def self.get_data_array
|
73
73
|
response = invoke('Department_GetDataArray') do |message|
|
74
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
74
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
78
78
|
# Creates a new department.
|
79
79
|
#
|
80
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
80
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
81
81
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Department_Create
|
82
82
|
# @return [Hash] The body content of the SOAP response.
|
83
83
|
def self.create
|
84
84
|
response = invoke('Department_Create') do |message|
|
85
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
85
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
89
89
|
# Returns handles for all departments.
|
90
90
|
#
|
91
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
91
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
92
92
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Department_GetAll
|
93
93
|
# @return [Hash] The body content of the SOAP response.
|
94
94
|
def self.get_all
|
95
95
|
response = invoke('Department_GetAll') do |message|
|
96
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
96
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
97
97
|
end
|
98
98
|
end
|
99
99
|
|
100
100
|
# Returns a handle for the department with the given number.
|
101
101
|
# Parameters: number: The number to search for.
|
102
102
|
#
|
103
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
103
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
104
104
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Department_FindByNumber
|
105
105
|
# @return [Hash] The body content of the SOAP response.
|
106
106
|
def self.find_by_number
|
107
107
|
response = invoke('Department_FindByNumber') do |message|
|
108
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
108
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
109
109
|
end
|
110
110
|
end
|
111
111
|
|
112
112
|
# Returns an array with handles for the departments corresponding to the given numbers. If a department with a given number does not exist then the array contains nothing at that index.
|
113
113
|
# Parameters: numbers: The numbers to search for.
|
114
114
|
#
|
115
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
115
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
116
116
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Department_FindByNumberList
|
117
117
|
# @return [Hash] The body content of the SOAP response.
|
118
118
|
def self.find_by_number_list
|
119
119
|
response = invoke('Department_FindByNumberList') do |message|
|
120
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
120
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
121
121
|
end
|
122
122
|
end
|
123
123
|
|
124
124
|
# Returns a handle for the department with a given name.
|
125
125
|
# Parameters: name: The name to search for.
|
126
126
|
#
|
127
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
127
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
128
128
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Department_FindByName
|
129
129
|
# @return [Hash] The body content of the SOAP response.
|
130
130
|
def self.find_by_name
|
131
131
|
response = invoke('Department_FindByName') do |message|
|
132
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
132
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
133
133
|
end
|
134
134
|
end
|
135
135
|
|
136
136
|
# Return handles for all departments from date. fromDate is based on CET. includeCalculatedProperties is reserved for future usage and should be set to false for now.
|
137
137
|
#
|
138
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
138
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
139
139
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Department_GetAllUpdated
|
140
140
|
# @return [Hash] The body content of the SOAP response.
|
141
141
|
def self.get_all_updated
|
142
142
|
response = invoke('Department_GetAllUpdated') do |message|
|
143
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
143
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
144
144
|
end
|
145
145
|
end
|
146
146
|
|
147
147
|
# Deletes a department.
|
148
148
|
# Parameters: departmentHandle: Handle for the department.
|
149
149
|
#
|
150
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
150
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
151
151
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Department_Delete
|
152
152
|
# @return [Hash] The body content of the SOAP response.
|
153
153
|
def self.delete
|
154
154
|
response = invoke('Department_Delete') do |message|
|
155
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
155
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
156
156
|
end
|
157
157
|
end
|
158
158
|
|
159
159
|
# Gets the number of a department.
|
160
160
|
# Parameters: departmentHandle: Handle for the department.
|
161
161
|
#
|
162
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
162
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
163
163
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Department_GetNumber
|
164
164
|
# @return [Hash] The body content of the SOAP response.
|
165
165
|
def self.get_number
|
166
166
|
response = invoke('Department_GetNumber') do |message|
|
167
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
167
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
168
168
|
end
|
169
169
|
end
|
170
170
|
|
171
171
|
# Gets the name of a department.
|
172
172
|
# Parameters: departmentHandle: Handle for the department.
|
173
173
|
#
|
174
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
174
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
175
175
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Department_GetName
|
176
176
|
# @return [Hash] The body content of the SOAP response.
|
177
177
|
def self.get_name
|
178
178
|
response = invoke('Department_GetName') do |message|
|
179
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
179
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
180
180
|
end
|
181
181
|
end
|
182
182
|
|
183
183
|
# Sets the name of a department.
|
184
184
|
# Parameters: departmentHandle: Handle for the department. value: The new name for the department.
|
185
185
|
#
|
186
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
186
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
187
187
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Department_SetName
|
188
188
|
# @return [Hash] The body content of the SOAP response.
|
189
189
|
def self.set_name
|
190
190
|
response = invoke('Department_SetName') do |message|
|
191
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
191
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
192
192
|
end
|
193
193
|
end
|
194
194
|
|