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,105 +6,105 @@ module Ruconomic
|
|
6
6
|
# Returns an AccountingPeriod data object for a given accounting period.
|
7
7
|
# Parameters: accountingPeriodHandle: A handle for the accounting period.
|
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=AccountingPeriod_GetData
|
11
11
|
# @return [Hash] The body content of the SOAP response.
|
12
12
|
def self.get_data
|
13
13
|
response = invoke('AccountingPeriod_GetData') 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
|
# Returns AccountingPeriod data objects for a given set of accounting period handles.
|
19
19
|
# Parameters: accountingPeriodHandles: An array of the accounting period handles.
|
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=AccountingPeriod_GetDataArray
|
23
23
|
# @return [Hash] The body content of the SOAP response.
|
24
24
|
def self.get_data_array
|
25
25
|
response = invoke('AccountingPeriod_GetDataArray') 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
|
# Returns handles for all accounting periods.
|
31
31
|
#
|
32
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
32
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
33
33
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=AccountingPeriod_GetAll
|
34
34
|
# @return [Hash] The body content of the SOAP response.
|
35
35
|
def self.get_all
|
36
36
|
response = invoke('AccountingPeriod_GetAll') do |message|
|
37
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
37
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
41
|
# Return handles for all accounting periods from date. fromDate is based on CET. includeCalculatedProperties is reserved for future usage and should be set to false for now.
|
42
42
|
#
|
43
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
43
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
44
44
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=AccountingPeriod_GetAllUpdated
|
45
45
|
# @return [Hash] The body content of the SOAP response.
|
46
46
|
def self.get_all_updated
|
47
47
|
response = invoke('AccountingPeriod_GetAllUpdated') do |message|
|
48
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
48
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
49
49
|
end
|
50
50
|
end
|
51
51
|
|
52
52
|
# Gets the period of an accounting period.
|
53
53
|
# Parameters: accountingPeriodHandle: Handle for the accounting period.
|
54
54
|
#
|
55
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
55
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
56
56
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=AccountingPeriod_GetPeriod
|
57
57
|
# @return [Hash] The body content of the SOAP response.
|
58
58
|
def self.get_period
|
59
59
|
response = invoke('AccountingPeriod_GetPeriod') do |message|
|
60
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
60
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
61
61
|
end
|
62
62
|
end
|
63
63
|
|
64
64
|
# Gets a handle for the accounting year of an accounting period.
|
65
65
|
# Parameters: accountingPeriodHandle: Handle for the accountingPeriod.
|
66
66
|
#
|
67
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
67
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
68
68
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=AccountingPeriod_GetAccountingYear
|
69
69
|
# @return [Hash] The body content of the SOAP response.
|
70
70
|
def self.get_accounting_year
|
71
71
|
response = invoke('AccountingPeriod_GetAccountingYear') do |message|
|
72
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
72
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
73
73
|
end
|
74
74
|
end
|
75
75
|
|
76
76
|
# Gets the from-date of the accounting period.
|
77
77
|
# Parameters: accountingPeriodHandle: Handle for the accounting period.
|
78
78
|
#
|
79
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
79
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
80
80
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=AccountingPeriod_GetFromDate
|
81
81
|
# @return [Hash] The body content of the SOAP response.
|
82
82
|
def self.get_from_date
|
83
83
|
response = invoke('AccountingPeriod_GetFromDate') do |message|
|
84
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
84
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
85
85
|
end
|
86
86
|
end
|
87
87
|
|
88
88
|
# Gets the to-date of the accounting period.
|
89
89
|
# Parameters: accountingPeriodHandle: Handle for the accounting period.
|
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=AccountingPeriod_GetToDate
|
93
93
|
# @return [Hash] The body content of the SOAP response.
|
94
94
|
def self.get_to_date
|
95
95
|
response = invoke('AccountingPeriod_GetToDate') 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
|
# Gets the status of the accounting period.
|
101
101
|
#
|
102
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
102
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
103
103
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=AccountingPeriod_GetStatus
|
104
104
|
# @return [Hash] The body content of the SOAP response.
|
105
105
|
def self.get_status
|
106
106
|
response = invoke('AccountingPeriod_GetStatus') do |message|
|
107
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
107
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
108
108
|
end
|
109
109
|
end
|
110
110
|
|
@@ -6,153 +6,153 @@ module Ruconomic
|
|
6
6
|
# Creates a new AccountingYear from a data object.
|
7
7
|
# Parameters: data: The data object that specifies the properties of the new AccountingYear.
|
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=AccountingYear_CreateFromData
|
11
11
|
# @return [Hash] The body content of the SOAP response.
|
12
12
|
def self.create_from_data
|
13
13
|
response = invoke('AccountingYear_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 AccountingYear from data objects.
|
19
19
|
# Parameters: dataArray: The array of data objects that specifies the properties of the new AccountingYear.
|
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=AccountingYear_CreateFromDataArray
|
23
23
|
# @return [Hash] The body content of the SOAP response.
|
24
24
|
def self.create_from_data_array
|
25
25
|
response = invoke('AccountingYear_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
|
# Returns an AccountingYear data object for a given accounting year.
|
31
31
|
# Parameters: accountingYearHandle: A handle for the accounting year.
|
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=AccountingYear_GetData
|
35
35
|
# @return [Hash] The body content of the SOAP response.
|
36
36
|
def self.get_data
|
37
37
|
response = invoke('AccountingYear_GetData') 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
|
# Returns AccountingYear data objects for a given set of accounting year handles.
|
43
43
|
# Parameters: accountingYearHandles: An array of the accounting year handles.
|
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=AccountingYear_GetDataArray
|
47
47
|
# @return [Hash] The body content of the SOAP response.
|
48
48
|
def self.get_data_array
|
49
49
|
response = invoke('AccountingYear_GetDataArray') 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 year of an accounting year.
|
55
55
|
# Parameters: accountingYearHandle: Handle for the accounting year.
|
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=AccountingYear_GetYear
|
59
59
|
# @return [Hash] The body content of the SOAP response.
|
60
60
|
def self.get_year
|
61
61
|
response = invoke('AccountingYear_GetYear') do |message|
|
62
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
62
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
66
66
|
# Gets the from-date of the accounting year.
|
67
67
|
# Parameters: accountingYearHandle: Handle for the accounting year.
|
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=AccountingYear_GetFromDate
|
71
71
|
# @return [Hash] The body content of the SOAP response.
|
72
72
|
def self.get_from_date
|
73
73
|
response = invoke('AccountingYear_GetFromDate') 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 to-date of the accounting year.
|
79
79
|
# Parameters: accountingYearHandle: Handle for the accounting year.
|
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=AccountingYear_GetToDate
|
83
83
|
# @return [Hash] The body content of the SOAP response.
|
84
84
|
def self.get_to_date
|
85
85
|
response = invoke('AccountingYear_GetToDate') do |message|
|
86
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
86
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
87
87
|
end
|
88
88
|
end
|
89
89
|
|
90
90
|
# Gets the isClosed boolean of the accounting year.
|
91
91
|
#
|
92
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
92
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
93
93
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=AccountingYear_GetIsClosed
|
94
94
|
# @return [Hash] The body content of the SOAP response.
|
95
95
|
def self.get_is_closed
|
96
96
|
response = invoke('AccountingYear_GetIsClosed') do |message|
|
97
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
97
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
98
98
|
end
|
99
99
|
end
|
100
100
|
|
101
101
|
# Creates a new accounting year.
|
102
102
|
# Parameters: fromDate: The from date of the new accounting year. toDate: The to date of the new accounting year.
|
103
103
|
#
|
104
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
104
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
105
105
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=AccountingYear_Create
|
106
106
|
# @return [Hash] The body content of the SOAP response.
|
107
107
|
def self.create
|
108
108
|
response = invoke('AccountingYear_Create') do |message|
|
109
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
109
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
110
110
|
end
|
111
111
|
end
|
112
112
|
|
113
113
|
# Deletes an accounting year.
|
114
114
|
# Parameters: accountingYearHandle: Handle for the accounting year.
|
115
115
|
#
|
116
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
116
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
117
117
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=AccountingYear_Delete
|
118
118
|
# @return [Hash] The body content of the SOAP response.
|
119
119
|
def self.delete
|
120
120
|
response = invoke('AccountingYear_Delete') do |message|
|
121
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
121
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
122
122
|
end
|
123
123
|
end
|
124
124
|
|
125
125
|
# Returns handles for all accounting years.
|
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=AccountingYear_GetAll
|
129
129
|
# @return [Hash] The body content of the SOAP response.
|
130
130
|
def self.get_all
|
131
131
|
response = invoke('AccountingYear_GetAll') 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
|
# Returns an array of handles for the accounting years within the given time interval.
|
137
137
|
# Parameters: fromDate: First day in interval. toDate: Last day in interval.
|
138
138
|
#
|
139
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
139
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
140
140
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=AccountingYear_FindByDate
|
141
141
|
# @return [Hash] The body content of the SOAP response.
|
142
142
|
def self.find_by_date
|
143
143
|
response = invoke('AccountingYear_FindByDate') do |message|
|
144
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
144
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
145
145
|
end
|
146
146
|
end
|
147
147
|
|
148
148
|
# Returns handles for all accounting periods.
|
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=AccountingYear_GetPeriods
|
152
152
|
# @return [Hash] The body content of the SOAP response.
|
153
153
|
def self.get_periods
|
154
154
|
response = invoke('AccountingYear_GetPeriods') 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
|
|
@@ -6,82 +6,82 @@ module Ruconomic
|
|
6
6
|
# Returns an Activity data object for a given Activity.
|
7
7
|
# Parameters: entityHandle: A handle for the Activity.
|
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=Activity_GetData
|
11
11
|
# @return [Hash] The body content of the SOAP response.
|
12
12
|
def self.get_data
|
13
13
|
response = invoke('Activity_GetData') 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
|
# Returns Activity data objects for a given set of Activity handles.
|
19
19
|
# Parameters: entityHandles: An array of the Activity handles.
|
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=Activity_GetDataArray
|
23
23
|
# @return [Hash] The body content of the SOAP response.
|
24
24
|
def self.get_data_array
|
25
25
|
response = invoke('Activity_GetDataArray') 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
|
# Returns handles for all activities.
|
31
31
|
#
|
32
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
32
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
33
33
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Activity_GetAll
|
34
34
|
# @return [Hash] The body content of the SOAP response.
|
35
35
|
def self.get_all
|
36
36
|
response = invoke('Activity_GetAll') do |message|
|
37
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
37
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
41
|
# Returns a handle for the activity with the given number.
|
42
42
|
# Parameters: number: The number to search for.
|
43
43
|
#
|
44
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
44
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
45
45
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Activity_FindByNumber
|
46
46
|
# @return [Hash] The body content of the SOAP response.
|
47
47
|
def self.find_by_number
|
48
48
|
response = invoke('Activity_FindByNumber') do |message|
|
49
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
49
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
53
|
# Returns an array with handles for the activities corresponding to the given numbers. If an activity with a given number does not exist or if no number is given then the array contains null at that index.
|
54
54
|
# Parameters: numbers: The numbers to search for.
|
55
55
|
#
|
56
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
56
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
57
57
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Activity_FindByNumberList
|
58
58
|
# @return [Hash] The body content of the SOAP response.
|
59
59
|
def self.find_by_number_list
|
60
60
|
response = invoke('Activity_FindByNumberList') do |message|
|
61
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
61
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
65
|
# Gets the number of the activity.
|
66
66
|
# Parameters: activityHandle: Handle for the activity.
|
67
67
|
#
|
68
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
68
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
69
69
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Activity_GetNumber
|
70
70
|
# @return [Hash] The body content of the SOAP response.
|
71
71
|
def self.get_number
|
72
72
|
response = invoke('Activity_GetNumber') do |message|
|
73
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
73
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
77
|
# Gets the name of the activity.
|
78
78
|
#
|
79
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
79
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
80
80
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=Activity_GetName
|
81
81
|
# @return [Hash] The body content of the SOAP response.
|
82
82
|
def self.get_name
|
83
83
|
response = invoke('Activity_GetName') do |message|
|
84
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
84
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
85
85
|
end
|
86
86
|
end
|
87
87
|
|
@@ -6,95 +6,95 @@ module Ruconomic
|
|
6
6
|
# Returns a bank payment type data object for a given bank payment type.
|
7
7
|
# Parameters: entityHandle: A handle for the bank payment type.
|
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=BankPaymentType_GetData
|
11
11
|
# @return [Hash] The body content of the SOAP response.
|
12
12
|
def self.get_data
|
13
13
|
response = invoke('BankPaymentType_GetData') 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
|
# Returns bank payment type data objects for a given set of bank payment type handles.
|
19
19
|
# Parameters: entityHandles: An array of the bank payment type handles.
|
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=BankPaymentType_GetDataArray
|
23
23
|
# @return [Hash] The body content of the SOAP response.
|
24
24
|
def self.get_data_array
|
25
25
|
response = invoke('BankPaymentType_GetDataArray') 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
|
# Return handles for all bank payment types.
|
31
31
|
#
|
32
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
32
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
33
33
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=BankPaymentType_GetAll
|
34
34
|
# @return [Hash] The body content of the SOAP response.
|
35
35
|
def self.get_all
|
36
36
|
response = invoke('BankPaymentType_GetAll') do |message|
|
37
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
37
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
41
|
# Returns handles for the bank payment types with the given name.
|
42
42
|
# Parameters: name: The name to search for.
|
43
43
|
#
|
44
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
44
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
45
45
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=BankPaymentType_FindByName
|
46
46
|
# @return [Hash] The body content of the SOAP response.
|
47
47
|
def self.find_by_name
|
48
48
|
response = invoke('BankPaymentType_FindByName') do |message|
|
49
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
49
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
53
|
# Returns a handle for the bank payment type with the given number.
|
54
54
|
# Parameters: number: The number to search for.
|
55
55
|
#
|
56
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
56
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
57
57
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=BankPaymentType_FindByNumber
|
58
58
|
# @return [Hash] The body content of the SOAP response.
|
59
59
|
def self.find_by_number
|
60
60
|
response = invoke('BankPaymentType_FindByNumber') do |message|
|
61
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
61
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
65
|
# Returns an array with handles for the bank payment types corresponding to the given bank payment type numbers. If a bank payment type with a given number does not exist or if no number is given then the array contains nothing at that index.
|
66
66
|
# Parameters: numbers: The numbers to search for.
|
67
67
|
#
|
68
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
68
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
69
69
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=BankPaymentType_FindByNumberList
|
70
70
|
# @return [Hash] The body content of the SOAP response.
|
71
71
|
def self.find_by_number_list
|
72
72
|
response = invoke('BankPaymentType_FindByNumberList') do |message|
|
73
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
73
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
77
|
# Gets the number of a bank payment type.
|
78
78
|
# Parameters: bankPaymentTypeHandle: Handle for the bank payment type.
|
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=BankPaymentType_GetNumber
|
82
82
|
# @return [Hash] The body content of the SOAP response.
|
83
83
|
def self.get_number
|
84
84
|
response = invoke('BankPaymentType_GetNumber') 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
|
# Gets the name of a bank payment type.
|
90
90
|
# Parameters: bankPaymentTypeHandle: Handle for the bank payment type.
|
91
91
|
#
|
92
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
92
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
93
93
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=BankPaymentType_GetName
|
94
94
|
# @return [Hash] The body content of the SOAP response.
|
95
95
|
def self.get_name
|
96
96
|
response = invoke('BankPaymentType_GetName') do |message|
|
97
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
97
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
98
98
|
end
|
99
99
|
end
|
100
100
|
|