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 a project group data object for a given project group.
|
7
7
|
# Parameters: entityHandle: A handle for the project group.
|
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=ProjectGroup_GetData
|
11
11
|
# @return [Hash] The body content of the SOAP response.
|
12
12
|
def self.get_data
|
13
13
|
response = invoke('ProjectGroup_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 project group data objects for a given set of project group handles.
|
19
19
|
# Parameters: entityHandles: An array of the project group 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=ProjectGroup_GetDataArray
|
23
23
|
# @return [Hash] The body content of the SOAP response.
|
24
24
|
def self.get_data_array
|
25
25
|
response = invoke('ProjectGroup_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
|
# Get the number of a project group.
|
31
31
|
# Parameters: projectGroupHandle: Handle for the project group.
|
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=ProjectGroup_GetNumber
|
35
35
|
# @return [Hash] The body content of the SOAP response.
|
36
36
|
def self.get_number
|
37
37
|
response = invoke('ProjectGroup_GetNumber') 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
|
# Get the name of a project group.
|
43
43
|
# Parameters: projectGroupHandle: Handle for the project group.
|
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=ProjectGroup_GetName
|
47
47
|
# @return [Hash] The body content of the SOAP response.
|
48
48
|
def self.get_name
|
49
49
|
response = invoke('ProjectGroup_GetName') 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 handles for all project groups.
|
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=ProjectGroup_GetAll
|
58
58
|
# @return [Hash] The body content of the SOAP response.
|
59
59
|
def self.get_all
|
60
60
|
response = invoke('ProjectGroup_GetAll') 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 handles for the project group with a given number.
|
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=ProjectGroup_FindByNumber
|
69
69
|
# @return [Hash] The body content of the SOAP response.
|
70
70
|
def self.find_by_number
|
71
71
|
response = invoke('ProjectGroup_FindByNumber') 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
|
# Returns an array with handles for the project groups corresponding to the given project group numbers. If a project group with a given number does not exist then the array contains nothing at that index.
|
77
77
|
# Parameters: numbers: The numbers to search for.
|
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=ProjectGroup_FindByNumberList
|
81
81
|
# @return [Hash] The body content of the SOAP response.
|
82
82
|
def self.find_by_number_list
|
83
83
|
response = invoke('ProjectGroup_FindByNumberList') 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
|
# Returns handles for all project groups with a given name.
|
89
89
|
#
|
90
|
-
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/
|
90
|
+
# @note TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
91
91
|
# @see https://api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=ProjectGroup_FindByName
|
92
92
|
# @return [Hash] The body content of the SOAP response.
|
93
93
|
def self.find_by_name
|
94
94
|
response = invoke('ProjectGroup_FindByName') do |message|
|
95
|
-
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/
|
95
|
+
raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
|
96
96
|
end
|
97
97
|
end
|
98
98
|
|
99
99
|
# Gets handles for projects of a project group.
|
100
100
|
# Parameters: projectGroupHandle: Handle for the project group.
|
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=ProjectGroup_GetProjects
|
104
104
|
# @return [Hash] The body content of the SOAP response.
|
105
105
|
def self.get_projects
|
106
106
|
response = invoke('ProjectGroup_GetProjects') 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
|
|