IDEMPIERE-13 Workflows not appearing
This commit is contained in:
parent
a3e44fc923
commit
44b65c5eb5
|
@ -0,0 +1,10 @@
|
|||
-- May 28, 2012 3:21:04 PM MYT
|
||||
-- IDEMPIERE-13 Workflows not appearing
|
||||
UPDATE AD_WF_Node Set XPosition=0, YPosition=0;
|
||||
|
||||
UPDATE AD_System
|
||||
SET LastMigrationScriptApplied='843_IDEMPIERE-13.sql'
|
||||
WHERE LastMigrationScriptApplied<'843_IDEMPIERE-13.sql'
|
||||
OR LastMigrationScriptApplied IS NULL
|
||||
;
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
-- May 28, 2012 3:21:04 PM MYT
|
||||
-- IDEMPIERE-13 Workflows not appearing
|
||||
UPDATE AD_WF_Node Set XPosition=0, YPosition=0;
|
||||
|
||||
UPDATE AD_System
|
||||
SET LastMigrationScriptApplied='843_IDEMPIERE-13.sql'
|
||||
WHERE LastMigrationScriptApplied<'843_IDEMPIERE-13.sql'
|
||||
OR LastMigrationScriptApplied IS NULL
|
||||
;
|
||||
|
|
@ -112,8 +112,11 @@ public class WFPanel extends Borderlayout implements EventListener
|
|||
|
||||
South south = new South();
|
||||
this.appendChild(south);
|
||||
south.appendChild(infoTextPane);
|
||||
south.setHeight("15%");
|
||||
Div div = new Div();
|
||||
div.setStyle("width:100%; height: 100%");
|
||||
div.appendChild(infoTextPane);
|
||||
south.appendChild(div);
|
||||
south.setHeight("25%");
|
||||
south.setSplittable(true);
|
||||
south.setCollapsible(true);
|
||||
south.setAutoscroll(true);
|
||||
|
|
Loading…
Reference in New Issue