zthwr hai 1 ano
pai
achega
68e3050b70
Modificáronse 1 ficheiros con 14 adicións e 27 borrados
  1. 14 27
      mm/mm/src/client/u8c/ui/mm/panel/OperationTestUI.java

+ 14 - 27
mm/mm/src/client/u8c/ui/mm/panel/OperationTestUI.java

@@ -1,19 +1,13 @@
 package u8c.ui.mm.panel;
-
+import nc.ui.hr.frame.action.CancelAction;
 import nc.ui.hr.frame.FrameUI;
 import nc.ui.hr.frame.MainPanel;
 import nc.ui.hr.frame.TopPanel;
-import nc.ui.hr.frame.action.AddLineAction;
-import nc.ui.hr.frame.action.CancelAction;
-import nc.ui.hr.frame.action.DeleteLineAction;
-import nc.ui.hr.frame.action.EditLineAction;
 import nc.ui.hr.frame.action.RefreshAction;
-import nc.ui.hr.frame.action.ReturnFromCardToListAction;
 import nc.ui.hr.frame.bill.manage.ManageDataModel;
 import nc.ui.hr.frame.button.AbstractBtnReg;
 import nc.ui.hr.frame.button.BtnStateReg;
 import nc.ui.pub.bill.BillCardPanel;
-import u8c.ui.mm.action.OperationAddAction;
 import u8c.ui.mm.action.OperationApproveAction;
 import u8c.ui.mm.action.OperationDeleteAction;
 import u8c.ui.mm.action.OperationEditAction;
@@ -22,59 +16,51 @@ import u8c.ui.mm.action.OperationQueryAction;
 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.PushTranstorAction;
 import u8c.ui.mm.action.YsAction;
 import u8c.ui.mm.datamodel.OperationDataModel;
 import u8c.ui.mytest.button.MymmBtnStateReg;
 
-
 public class OperationTestUI extends FrameUI{
 
-	
 	protected void initialize(){
 		super.initialize();
 	}
 
 	@Override
 	protected void initButtons() {
-		
-		getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_ADD);
 		getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_EDIT);
 		getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_DELETE);
 		getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_QUERY);
 		getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_REFRESH);
 		getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_SAVE);
 		getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_CANCEL);
-		getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_ADD_LINE);
-		getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_DEL_LINE);
-		getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_EDIT_LINE);
 		getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_RETURN);
 		getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_EXAMINE);
 		getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_CANCELEXAMINE);
 		getBtnManager().addButtonByID(AbstractBtnReg.SYSBTN_EXPORT);
 		getBtnManager().addButtonByID(AbstractBtnReg.USERBTN_YS);
-		getBtnManager().regCmd(AbstractBtnReg.SYSBTN_ADD, new OperationAddAction(this));
+		getBtnManager().addButtonByID(AbstractBtnReg.USERBTN_PUSHPARYBILL);//生成请购单
+		getBtnManager().addButtonByID(AbstractBtnReg.USERBTN_PUSHTRANSTOR);//生成转库单
+		
 		getBtnManager().regCmd(AbstractBtnReg.SYSBTN_EDIT, new OperationEditAction(this));
 		getBtnManager().regCmd(AbstractBtnReg.SYSBTN_DELETE, new OperationDeleteAction(this));
-		getBtnManager().regCmd(AbstractBtnReg.SYSBTN_QUERY, new OperationQueryAction(this));
-		getBtnManager().regCmd(AbstractBtnReg.SYSBTN_REFRESH, new RefreshAction(this));
 		getBtnManager().regCmd(AbstractBtnReg.SYSBTN_SAVE, new OperationSaveAction(this));
 		getBtnManager().regCmd(AbstractBtnReg.SYSBTN_CANCEL, new CancelAction(this));
-		getBtnManager().regCmd(AbstractBtnReg.SYSBTN_ADD_LINE, new AddLineAction(this));
-		getBtnManager().regCmd(AbstractBtnReg.SYSBTN_EDIT_LINE, new EditLineAction(this));		
-		getBtnManager().regCmd(AbstractBtnReg.SYSBTN_DEL_LINE, new DeleteLineAction(this));
+		getBtnManager().regCmd(AbstractBtnReg.SYSBTN_QUERY, new OperationQueryAction(this));
+		getBtnManager().regCmd(AbstractBtnReg.SYSBTN_REFRESH, new RefreshAction(this));
 		getBtnManager().regCmd(AbstractBtnReg.SYSBTN_RETURN, new OperationReturnFromCardToListAction(this));
 		getBtnManager().regCmd(AbstractBtnReg.SYSBTN_EXAMINE, new OperationApproveAction(this));
 		getBtnManager().regCmd(AbstractBtnReg.SYSBTN_CANCELEXAMINE, new OperationUnApproveAction(this));
 		getBtnManager().regCmd(AbstractBtnReg.SYSBTN_EXPORT, new OperationExportAction(this));
 		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().adjustButtonOrder(new int[] {
-				AbstractBtnReg.SYSBTN_ADD,
 				AbstractBtnReg.SYSBTN_EDIT,
 				AbstractBtnReg.SYSBTN_DELETE,
-				AbstractBtnReg.SYSBTN_ADD_LINE,
-				AbstractBtnReg.SYSBTN_EDIT_LINE,
-				AbstractBtnReg.SYSBTN_DEL_LINE,
 				AbstractBtnReg.SYSBTN_QUERY,
 				AbstractBtnReg.SYSBTN_REFRESH, 
 				AbstractBtnReg.SYSBTN_SAVE,
@@ -83,9 +69,10 @@ public class OperationTestUI extends FrameUI{
 				AbstractBtnReg.SYSBTN_EXAMINE,
 				AbstractBtnReg.SYSBTN_CANCELEXAMINE,
 				AbstractBtnReg.SYSBTN_EXPORT,
-				AbstractBtnReg.USERBTN_YS
-				}
-				);
+				AbstractBtnReg.USERBTN_YS,
+				AbstractBtnReg.USERBTN_PUSHPARYBILL,
+				AbstractBtnReg.USERBTN_PUSHTRANSTOR
+				});
 	}
 	
 	@Override