CoreBOSBB
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:
  • go to database, vtiger_block table, search on tabid = 22 which is SalesOrder, I see that the recurring invoice block is 85 (in MY install, it may not be in yours)
  • go to vtiger_field table, search for block = 85, I confirm that those are the 6 fields I want to hide
  • launch this SQL:
Code:
UPDATE `vtiger_field` SET presence=1 WHERE block=85
  • edit and save a SO to make sure it is working and the fields aren't there



RE: Disable Recurring Invoice Information block in sales order - Shao - 06-02-2015

THANK YOU!!! Its working Smile


RE: Disable Recurring Invoice Information block in sales order - joebordes - 06-02-2015

Smile