module SugarCRM; class Connection # Retrieve a list of SugarBeans by ID. This method will not # work with the report module. def get_entries(module_name, ids, opts={}) login! unless logged_in? options = { :fields => [], :link_fields => [], }.merge! opts json = <<-EOF { "session": "#{@sugar_session_id}", "module_name": "#{module_name}", "ids": #{ids.to_json}, "select_fields": #{resolve_fields(module_name, options[:fields])}, "link_name_to_fields_array": #{options[:link_fields].to_json} } EOF json.gsub!(/^\s{6}/,'') SugarCRM::Response.handle(send!(:get_entries, json), @session) end end; end