Results 1 to 3 of 3

Thread: default times for Calls

  1. #1
    beuten is offline Sugar Community Member
    Join Date
    May 2006
    Location
    Berlin, Germany
    Posts
    151

    Default default times for Calls

    Can anyone tell me where I can set the default time for a call.

    I noticed that if I create a new call from the shortcut list, the default time is 15 minutes. Great, that is acceptable. But, if I create a call from under a specific contact, the default is 1 hour.

    I don't know about the rest of you, but I would be bankrupt if every call I made was 1 hour long!
    Chad (beuten)
    DAXTEN
    www.daxten.com

  2. #2
    alexist is offline Member
    Join Date
    Feb 2006
    Posts
    6

    Default Re: default times for Calls

    Hello,

    I have the same problem here on my 4.5f version of SugarCRM. How to set the default call duration where creating a call from a contact to 15min???

    In previous version it used to work : default was 15 min.

    Thanks a lot!

  3. #3
    simple is offline Sugar Community Member
    Join Date
    Jul 2005
    Posts
    259

    Default Re: default times for Calls

    Hi

    edit the file modules/Calls/CallsQuickCreate.php and change the following:
    Code:
                    if (!isset ($focus->duration_hours))
                        $focus->duration_hours = "1";
    to:
    Code:
                    //if (!isset ($focus->duration_hours))
                    //    $focus->duration_hours = "1";
                    if (!isset ($focus->duration_minutes))
                        $focus->duration_minutes = "15";
    Should work on 4.5.0f
    Cheers Pascal
    Simplicity GmbH

Thread Information

Users Browsing this Thread

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

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
  •