Disable Recurring Invoice Information block in sales order - Printable Version +- CoreBOSBB (https://discussions.corebos.org) +-- Forum: Support (https://discussions.corebos.org/forumdisplay.php?fid=17) +--- Forum: Modules/Extension Support (https://discussions.corebos.org/forumdisplay.php?fid=9) +--- Thread: Disable Recurring Invoice Information block in sales order (/showthread.php?tid=155) |
Disable Recurring Invoice Information block in sales order - Shao - 06-02-2015 Is it possible to disable Recurring Invoice Information in sales order? I cant set fields to inactive. Second question: How to add date field to product list in sales order? We need "deadline" field for every single product. Thanks! RE: Disable Recurring Invoice Information block in sales order - joebordes - 06-02-2015 Hi, Please separate your two questions in two different threads, there is no relation between them. I will answer your first question here: To hide the recurring Invoice fields you have to go directly to the database, in the vtiger_field table change the "presence" column to 1 for those fields. What I did to test it:
Code: UPDATE `vtiger_field` SET presence=1 WHERE block=85
RE: Disable Recurring Invoice Information block in sales order - Shao - 06-02-2015 THANK YOU!!! Its working RE: Disable Recurring Invoice Information block in sales order - joebordes - 06-02-2015 |