Topic: Remove manufacturing and dimension modules,

Hello,

I am trying to remove manufacturing and dimension module from menu. Is there any option to do this or any change in code to hide them from users?

Thanks,
Vishwajeet

2 (edited by apmuthu 02/11/2016 05:28:20 pm)

Re: Remove manufacturing and dimension modules,

Comment out the following lines 18, 19, 80 & 81 in frontaccounting.php:

..
..
//    include_once($path_to_root . '/applications/manufacturing.php');
//    include_once($path_to_root . '/applications/dimensions.php');
..
..
//            $this->add_application(new manufacturing_app());
//            $this->add_application(new dimensions_app());
..
..

Re: Remove manufacturing and dimension modules,

Hi,

Thanks for your help. It hides those menu items. smile

Re: Remove manufacturing and dimension modules,

Hi,Thanks for the great input. I have a question here.
This will be reflected in all the companies, i need to do this in only one company where its not needed.
Is this possible ?

Re: Remove manufacturing and dimension modules,

You can use the company number in an if statement to prevent it's inclusion / execution for the specific company you want to suppress it for. The currently logged in company should be in the session.