|
@@ -21,6 +21,7 @@ import u8c.ui.mytest.action.DemandDeleteAction;
|
|
|
import u8c.ui.mytest.action.DemandEditAction;
|
|
|
import u8c.ui.mytest.action.DemandExportAction;
|
|
|
import u8c.ui.mytest.action.DemandImportAction;
|
|
|
+import u8c.ui.mytest.action.DemandPurchaseRequisitionAction;
|
|
|
import u8c.ui.mytest.action.DemandQueryAction;
|
|
|
import u8c.ui.mytest.action.DemandReturnFromCardToListAction;
|
|
|
import u8c.ui.mytest.action.DemandSaveAction;
|
|
@@ -36,7 +37,7 @@ public class DemandTestUI extends FrameUI{
|
|
|
|
|
|
@Override
|
|
|
protected void initButtons() {
|
|
|
- // 鍒濆�鍖栨寜閽�
|
|
|
+ // 初始化按钮
|
|
|
getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_ADD);
|
|
|
getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_EDIT);
|
|
|
getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_DELETE);
|
|
@@ -53,12 +54,13 @@ public class DemandTestUI extends FrameUI{
|
|
|
// getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_EXPORT);
|
|
|
// getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_IMPORT);
|
|
|
// getBtnManager().addButtonByID(AbstractBtnReg.USERBTN_ADDPRAYBILL);
|
|
|
- getBtnManager().addButtonByID(AbstractBtnReg.USERBTN_boExportImport); //瀵煎叆/瀵煎嚭
|
|
|
+ getBtnManager().addButtonByID(AbstractBtnReg.USERBTN_boExportImport); //导入/导出
|
|
|
getBtnManager().addChildButtonsByIDs(AbstractBtnReg.USERBTN_boExportImport ,
|
|
|
new int []{AbstractBtnReg.SYSBTN_EXPORT,AbstractBtnReg.SYSBTN_IMPORT});
|
|
|
getBtnManager().addButtonByID(AbstractBtnReg.USERBTN_ClOSE);
|
|
|
+ getBtnManager().addButtonByID(AbstractBtnReg.USERBTN_PURCHASEREQUISITION);
|
|
|
|
|
|
- // 閰嶇疆鎸夐挳鍔ㄤ綔绫�
|
|
|
+ // 配置按钮动作类
|
|
|
getBtnManager().regCmd(AbstractBtnReg.SYSBTN_ADD, new DemandAddAction(this));
|
|
|
getBtnManager().regCmd(AbstractBtnReg.SYSBTN_EDIT, new DemandEditAction(this));
|
|
|
getBtnManager().regCmd(AbstractBtnReg.SYSBTN_DELETE, new DemandDeleteAction(this));
|
|
@@ -76,10 +78,10 @@ public class DemandTestUI extends FrameUI{
|
|
|
getBtnManager().regCmd(AbstractBtnReg.SYSBTN_IMPORT, new DemandImportAction(this));
|
|
|
// getBtnManager().regCmd(AbstractBtnReg.USERBTN_ADDPRAYBILL, new AddPraybillAction(this));
|
|
|
getBtnManager().regCmd(AbstractBtnReg.USERBTN_ClOSE, new DemandCloseAction(this));
|
|
|
-
|
|
|
+ getBtnManager().regCmd(AbstractBtnReg.USERBTN_PURCHASEREQUISITION, new DemandPurchaseRequisitionAction(this));
|
|
|
|
|
|
|
|
|
- // 鎸夐挳鎺掑簭
|
|
|
+ // 按钮排序
|
|
|
getBtnManager().adjustButtonOrder(new int[] {
|
|
|
AbstractBtnReg.SYSBTN_ADD,
|
|
|
AbstractBtnReg.SYSBTN_EDIT,
|
|
@@ -98,7 +100,8 @@ public class DemandTestUI extends FrameUI{
|
|
|
AbstractBtnReg.SYSBTN_IMPORT,
|
|
|
AbstractBtnReg.USERBTN_boExportImport,
|
|
|
// AbstractBtnReg.USERBTN_ADDPRAYBILL
|
|
|
- AbstractBtnReg.USERBTN_ClOSE
|
|
|
+ AbstractBtnReg.USERBTN_ClOSE,
|
|
|
+ AbstractBtnReg.USERBTN_PURCHASEREQUISITION
|
|
|
});
|
|
|
}
|
|
|
|