|
@@ -1065,6 +1065,7 @@ $(document).ready(() => {
|
|
|
}
|
|
|
}
|
|
|
billsTreeSpreadObj.refreshOperationValid(mainSheet);
|
|
|
+ billsSpread.focus();
|
|
|
posSpreadObj.loadCurPosData();
|
|
|
});
|
|
|
});
|
|
@@ -1135,6 +1136,8 @@ $(document).ready(() => {
|
|
|
mainSheet.setSelection(mainTree.nodes.indexOf(refreshData.create[0]), sel.col, sel.rowCount, sel.colCount);
|
|
|
}
|
|
|
billsTreeSpreadObj.refreshOperationValid(mainSheet);
|
|
|
+ billsSpread.focus();
|
|
|
+ posSpreadObj.loadCurPosData();
|
|
|
});
|
|
|
});
|
|
|
}
|
|
@@ -1233,11 +1236,12 @@ $(document).ready(() => {
|
|
|
qdSheet.setRowCount(count);
|
|
|
qdSheet.getCell(sel.row + 1, 0, GC.Spread.Sheets.SheetArea.rowHeader).text('节点' + count);
|
|
|
|
|
|
- const colCount = posSheet.getColumnCount() + 1
|
|
|
+ const colCount = posSheet.getColumnCount() + 1;
|
|
|
posSheet.setColumnCount(colCount);
|
|
|
posSheet.getCell(0, colCount - 1, GC.Spread.Sheets.SheetArea.colHeader).text('数量' + count);
|
|
|
}
|
|
|
qdSheet.setSelection(sel.row + 1, sel.col, 1, 1);
|
|
|
+ qdSheet.getParent().focus();
|
|
|
});
|
|
|
|
|
|
this.obj.bind('shown.bs.modal', function () {
|