Results 1 to 2 of 2

Thread: Create a Case from a Call, or Attach a Call to a Case

  1. #1
    chrislynch8's Avatar
    chrislynch8 is offline Sugar Community Member
    Join Date
    Oct 2007
    Location
    Cork, Ireland
    Posts
    747

    Default Create a Case from a Call, or Attach a Call to a Case

    Hi,

    I wish to create Cases from Calls, and or link existing Call records to a Case?

    This is not something that is done by default (which seems odd), how is this possible? I am using 5.0.0i

    Rgds
    Chris

  2. #2
    eggsurplus's Avatar
    eggsurplus is offline Sugar Community Member
    Join Date
    Dec 2005
    Location
    Minnesota
    Posts
    2,343

    Default Re: Create a Case from a Call, or Attach a Call to a Case

    Since you can create or attach calls to a case from the case side you should be able to do this. You'll need to add a case subpanel to the calls module. Create a file in custom\Extension\modules\Cases\Ext\Layoutdefs\ and call it something like chris.php. Inside the file add the subpanel definition (I haven't tested this exact case so there may need to be a tweak or two. I have got it to work in other modules):

    PHP Code:
    <?php

    $layout_defs
    ['Leads']['subpanel_setup']['cases'] = array(
        
    'order' => 25,
        
    'module' => 'Cases',
        
    'sort_order' => 'asc',
        
    'sort_by' => 'name',
        
    'subpanel_name' => 'default',
        
    'get_subpanel_data' => 'cases',
        
    'title_key' => 'LBL_CASES_SUBPANEL_TITLE',
        
    'top_buttons' => array(
            array(
    'widget_class' => 'SubPanelTopButtonQuickCreate'),
            array(
    'widget_class' => 'SubPanelTopSelectButton''mode'=>'MultiSelect')
        ),
    );

    ?>

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Automatically email Case Resolution Notes on Case Closed
    By Tayler in forum Feature Requests
    Replies: 7
    Last Post: 2009-10-02, 10:59 AM
  2. file not found errors in link for Case in case tasks.
    By jenjen in forum Installation and Upgrade Help
    Replies: 0
    Last Post: 2009-01-29, 02:15 PM
  3. How to attach solution to a case.
    By darmstrong in forum Customer Support
    Replies: 2
    Last Post: 2007-07-13, 12:25 PM
  4. Web Service call to Create Case always returns 0
    By markellul in forum Developer Help
    Replies: 4
    Last Post: 2007-06-19, 09:49 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
  •