|
@@ -17,6 +17,7 @@ import u8c.ui.mm.action.OperationReturnFromCardToListAction;
|
|
|
import u8c.ui.mm.action.OperationSaveAction;
|
|
|
import u8c.ui.mm.action.OperationUnApproveAction;
|
|
|
import u8c.ui.mm.action.PushParybillAction;
|
|
|
+import u8c.ui.mm.action.PushTranstCGAction;
|
|
|
import u8c.ui.mm.action.PushTranstorAction;
|
|
|
import u8c.ui.mm.action.YsAction;
|
|
|
import u8c.ui.mm.datamodel.OperationDataModel;
|
|
@@ -43,6 +44,8 @@ public class OperationTestUI extends FrameUI{
|
|
|
getBtnManager().addButtonByID(AbstractBtnReg.USERBTN_YS);
|
|
|
getBtnManager().addButtonByID(AbstractBtnReg.USERBTN_PUSHPARYBILL);//生成请购单
|
|
|
getBtnManager().addButtonByID(AbstractBtnReg.USERBTN_PUSHTRANSTOR);//生成转库单
|
|
|
+ getBtnManager().addButtonByID(AbstractBtnReg.USERBTN_PUSHTOCG);//采购页签
|
|
|
+
|
|
|
|
|
|
getBtnManager().regCmd(AbstractBtnReg.SYSBTN_EDIT, new OperationEditAction(this));
|
|
|
getBtnManager().regCmd(AbstractBtnReg.SYSBTN_DELETE, new OperationDeleteAction(this));
|
|
@@ -57,6 +60,7 @@ public class OperationTestUI extends FrameUI{
|
|
|
getBtnManager().regCmd(AbstractBtnReg.USERBTN_YS, new YsAction(this));
|
|
|
getBtnManager().regCmd(AbstractBtnReg.USERBTN_PUSHPARYBILL, new PushParybillAction(this));
|
|
|
getBtnManager().regCmd(AbstractBtnReg.USERBTN_PUSHTRANSTOR, new PushTranstorAction(this));
|
|
|
+ getBtnManager().regCmd(AbstractBtnReg.USERBTN_PUSHTOCG, new PushTranstCGAction(this));
|
|
|
|
|
|
getBtnManager().adjustButtonOrder(new int[] {
|
|
|
AbstractBtnReg.SYSBTN_EDIT,
|
|
@@ -71,7 +75,8 @@ public class OperationTestUI extends FrameUI{
|
|
|
AbstractBtnReg.SYSBTN_EXPORT,
|
|
|
AbstractBtnReg.USERBTN_YS,
|
|
|
AbstractBtnReg.USERBTN_PUSHPARYBILL,
|
|
|
- AbstractBtnReg.USERBTN_PUSHTRANSTOR
|
|
|
+ AbstractBtnReg.USERBTN_PUSHTRANSTOR,
|
|
|
+ AbstractBtnReg.USERBTN_PUSHTOCG
|
|
|
});
|
|
|
}
|
|
|
|