How to put a serial/pholio numer to the opportunities created?

Hello DevGods, my name is Angel and I´m new in Sugar. I was wondering if there is a way to get every Opportunity once saved to tag itself. 

Example: I make my first opportunity and I want to "tag" that Opportunity with the first letter of the Business Center, the year when it was made, the first letter of first and last name, plus the numer of the Opportunity. It would look something like: M20AR0001, where the "M" stands for Mexico, the "20" for the year created, "A" for Angel (first name) "R" for Ruiz (last name) and the "0001" for the number of the Opportunity, once saved that numer will identify my Opportunity to make it searchable easier. The next Opportunity created when saved should be tagged as M20AR0002, and so on. 

Please if anyone could help me I will be absolutely grateful and in debt.

Thanks in advance.

Parents
  • Hi

    Once the Number of the Opportunity will be defined in the db layer (perhaps as an autoincrement field), then you should set such calculated field in a logic_hook after_save.

    The logic hook code may looks like that:

    Fullscreen
    1
    2
    3
    function setTag(SugarBean $bean, string $event, array $arguments) {
    $bean->tag_c = substr($bean->business_center_name, 0, 1) . date('y') . substr($GLOBALS['current_user']->first_name, 0, 1) . . substr($GLOBALS['current_user']->last_name, 0, 1) . $bean->opp_num_c;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Regards

    André Lopes
    Lampada Global
    Skype: andre.lampada
  • Thank you so much for the helping hand! I really appreciate that you took the time to write that down, it is really helpful! 

Reply Children
No Data