累加功能_WeeklySuperAdditionEditUI.java

追加功能_WeeklySuperAdditionEditUI.java
/**
* 追加功能中的提交操作
*/
public void actionSuperAddition_actionPerformed(ActionEvent e)
throws Exception {
super.actionSuperAddition_actionPerformed(e);

verifyInput(e);

// Map hm = new HashMap();
hm = new HashMap();
hm.put("saveData", getData());
((IWeeklyPlanEntry) getBizInterface()).superAddition(hm);
tblMain.removeRows();
pkStartDate.setValue(null);
pkEndDate.setValue(null);

// 提交完成后自动关闭窗口
// SysUtil.abort();
}