Results 1 to 2 of 2

Thread: Problem with TeamsOS 3.3c

  1. #1
    Nuno is offline Sugar Community Member
    Join Date
    Mar 2007
    Posts
    12

    Default Problem with TeamsOS 3.3c

    I’m using SugarOS 4.5.1c and teamsOS 3.3c.

    When I try to save/create a task, meeting, call, note,…, , under bugs, cases…, I get this error


    Bugs
    Fatal error: TeamFormBase::require_once() [function.require]: Failed opening required '' (include_path='.;C:\php\pear') in c:\Inetpub\wwwroot\crm_451\modules\TeamsOS\TeamFor mBase.php on line 69


    How I get there:

    Bug tracker -> select a bug from list -> creat note -> full form -> save

    Thanks in advance for some help.

  2. #2
    joan.galvis is offline Sugar Community Member
    Join Date
    Jul 2007
    Posts
    14

    Talking Re: Problem with TeamsOS 3.3c

    Tuve el mismo problema con el TeamOS y la traduccion al español, lo solucione modificando el archivo TeamFormBase.php en el modulo TeamOS, la modificacion fue la siguiente:

    en la funcion

    function add_team_if_needed(&$bean, $event, $arguments)
    {
    include_once('include/modules.php');
    include_once('modules/TeamsOS/TeamOS.php');
    $teams_focus = new TeamOS;
    .....................

    .....................


    if($_REQUEST['module'] != $_REQUEST['return_module'] &&
    empty($_REQUEST['assigned_team_id_c']) &&
    !empty($_REQUEST['return_module']) &&
    $_REQUEST['return_module'] != "Activities" &&
    $_REQUEST['return_module'] != "Emails" &&
    $_REQUEST['module'] != "Emails"
    ) {

    $GLOBALS['log']->debug("SubPanel Save: Assigning Team to child object");

    if(!empty($bean->parent_type)) {
    $GLOBALS['log']->debug("SubPanel Save: Parent Type (".$_REQUEST['return_module'].")");
    $object_name = $app_list_strings['moduleListSingular'][$_REQUEST['return_module']];
    $GLOBALS['log']->debug("SubPanel Save: Parent Bean Name (".$object_name.")");

    if($object_name=="Case") {
    $object_name="aCase";
    }

    /** ESTA ES LA PARTE QUE SE DEBE AGREGAR ***/

    if($object_name=="Contacto"){
    $object_name="Contact";
    }

    if($object_name=="Proyecto"){
    $object_name="Project";
    }
    if($object_name=="Cuenta"){
    $object_name="Account";
    }
    if($object_name=="Oportunidad"){
    $object_name="Opportunity";
    }
    if($object_name=="Gestor de Incidencias"){
    $object_name="Bug";
    }

    $bean_name=$beanFiles[$object_name];

    if($object_name=="Caso"){
    $bean_name = "modules/Cases/Case.php";
    }

    /********************************************/

    ...............
    ...........
    AQUI EL RESTO DEL ARCHIVO SIN MODIFICAR.
    debes buscar el nombre del modulo correspodiente a la traduccion que estes usando para en este caso Contacto -> Contact y asi sucesivamente. Espero esto te pueda ayudar en algo.

    Joan Mauricio Galvis Ortiz
    Grupo JAD LTDA, Pereira, Colombia
    joan.galvis@grupojad.com.co

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 14
    Last Post: 2006-08-18, 04:07 PM
  2. strange field validation problem
    By arrigenna in forum Help
    Replies: 4
    Last Post: 2006-04-22, 11:45 AM
  3. Select "Account Name" charset problem
    By train in forum Help
    Replies: 0
    Last Post: 2006-04-12, 09:22 AM
  4. Email Attachment Problem
    By George in forum Developer Help
    Replies: 1
    Last Post: 2005-05-18, 05:33 PM
  5. Chart character problem
    By marvel in forum Help
    Replies: 3
    Last Post: 2005-03-25, 05:00 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
  •