Carl Hicks

Results 76 comments of Carl Hicks

Confirmed this is an issue in 6.1.4: get_relationships doesn't return custom fields even when you ask for them specifically. I added a custom field (pet_name_c) to the Accounts module, then...

Are you running 5.5.0 or 5.5.1? I can try it as well.

If your bug isn't fixed, you can probably submit this as a pull request to SugarCRM CE!

No eager loading at this time. We could probably implement it if you wanted, but I haven't had a use for it yet :) Passing a block to a collection...

You can query the relationship fields (to figure out what to pass in get_entry) with: ``` SugarCRM::Contact.new.associations.each {|a| puts a.target.to_s + ": " + a.link_field + " => " +...

Yeah, I don't think we parse the contents of the :link_fields result set right now. That would have to be added as part of this. If you feel like getting...

Yeah, for the record I'm not trying to con you into making code changes - you just seem knowledgeable enough that it might be an interesting opportunity :)

Sweet! Let us know if you need help with the code