/**
* 下推按钮
*/
public void actionUpTrace_actionPerformed(ActionEvent e) throws Exception {
ArrayList idList = new ArrayList();
List entriesKey = new ArrayList();
ArrayList blocks = this.tblMain.getSelectManager().getBlocks();
Iterator iter = blocks.iterator();
while(iter.hasNext()){
KDTSelectBlock block = (KDTSelectBlock)iter.next();
int top = block.getTop();
int bottom = block.getBottom();
for (int rowIndex = top; rowIndex <= bottom; ++rowIndex){
ICell cell = this.tblMain.getRow(rowIndex).getCell(getKeyFieldName());
if ((this.tblMain.getRow(rowIndex).getCell(getEntriesPKName()) != null) && (this.tblMain.getRow(rowIndex).getCell(getEntriesPKName()).getValue() != null)){
//获取分录id
entriesKey.add(this.tblMain.getRow(rowIndex).getCell(getEntriesPKName()).getValue().toSt
EAS Botp下推(不展示选择界面)
最新推荐文章于 2022-12-04 14:15:45 发布