Can I hide the Product Catalog And Quick Pick Product Catalog Dashlets from Opportunity creation right panel ?

Hello,

My customer is not using the revenue line item ; so the product's dashlet are useless for him.

I can easily remove them from the standard dashboards ; but, during the opportunity creation, Sugar always display the Product Catalog and Quick Pick Dashlet.

Is there an easy settings to remove them or do I have to edit the code ?

Best regards,

Fred

Parents Reply
  • I think it is not a problem, you can override this file with the original code. This code is in the following file: modules / Opportunities / clients / base / layouts / create-preview / create-preview.php

    because if my customer move ahead and decide to start using RLI, we have to remove this code

    $viewdefs['Opportunities']['base']['layout']['create-preview'] = array(
        'components' => array(
            array(
                'view' => 'product-catalog',
                'context' => array(
                    'module' => 'Quotes',
                ),
            ),
            array(
                'view' => 'product-quick-picks',
                'context' => array(
                    'module' => 'Opportunities',
                ),
            ),
        ),
    );

    Kind regards

Children
No Data