Results 1 to 3 of 3

Thread: Project - Search Facility

  1. #1
    matt.stannard is offline Sugar Community Member
    Join Date
    Apr 2010
    Posts
    57

    Default Project - Search Facility

    Hi there,

    We have our SugarCRM installation and I can do a search for projects using keywords and its fine, but if I use the Assigned User field I get no results despite projects being assinged to a user.

    How can I find what is going wrong?

    Many thanks

    M

  2. #2
    davidboris is offline Sugar Community Member
    Join Date
    May 2010
    Posts
    1,113

    Default Re: Project - Search Facility

    Hi,

    I confirmed by printing the query and seems it is wrong in Sugar.

    In your project's searchdefs.php there will be a code like

    PHP Code:
    'assigned_user_name' => 
          array (
            
    'type' => 'relate',
            
    'link' => 'users',
            
    'label' => 'LBL_ASSIGNED_USER_NAME',
            
    'width' => '10%',
            
    'default' => true,
            
    'name' => 'assigned_user_name',
          ), 
    Comment it and add the following

    PHP Code:
    'assigned_user_id' => 
          array (
            
    'name' => 'assigned_user_id',
            
    'type' => 'enum',
            
    'label' => 'LBL_ASSIGNED_TO',
            
    'function' => 
            array (
              
    'name' => 'get_user_array',
              
    'params' => 
              array (
                
    => false,
              ),
            ),
          ), 
    Thumbs up.

    Skype ID - david__boris

    SugarForge Projects:

    WYSIWYG now in studio!(Version 1.1 is out now!)

    Sugar Feeds on your personalized home pages like iGoogle, My Yahoo!, etc.

    Fab Tools! > Dashlet Not Followed Opportunities for past six Months

  3. #3
    davidboris is offline Sugar Community Member
    Join Date
    May 2010
    Posts
    1,113

    Default Re: Project - Search Facility

    Hi,

    To keep the item selected add following code to your projects SearchFields.php

    PHP Code:
    'assigned_user_id'=> array('query_type'=>'default'), 
    Thumbs up.

    Skype ID - david__boris

    SugarForge Projects:

    WYSIWYG now in studio!(Version 1.1 is out now!)

    Sugar Feeds on your personalized home pages like iGoogle, My Yahoo!, etc.

    Fab Tools! > Dashlet Not Followed Opportunities for past six Months

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. sms facility addon
    By yoshima in forum Help
    Replies: 5
    Last Post: 2009-04-01, 02:39 PM
  2. Replies: 0
    Last Post: 2008-08-21, 04:50 PM
  3. Reply to all facility
    By bpoultier in forum Feature Requests
    Replies: 0
    Last Post: 2007-01-01, 04:40 PM
  4. Test of similar thread search facility
    By andydreisch in forum Site feedback
    Replies: 0
    Last Post: 2006-12-26, 05:14 PM

Tags for this Thread

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
  •