金蝶bos 獲取標準產品分錄自帶按鈕的監聽及繫結的事件
阿新 • • 發佈:2018-11-11
protected void addLines() throws BOSException{
if(tabName != null && !tabName.equals("")){
ShipRepairedTypeCollection typeCon =
ShipRepairedTypeFactory.getRemoteInstance().getShipRepairedTypeCollection(
if (typeCon.size() != 0) {
//獲取監聽標準產品的分錄自帶的"增加","刪除"按鈕的監聽
ActionListener[] actionListeners = this.kdtEntrys_detailPanel.getAddNewLineButton().getActionListeners();
actionListeners[0].actionPerformed(null);//獲取監聽後按鈕的功能
kdtEntrys.getRow(kdtEntrys.getRowCount()-1).getCell("projectType").setValue(typeCon.get(0));
}
}
}