Results 1 to 7 of 7

Thread: Contacts->Calls subpanel

  1. #1
    kbrill's Avatar
    kbrill is offline SugarCRM PS Engineer
    Join Date
    Jul 2004
    Location
    St Louis, MO
    Posts
    3,183

    Default Contacts->Calls subpanel

    Has anyone else seen this

    1)Pull up a Contact DetailView.
    2)Go to the activities subpanel and click on Create Call
    3)Create a call

    Go look at the call and see that it is assigned to the Account the contact belongs to and NOT the contact itself?

    If at step 3 you press FULL FORM you see that the call is assigned to a non-existent Opportunity?
    Kenneth Brill - Help Forum Moderator

    I do not respond to 'Private Messages'. Please email me directly instead

    When asking for help, PLEASE give us your Server Information and Version Numbers as asked for on the 'Post New Message' screen as well as any JavaScript errors shown at the bottom of the browser window.
    Help us Help You

  2. #2
    poupoulux is offline Junior Member
    Join Date
    Jan 2007
    Posts
    3

    Default Re: Contacts->Calls subpanel

    Hello,

    I always go through the full for to assign to other users and it is doing the same to me: Assign to the account and not to the contact.

    Same thing for the call, more boring because it doesn't assign to anybody, you must select the contact with the popup ( also with the full form).


    Is there anything to do ?

    Philippe

  3. #3
    poupoulux is offline Junior Member
    Join Date
    Jan 2007
    Posts
    3

    Default Re: Contacts->Calls subpanel

    i

    I have the solution from the guy who's name is KML on crm-france forum (the french forum for sugar CRM) :

    you must change the following file:
    include\generic\SugarWidgets\SugarWidgetSubPanelTo pScheduleMeetingButton.php
    on the line 96 :

    CODE
    // TODO: move this out and get $additionalFormFields working properly
    if(empty($additionalFormFields['parent_type']))
    {
    if($defines['focus']->object_name=='Contact') {
    $additionalFormFields['parent_type'] = 'Accounts';
    }
    you put this instead:
    CODE
    // TODO: move this out and get $additionalFormFields working properly
    if(empty($additionalFormFields['parent_type']))
    {
    if($defines['focus']->object_name=='Contact') {
    $additionalFormFields['parent_type'] = 'Contacts';
    $additionalFormFields['parent_name'] = $defines['focus']->name;
    $additionalFormFields['parent_id'] = $defines['focus']->id;
    }

    And it'is working!

    Philippe
    Last edited by poupoulux; 2007-02-02 at 02:58 PM.

  4. #4
    poupoulux is offline Junior Member
    Join Date
    Jan 2007
    Posts
    3

    Default Re: Contacts->Calls subpanel

    sorry it was for the meetings you must do the same in
    include\generic\SugarWidgets\SugarWidgetSubPanelTo pScheduleCallbutton.php

    for the calls
    Philippe

  5. #5
    salesagility's Avatar
    salesagility is offline Sugar Community Member
    Join Date
    Aug 2006
    Location
    UK
    Posts
    2,379

    Default Re: Contacts->Calls subpanel

    Mmmmm ..... this is VERY aggravating

    If a Contact is not linked to an Account, when you schedule a call to the contact in Full Form, it won't complete unless the contact is selected ..... even though the call was scheduled through the Contact Activities Sub Panel.

    However, if the call is entered using the quick form invoked from the sub panel, it works perfectly ...

    Will submit bug report methinks

  6. #6
    salesagility's Avatar
    salesagility is offline Sugar Community Member
    Join Date
    Aug 2006
    Location
    UK
    Posts
    2,379

    Default Re: Contacts->Calls subpanel

    Bug number 11282 ... close to problem but doesn't quite encapsulate

  7. #7
    salesagility's Avatar
    salesagility is offline Sugar Community Member
    Join Date
    Aug 2006
    Location
    UK
    Posts
    2,379

    Default Re: Contacts->Calls subpanel

    Bug 11385 for fuller description

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. delete Leads subpanel from contacts
    By aksana in forum Developer Help
    Replies: 1
    Last Post: 2006-11-22, 06:35 AM
  2. Replies: 11
    Last Post: 2006-10-26, 01:13 PM
  3. Replies: 2
    Last Post: 2006-07-30, 01:34 AM
  4. Replies: 3
    Last Post: 2006-07-18, 10:22 AM
  5. Campaign subpanel in Contacts detail view
    By therapyselect in forum Help
    Replies: 2
    Last Post: 2006-05-25, 04:33 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •