David Sulc

Results 22 comments of David Sulc

Thanks for the pull request! I'll leave it unmerged for now, so the code in the repo matches the blog post, but readers can see this branch with new library...

FYI it seems this in an upstream issue: https://github.com/jlouis/fuse/issues/28

Ah, ok. It'd be cool if we can create documents (and upload the file) in one call, but at least the work around makes it possible.

Yeah, I finally got around to submitting bugs for the REST API. I'm probably on a dart board somewhere in the Sugar office ;-)

Happens here, too. Seems like a SugarCRM issue: `SugarCRM.connection.get_fields("Opportunities")` returns `closed_date` as required, even though it's possible to create an opportunity in the GUI with a blank date_closed...

I'll have to check at work where I have 5.5 installed, but I'm pretty sure it returns custom fields.

I can't recall. I'll have to check tomorrow...

I can confirm that this is a regression: it works correctly on 5.5.1RC2 (Build 1175) Git bisect for the win !

Neat. Can you let them know that SugarCRM bug 43342 is probably a duplicate (meaning they can close it at the same time) ?

Hi, You might want to try using blocks, like this: ``` SugarCRM::Contacts.all{|c| c.accounts.each{|a| puts "account name is #{a.name}" } } ``` The syntax is a little peculiar, so I'll clarify...