|
@@ -549,8 +549,8 @@ module.exports = app => {
|
|
|
}, function (gatherNode, sourceNode) {
|
|
|
const posRange = pos.getLedgerPos(sourceNode.id);
|
|
|
if (!posRange || posRange.length === 0) return;
|
|
|
- resultPos.loadGatherPos(posRange, (gatherPos, sourcePos) => {
|
|
|
- gatherUtils.gatherPos(gatherPos, sourcePos, 'ts_' + sKey + '_', helper);
|
|
|
+ resultPos.loadGatherPos(gatherNode.id, posRange, (gatherPos, sourcePos) => {
|
|
|
+ gatherUtils.gatherSpecialPos(gatherPos, sourcePos, 'ts_' + sKey + '_', helper);
|
|
|
});
|
|
|
});
|
|
|
}
|
|
@@ -566,7 +566,7 @@ module.exports = app => {
|
|
|
level: 'level',
|
|
|
rootId: -1
|
|
|
});
|
|
|
- this.resultPos = new Ledger.gatherPos(this.ctx, { id: 'id', ledgerId: 'lid' });
|
|
|
+ this.resultPos = new Ledger.gatherPos({ id: 'id', ledgerId: 'lid' });
|
|
|
|
|
|
const gsSetting = JSON.parse(gsDefine.setting);
|
|
|
let commonIndex = 0;
|