IDEMPIERE-2064 Implement toolbar+tab button / show all DocAction buttons in trx windows in toolbar and window (useful to have the docaction button always reachable even if the button is at the bottom of the document - no need to scroll)
This commit is contained in:
parent
c600cea235
commit
fb48e96904
|
@ -0,0 +1,26 @@
|
|||
-- IDEMPIERE-2064 Show all DocAction button in trx windows in toolbar and window
|
||||
update ad_column set istoolbarbutton='B' where ad_column_id in (
|
||||
1789,
|
||||
2171,
|
||||
3495,
|
||||
4324,
|
||||
5497,
|
||||
10797,
|
||||
11480,
|
||||
12076,
|
||||
12120,
|
||||
12282,
|
||||
12319,
|
||||
12330,
|
||||
12412,
|
||||
12449,
|
||||
12461,
|
||||
59447,
|
||||
59452,
|
||||
59480,
|
||||
210983)
|
||||
;
|
||||
|
||||
SELECT register_migration_script('201602191721_IDEMPIERE-2064.sql') FROM dual
|
||||
;
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
-- IDEMPIERE-2064 Show all DocAction button in trx windows in toolbar and window
|
||||
update ad_column set istoolbarbutton='B' where ad_column_id in (
|
||||
1789,
|
||||
2171,
|
||||
3495,
|
||||
4324,
|
||||
5497,
|
||||
10797,
|
||||
11480,
|
||||
12076,
|
||||
12120,
|
||||
12282,
|
||||
12319,
|
||||
12330,
|
||||
12412,
|
||||
12449,
|
||||
12461,
|
||||
59447,
|
||||
59452,
|
||||
59480,
|
||||
210983)
|
||||
;
|
||||
|
||||
SELECT register_migration_script('201602191721_IDEMPIERE-2064.sql') FROM dual
|
||||
;
|
||||
|
Loading…
Reference in New Issue