module Ruconomic::API::ProjectGroup

Public Class Methods

find_by_name() click to toggle source

Returns handles for all project groups with a given name.

@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=ProjectGroup_FindByName @return [Hash] The body content of the SOAP response.

# File lib/ruconomic/api/project_group.rb, line 93
def self.find_by_name
  response = invoke('ProjectGroup_FindByName') do |message|
    raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
  end
end
find_by_number() click to toggle source

Returns handles for the project group with a given number.

@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=ProjectGroup_FindByNumber @return [Hash] The body content of the SOAP response.

# File lib/ruconomic/api/project_group.rb, line 70
def self.find_by_number
  response = invoke('ProjectGroup_FindByNumber') do |message|
    raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
  end
end
find_by_number_list() click to toggle source

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. Parameters: numbers: The numbers to search for.

@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=ProjectGroup_FindByNumberList @return [Hash] The body content of the SOAP response.

# File lib/ruconomic/api/project_group.rb, line 82
def self.find_by_number_list
  response = invoke('ProjectGroup_FindByNumberList') do |message|
    raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
  end
end
get_all() click to toggle source

Returns handles for all project groups.

@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=ProjectGroup_GetAll @return [Hash] The body content of the SOAP response.

# File lib/ruconomic/api/project_group.rb, line 59
def self.get_all
  response = invoke('ProjectGroup_GetAll') do |message|
    raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
  end
end
get_data() click to toggle source

Returns a project group data object for a given project group. Parameters: entityHandle: A handle for the project group.

@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=ProjectGroup_GetData @return [Hash] The body content of the SOAP response.

# File lib/ruconomic/api/project_group.rb, line 12
def self.get_data
  response = invoke('ProjectGroup_GetData') do |message|
    raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
  end
end
get_data_array() click to toggle source

Returns project group data objects for a given set of project group handles. Parameters: entityHandles: An array of the project group handles.

@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=ProjectGroup_GetDataArray @return [Hash] The body content of the SOAP response.

# File lib/ruconomic/api/project_group.rb, line 24
def self.get_data_array
  response = invoke('ProjectGroup_GetDataArray') do |message|
    raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
  end
end
get_name() click to toggle source

Get the name of a project group. Parameters: projectGroupHandle: Handle for the project group.

@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=ProjectGroup_GetName @return [Hash] The body content of the SOAP response.

# File lib/ruconomic/api/project_group.rb, line 48
def self.get_name
  response = invoke('ProjectGroup_GetName') do |message|
    raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
  end
end
get_number() click to toggle source

Get the number of a project group. Parameters: projectGroupHandle: Handle for the project group.

@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=ProjectGroup_GetNumber @return [Hash] The body content of the SOAP response.

# File lib/ruconomic/api/project_group.rb, line 36
def self.get_number
  response = invoke('ProjectGroup_GetNumber') do |message|
    raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
  end
end
get_projects() click to toggle source

Gets handles for projects of a project group. Parameters: projectGroupHandle: Handle for the project group.

@note TODO: This method was autogenerated from the WSDL - see github.com/coherify/ruconomic#contributing“ @see api.e-conomic.com/secure/api1/EconomicWebService.asmx?op=ProjectGroup_GetProjects @return [Hash] The body content of the SOAP response.

# File lib/ruconomic/api/project_group.rb, line 105
def self.get_projects
  response = invoke('ProjectGroup_GetProjects') do |message|
    raise "TODO: This method was autogenerated from the WSDL - see https://github.com/coherify/ruconomic#contributing"
  end
end