| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345 | /** * (需使用 decimal.min.js, zh_calc.js) * * 构建pathTree * 可动态加载子节点,要求子节点获取接口按/xxx/get-children定义 * @param {Object} setting - 设置 * @returns {PathTree} */'use strict';const itemsPre = 'id_';class PosData {    /**     * 构造函数     * @param {id|Number, masterId|Number} setting     */    constructor (setting) {        // 无索引        this.datas = [];        // 以key为索引        this.items = {};        // 以分类id为索引的有序        this.ledgerPos = {};        // pos设置        this.setting = setting;    }    /**     * 加载部位明细数据     * @param datas     */    loadDatas(datas) {        this.datas = datas;        this.items = {};        this.ledgerPos = {};        for (const data of this.datas) {            const key = itemsPre + data[this.setting.id];            this.items[key] = data;            const masterKey = itemsPre + data[this.setting.ledgerId];            if (!this.ledgerPos[masterKey]) {                this.ledgerPos[masterKey] = [];            }            this.ledgerPos[masterKey].push(data);        }        for (const prop in this.ledgerPos) {            this.resortLedgerPos(this.ledgerPos[prop]);        }    }    /**     * 更新数据     * @param datas     */    updateDatas(data) {        const datas = data instanceof Array ? data : [data];        const result = { create: [], update: [] }, resort = [];        for (const d of datas) {            const key = itemsPre + d[this.setting.id];            if (!this.items[key]) {                this.datas.push(d);                this.items[key] = d;                const masterKey = itemsPre + d[this.setting.ledgerId];                if (!this.ledgerPos[masterKey]) {                    this.ledgerPos[masterKey] = [];                }                this.ledgerPos[masterKey].push(d);                result.create.push(d);            } else {                const pos = this.items[key];                for (const prop in d) {                    pos[prop] = d[prop];                }                result.update.push(pos);            }            const masterKey = itemsPre + d[this.setting.ledgerId];            if (resort.indexOf(masterKey) === -1) {                resort.push(masterKey);            }        }        for (const s of resort) {            this.resortLedgerPos(this.ledgerPos[s]);        }        return result;    }    /**     * 移除数据     * @param datas     */    removeDatas(data) {        if (!data) { return; }        const datas = data instanceof Array ? data : [data];        for (let i = datas.length - 1; i >= 0; i--) {            const id = datas[i];            const d = this.getPos(id);            this.datas.splice(this.datas.indexOf(d), 1);            const key = itemsPre + d[this.setting.id];            delete this.items[key];            const masterKey = itemsPre + d[this.setting.ledgerId];            const range = this.ledgerPos[masterKey];            range.splice(range.indexOf(d), 1);            if (range.length === 0) {                delete this.ledgerPos[masterKey];            }        }    }    /**     * 移除数据 - 根据分类id     * @param mid     */    removeDatasByMasterId (mid) {        const masterKey = itemsPre + mid;        const range = this.ledgerPos[masterKey];        if (range) {            delete this.ledgerPos[masterKey];            for (const r of range) {                this.datas.splice(this.datas.indexOf(r), 1);                const key = itemsPre + r[this.setting.id];                delete this.items[key];            }        }    }    getPos(id) {        return this.items[itemsPre + id];    }    getLedgerPos(mid) {        return this.ledgerPos[itemsPre + mid];    }    resortLedgerPos(ledgerPos) {        if (ledgerPos instanceof Array) {            ledgerPos.sort(function (a, b) {                return a.porder - b.porder;            })        }    }    /**     * 计算全部     */    calculateAll() {        if (!this.setting.calcFun) { return; }        for (const pos of this.datas) {            this.setting.calcFun(pos);        }    }}class StagePosData extends PosData {    loadStageData(datas, fieldPre, fields) {        if (!datas) { return; }        datas = datas instanceof Array ? datas : [datas];        const loadedData = [];        for (const data of datas) {            let node = this.getPos(data.pid);            if (node) {                for (const prop of fields) {                    if (data[prop] !== undefined) {                        node[fieldPre + prop] = data[prop];                    }                }                if (this.setting.calcFun) {                    this.setting.calcFun(node);                }                loadedData.push(node);            }        }    }    loadPreStageData(datas) {        this.loadStageData(datas, 'pre_', this.setting.updateFields);    }    loadCurStageData(datas) {        this.loadStageData(datas, '', this.setting.updateFields);    }}class MasterPosData extends PosData {    /**     * 构造函数     * @param {id|Number, masterId|Number} setting     */    constructor (setting) {        super(setting);        // 关联索引        this.masterItems = {};    }    /**     * 加载主数据     * @param datas     */    loadDatas (datas) {        super.loadDatas(datas);        // 清空旧数据        this.masterItems = {};        // minor数据缓存        this.minorData = {};        // 加载全部数据        for (const data of this.datas) {            const keyName = itemsPre + data[this.setting.masterId];            this.masterItems[keyName] = data;        }    }    /**     * 根据关联id,查找节点     * @param id     * @returns {*}     */    getMasterItems(id) {        return this.masterItems[itemsPre + id];    }    /**     * 加载关联数据     *     * @param {Array|Object}datas - 需要关联的数据     * @param {String} fieldPre - 关联字段前缀(关联结果)     * @param {Array} fields - 关联字段     * @returns {Array}     */    loadMinorData(datas, fieldSuf, fields) {        if (!datas) return;        datas = datas instanceof Array ? datas : [datas];        this.minorData[fieldSuf] = datas;        const loadedData = [];        for (const data of datas) {            let node = this.getMasterItems(data[this.setting.minorId]);            if (node) {                for (const prop of fields) {                    if (data[prop] !== undefined) {                        node[prop + fieldSuf] = data[prop];                    }                }                loadedData.push(node);            }        }        return loadedData;    }}const createNewPathTree = function (type, setting) {    class BaseTree {        /**         * 构造函数         */        constructor (setting) {            // 无索引            this.datas = [];            // 以key为索引            this.items = {};            // 以排序为索引            this.nodes = [];            // 根节点            this.children = [];            // 树设置            this.setting = setting;        }        /**         * 树结构根据显示排序         */        sortTreeNode (isResort) {            const self = this;            const addSortNodes = function (nodes) {                if (!nodes) { return }                for (let i = 0; i < nodes.length; i++) {                    self.nodes.push(nodes[i]);                    nodes[i].index = self.nodes.length - 1;                    if (!isResort) {                        nodes[i].children = self.getChildren(nodes[i]);                    } else {                        nodes[i].children.sort(function (a, b) {                            return a.order - b.order;                        })                    }                    addSortNodes(nodes[i].children);                }            };            this.nodes = [];            if (!isResort) {                this.children = this.getChildren();            } else {                this.children.sort(function (a, b) {                    return a.order - b.order;                })            }            addSortNodes(this.children);        }        /**         * 加载数据(初始化), 并给数据添加部分树结构必须数据         * @param datas         */        loadDatas (datas) {            // 清空旧数据            this.items = {};            this.nodes = [];            this.datas = [];            this.children = [];            // 加载全部数据            datas.sort(function (a, b) {                return a.level - b.level;            });            for (const data of datas) {                const keyName = itemsPre + data[this.setting.id];                if (!this.items[keyName]) {                    const item = JSON.parse(JSON.stringify(data));                    item.children = [];                    item.expanded = true;                    item.visible = true;                    this.items[keyName] = item;                    this.datas.push(item);                    if (item[setting.pid] === setting.rootId) {                        this.children.push(item);                    } else {                        const parent = this.getParent(item);                        if (parent) {                            parent.children.push(item);                        }                    }                }            }            this.children.sort(function (a, b) {                return a.order - b.order;            });            this.sortTreeNode(true);            if (this.setting.autoExpand >= 0) this.expandByLevel(this.setting.autoExpand);        }        getItemsByIndex(index) {            return this.nodes[index];        }        /**         * 根据id获取树结构节点数据         * @param {Number} id         * @returns {Object}         */        getItems (id) {            return this.items[itemsPre + id];        };        /**         * 查找node的parent         * @param {Object} node         * @returns {Object}         */        getParent (node) {            return this.getItems(node[this.setting.pid]);        };        getAllParents (node) {            const parents = [];            if (node.full_path && node.full_path !== '') {                const parentIds = node.full_path.split('-');                for (const id of parentIds) {                    if (id !== node[this.setting.id]) {                        parents.push(this.getItems(id));                    }                }            } else {                let vP = this.getParent(node);                while (vP) {                    parents.push(vP);                    vP = this.getParent(vP);                }            }            return parents;        }        /**         * 查找node的前兄弟节点         * @param node         * @returns {*}         */        getPreSiblingNode(node) {            if (!node) return null;            const parent = this.getParent(node);            const siblings = parent ? parent.children : this.children;            const index = siblings.indexOf(node);            return (index > 0) ? siblings[index - 1] : null;        }        /**         * 查找node的后兄弟节点         * @param node         * @returns {*}         */        getNextSiblingNode(node) {            const parent = this.getParent(node);            const siblings = parent ? parent.children : this.children;            const index = siblings.indexOf(node);            if (index >= 0 && index < siblings.length - 1) {                return siblings[index + 1];            } else {                return null;            }        }        /**         * 根据path查找完整节点         * @param {Number} path         */        getFullPathNodes (path) {            const self = this, ids = path.split('-');            if (ids.length > 0) {                return this.nodes.filter((x) => {                    return ids.indexOf('' + x[self.setting.id]) >= 0;                });            } else {                return [];            }        };        /**         * 查询node的已下载子节点         * @param {Object} node         * @returns {Array}         */        getChildren (node) {            const setting = this.setting;            const pid = node ? node[setting.id] : setting.rootId;            const children = this.datas.filter(function (x) {                return x[setting.pid] === pid;            });            children.sort(function (a, b) {                return a.order - b.order;            });            return children;        };        /**         * 递归方式 查询node的已下载的全部后代 (兼容full_path不存在的情况)         * @param node         * @returns {*}         * @private         */        _recursiveGetPosterity (node) {            let posterity = node.children;            for (const c of node.children) {                posterity = posterity.concat(this._recursiveGetPosterity(c));            }            return posterity;        };        /**         * 查询node的已下载的全部后代         * @param {Object} node         * @returns {Array}         */        getPosterity (node) {            if (node.full_path !== '') {                const reg = new RegExp('^' + node.full_path + '-');                return this.datas.filter(function (x) {                    return reg.test(x.full_path);                });            } else {                return this._recursiveGetPosterity(node);            }        };        /**         * 查询node是否是父节点的最后一个子节点         * @param {Object} node         * @returns {boolean}         */        isLastSibling (node) {            const siblings = this.getChildren(this.getParent(node));            return (siblings && siblings.length > 0) ?  node.order === siblings[siblings.length - 1].order : false;        };        /**         * 刷新子节点是否可见         * @param {Object} node         * @private         */        _refreshChildrenVisible (node) {            if (!node.children) {                node.children = this.getChildren(node);            }            if (node.children && node.children.length > 0) {                for (const child of node.children) {                    child.visible = node.expanded && node.visible;                    this._refreshChildrenVisible(child);                }            }        };        /**         * 设置节点是否展开, 并控制子节点可见         * @param {Object} node         * @param {Boolean} expanded         */        setExpanded (node, expanded) {            node.expanded = expanded;            this._refreshChildrenVisible(node);        };        /**         * 提取节点key和索引数据         * @param {Object} node - 节点         * @returns {key}         */        getNodeKeyData (node) {            const data = {};            for (const key of this.setting.keys) {                data[key] = node[key];            }            return data;        };        /**         * 得到树结构构成id         * @param node         * @returns {*}         */        getNodeKey (node) {            return node[this.setting.id];        };        /**         * 递归 设置节点展开状态         * @param {Array} nodes - 需要设置状态的节点         * @param {Object} parent - nodes的父节点         * @param {Function} checkFun - 判断节点展开状态的方法         * @private         */        _recursiveExpand(nodes, parent, checkFun) {            for (const node of nodes) {                node.expanded = checkFun(node);                node.visible = parent ? (parent.expanded && parent.visible) : true;                this._recursiveExpand(node.children, node, checkFun);            }        }        /**         * 自定义展开规则         * @param checkFun         */        expandByCustom(checkFun) {            this._recursiveExpand(this.children, null, checkFun);        }        /**         * 展开到第几层         * @param {Number} level - 展开层数         */        expandByLevel(level) {            this.expandByCustom(function (n) {                return n.level < level;            });        }        /**         * 自动展开节点node         * @param node         * @returns {*}         */        autoExpandNode(node) {            const parents = this.getAllParents(node);            const reload = [];            for (const p of parents) {                if (!p.expanded) {                    reload.push(p);                    this.setExpanded(p, true);                }            }            return reload;        }        /**         * 加载数据(动态),只加载不同部分         * @param {Array} datas         * @return {Array} 加载到树的数据         * @privateA         */        _updateData (datas) {            datas = datas instanceof Array ? datas : [datas];            let loadedData = [];            for (const data of datas) {                let node = this.getItems(data[this.setting.id]);                if (node) {                    for (const prop in data) {                        if (data[prop] !== undefined && data[prop] !== node[prop]) {                            if (prop === this.setting.pid) {                                loadedData.push(this.getItems(node[this.setting.pid]));                                loadedData.push(this.getItems(data[this.setting.pid]));                            }                            if (prop === this.setting.order) {                                loadedData = loadedData.concat(this.getPosterity(node));                            }                            node[prop] = data[prop];                        }                    }                    loadedData.push(node);                }            }            loadedData = _.uniq(loadedData);            for (const node of loadedData) {                if (node) {                    node.children = this.getChildren(node);                    node.expanded = node.children.length === 0 ? true : node.children[0].visible;                } else {                    this.children = this.getChildren(null);                }            }            this.sortTreeNode(true);            return loadedData;        };        /**         * 加载数据(动态),只加载不同部分         * @param {Array} datas         * @return {Array} 加载到树的数据         * @privateA         */        _loadData (datas) {            datas = datas instanceof Array ? datas : [datas];            const loadedData = [], resortData = [];            for (const data of datas) {                let node = this.getItems(data[this.setting.id]);                if (node) {                    const parent = this.getItems(node[this.setting.pid]);                    for (const prop in data) {                        if (data[prop] !== undefined && data[prop] !== node[prop]) {                            node[prop] = data[prop];                            if (parent && resortData.indexOf(parent) === -1) {                                resortData.push(parent);                            }                        }                    }                    loadedData.push(node);                } else {                    const keyName = itemsPre + data[this.setting.id];                    const node = JSON.parse(JSON.stringify(data));                    this.items[keyName] = node;                    this.datas.push(node);                    node.expanded = true;                    node.visible = true;                    loadedData.push(node);                    if (resortData.indexOf(node) === -1) {                        resortData.push(node);                    }                    const parent = this.getItems(node[this.setting.pid]);                    if (parent && resortData.indexOf(parent) === -1) {                        resortData.push(parent);                    } else {                        resortData.push(this.setting.rootId);                    }                }            }            for (const node of resortData) {                if (node && node !== this.setting.rootId) {                    node.children = this.getChildren(node);                } else {                    this.children = this.getChildren(null);                }            }            this.sortTreeNode(true);            for (const node of loadedData) {                if (!node.expanded) {                    this.setExpanded(node, true);                }            }            return loadedData;        };        /**         * 清理数据(动态)         * @param datas         * @private         */        _freeData (datas) {            datas = datas instanceof Array ? datas : [datas];            const freeDatas = [];            const removeArrayData = function (array, data) {                const index = array.indexOf(data);                array.splice(index, 1);            };            for (const data of datas) {                const node = this.getItems(data[this.setting.id]);                if (node) {                    freeDatas.push(node);                    node.deleteIndex = this.nodes.indexOf(node);                    delete this.items[itemsPre + node[this.setting.id]];                    if (node[this.setting.pid] !== this.setting.rootId) {                        const parent = this.getItems(node[this.setting.pid]);                        if (parent) {                            removeArrayData(parent.children, node);                        }                    } else {                        removeArrayData(this.children, node);                    }                    removeArrayData(this.datas, node);                }            }            for(const node of freeDatas) {                removeArrayData(this.nodes, node);            }            return freeDatas;        };        /**         * 加载需展开的数据         * @param {Array} datas         * @returns {Array}         * @private         */        _loadExpandData (datas) {            datas = datas instanceof Array ? datas : [datas];            const loadedData = [], existData = [], expandData = [], resortData = [];            for (const data of datas) {                let node = this.getItems(data[this.setting.id]);                if (node) {                    existData.push(node);                } else {                    const keyName = itemsPre + data[this.setting.id];                    const node = JSON.parse(JSON.stringify(data));                    this.items[keyName] = node;                    this.datas.push(node);                    node.expanded = false;                    node.visible = true;                    loadedData.push(node);                    if (resortData.indexOf(node) === -1) {                        resortData.push(node);                    }                    const parent = this.getItems(node[this.setting.pid]);                    if (parent && resortData.indexOf(parent) === -1) {                        resortData.push(parent);                    }                }            }            for (const node of resortData) {                node.children = this.getChildren(node);            }            this.sortTreeNode(true);            for (const node of loadedData) {                if (!node.expanded) {                    this.setExpanded(node, true);                }            }            for (const node of existData) {                const parent = this.getItems(node[this.setting.pid]);                if (expandData.indexOf(parent) === -1) {                    expandData.push(parent);                    if (!parent.expanded) {                        this.setExpanded(parent, true);                    }                }                if (!node.expanded) {                    this.setExpanded(node, true);                }            }            return [loadedData, expandData];        };        /**         * 因为提交其他数据,引起的树结构数据更新,调用该方法         *         * @param data - 更新的数据 {update, create, delete}         * @returns {{}}         */        loadPostData(data) {            const result = {};            if (data.delete) {                result.delete = this._freeData(data.delete);            }            if (data.create) {                result.create = this._loadData(data.create);            }            if (data.update) {                result.update = this._updateData(data.update);            }            return result;        }        /**         * 加载子节点         * @param {Object} node         * @param {function} callback         */        loadChildren (node, callback) {            if (this.setting.url !== '') {                const self = this;                postData(this.setting.url, {postType: 'load-child', id: this.getNodeKeyData(node)}, function (data) {                    self._loadData(data);                    callback();                });            }        };    }    class MeasureTree extends BaseTree {        addData (datas) {            const loadedData = [];            for (const data of datas) {                let node = this.getItems(data[this.setting.id]);                if (node) {                    for (const prop in data) {                        if (data[prop] !== undefined) {                            node[prop] = data[prop];                        }                    }                    loadedData.push(node);                } else {                    const keyName = itemsPre + data[this.setting.id];                    const node = JSON.parse(JSON.stringify(data));                    this.items[keyName] = node;                    this.datas.push(node);                    node.expanded = false;                    node.visible = true;                    loadedData.push(node);                }            }            this.sortTreeNode();            for (const node of loadedData) {                const children = node.children;                if (!node.expanded && children.length > 0) {                    node.expanded = true;                    this._refreshChildrenVisible(node);                }            }            return loadedData;        }        removeData (datas) {            datas.sort(function (a, b) {                return b.level - a.level;            });            const removeArrayData = function (array, data) {                const index = array.indexOf(data);                array.splice(index, 1);            };            for (const data of datas) {                const node = this.getItems(data[this.setting.id]);                if (node && this.getChildren(node).length === 0) {                    delete this.items[itemsPre + node[this.setting.id]];                    if (node[this.setting.pid] !== this.setting.rootId) {                        const parent = this.items[itemsPre + node[this.setting.pid]];                        removeArrayData(parent.children, node);                    }                    removeArrayData(this.datas, node);                    removeArrayData(this.nodes, node);                }            }        };        loadLeafData (data) {            const datas = data instanceof Array ? data : [data];            for (const d of datas) {                let node = this.getItems(d[this.setting.id]);                if (node && node.is_leaf) {                    for (const prop in d) {                        if (data[prop] !== undefined) {                            node[prop] = d[prop];                        }                    }                }            }        };    }    class FxTree extends BaseTree {        /**         * 检查节点是否是最底层项目节         * @param node         * @returns {boolean}         */        isLeafXmj(node) {            if (!node.code) {                return false;            }            for (const child of node.children) {                if (!child.b_code || child.b_code === '') {                    return false;                }            }            return true;        }        /**         * 查询最底层项目节(本身或父项)         * @param {Object} node - 查询节点         * @returns {Object}         */        getLeafXmjParent(node) {            let parent = node;            while (parent) {                if (this.isLeafXmj(parent)) {                    return parent;                } else {                    parent = this.getParent(parent);                }            }            return null;        }        /**         * 展开至最底层项目节         */        expandToLeafXmj() {            const self = this;            this.expandByCustom(function (node) {                if (node.b_code && node.b_code !== '') {                    return false;                } else {                    return !self.isLeafXmj(node);                }            })        }        /**         * 展开至计算项         */        expandByCalcFields() {            const self = this;            this.expandByCustom(function (node) {                for (const field of self.setting.calcFields) {                    if (node[field]) {                        return true;                    }                }                return false;            })        }    }    class LedgerTree extends FxTree {        /**         *         * @param parent         * @param node         * @private         */        _getNodesParents(parents, nodes) {            for (const node of nodes) {                const parent = this.getParent(node);                if (parent) {                    const paths = this.getFullPathNodes(parent.full_path);                    for (const p of paths) {                        if (parents.indexOf(p) === -1) {                            parents.push(p);                        }                    }                }                if (this.getItems(node.ledger_id) && node.children.length > 0) {                    parents.push(node);                }            }        }        _getReCalcNodes(reCalcNodes, nodes) {            for (const node of nodes) {                const parent = this.getParent(node);                if (parent) {                    const paths = this.getFullPathNodes(parent.full_path);                    for (const p of paths) {                        if (reCalcNodes.indexOf(p) === -1) {                            reCalcNodes.push(p);                        }                    }                }                // 最底层项目节,也需要计算                //if (this.getItems(node.ledger_id) && node.children.length > 0) {                    reCalcNodes.push(node);                //}            }        }        /**         * 因为提交其他数据,引起的树结构数据更新,调用该方法         *         * @param data - 更新的数据 {update, create, delete}         * @returns {{}}         */        loadPostData(data) {            const result = {}, reCalcNodes = [];            if (!data) return result;            if (data.delete) {                result.delete = this._freeData(data.delete);                this._getReCalcNodes(reCalcNodes, result.delete);            }            if (data.create) {                result.create = this._loadData(data.create);                this._getReCalcNodes(reCalcNodes, result.create);            }            if (data.update) {                result.update = this._updateData(data.update);                this._getReCalcNodes(reCalcNodes, result.update);            }            reCalcNodes.sort((a, b) => {                return b.level - a.level;            });            for (const node of reCalcNodes) {                treeCalc.calculateNode(this, node, this.setting.calcFields, this.setting.calcFun);            }            result.update = result.update ? result.update.concat(reCalcNodes) : reCalcNodes;            return result;        }    }    class ReviseTree extends LedgerTree {        checkNodeUsed(node, pos) {            if (node.children && node.children.length > 0) {                for (const child of node.children) {                    const used = this.checkNodeUsed(child, pos);                    if (used) return used;                }            } else {                if (node.used) return node.used;                const posRange = pos.getLedgerPos(node.id);                if (posRange && posRange.length > 0) {                    for (const p of posRange) {                        if (p.used) return p.used;                    }                }            }            return false;        }    }    class StageTree extends FxTree {        /**         * 构造函数         */        constructor (setting) {            super(setting);            // stage关联索引            this.stageItems = {};        }        /**         * 加载数据(初始化), 并给数据添加部分树结构必须数据         * @param datas         */        loadDatas (datas) {            super.loadDatas(datas);            // 清空旧数据            this.stageItems = {};            // 加载全部数据            for (const data of this.datas) {                const keyName = itemsPre + data[this.setting.stageId];                this.stageItems[keyName] = data;            }        }        getStageItems(id) {            return this.stageItems[itemsPre + id];        }        loadStageData(datas, fieldPre, fields) {            datas = datas instanceof Array ? datas : [datas];            const loadedData = [];            for (const data of datas) {                let node = this.getStageItems(data.lid);                if (node) {                    for (const prop of fields) {                        if (data[prop] !== undefined) {                            node[fieldPre + prop] = data[prop];                        }                    }                    loadedData.push(node);                }            }        }        loadPreStageData(datas) {            this.loadStageData(datas, 'pre_', this.setting.updateFields);        }        loadCurStageData(datas) {            this.loadStageData(datas, '', this.setting.updateFields);        }        /**         * 加载数据(动态),只加载不同部分         * @param {Array} datas         * @return {Array} 加载到树的数据         * @privateA         */        _updateData (datas) {            datas = datas instanceof Array ? datas : [datas];            let loadedData = [];            for (const data of datas) {                let node = this.getItems(data[this.setting.id]);                if (node) {                    for (const prop in data) {                        if (prop === this.setting.pid && data[prop] !== node[prop]) {                        }                        if (data[prop] !== undefined && data[prop] !== node[prop]) {                            if (prop === this.setting.pid) {                                loadedData.push(this.getItems(node[this.setting.pid]));                                loadedData.push(this.getItems(data[this.setting.pid]));                            }                            node[prop] = data[prop];                        }                    }                    loadedData.push(node);                }            }            loadedData = _.uniq(loadedData);            for (const node of loadedData) {                node.children = this.getChildren(node);                node.expanded = node.children.length === 0 ? true : node.children[0].visible;            }            this.sortTreeNode(true);            return loadedData;        };        /**         * 加载数据(动态),只加载不同部分         * @param {Array} datas         * @return {Array} 加载到树的数据         * @privateA         */        _updateStageData (datas) {            datas = datas instanceof Array ? datas : [datas];            const loadedData = [];            for (const data of datas) {                let node = this.getStageItems(data.lid);                if (node) {                    for (const prop of this.setting.updateFields) {                        if (data[prop] !== undefined) {                            node[prop] = data[prop];                        }                    }                    loadedData.push(node);                }            }            return loadedData;        };        /**         *         * @param parent         * @param node         * @private         */        _getNodesParents(parents, nodes) {            for (const node of nodes) {                const parent = this.getParent(node);                if (parent) {                    const paths = this.getFullPathNodes(parent.full_path);                    for (const p of paths) {                        if (parents.indexOf(p) === -1) {                            parents.push(p);                        }                    }                }                if (node.children && node.children.length > 0) {                    parents.push(node);                }            }        }        _updateDgnData(datas) {            datas = datas instanceof Array ? datas : [datas];            let loadedData = [];            for (const data of datas) {                let node = this.getStageItems(data.id);                if (node) {                    for (const prop in data) {                        if (data[prop] !== undefined && data[prop] !== node[prop]) {                            node[prop] = data[prop];                        }                    }                    loadedData.push(node);                }            }            return loadedData;        }        /**         * 提交数据至后端,返回的前端树结构应刷新的部分         * StageTree仅有更新CurStage部分,不需要增删         *         * @param data - 需要更新的数据         * @returns {Array} - 界面需要刷新的数据         */        loadPostStageData(data) {            let result, parents = [];            if (data.bills) {                result = this._updateData(data.bills);                this._getNodesParents(parents, result);            }            if (data.curStageData) {                result = this._updateStageData(data.curStageData);                this._getNodesParents(parents, result);            }            if (data.dgn) {                const dgnResult = this._updateDgnData(data.dgn);                result = result ? result.concat(dgnResult) : dgnResult;            }            result = result ? result.concat(parents) : parents;            result.sort((a, b) => {                return b.level - a.level;            });            for (const node of result) {                treeCalc.calculateNode(this, node);            }            return result;        }    }    class MasterTree extends FxTree {        /**         * 构造函数         */        constructor (setting) {            super(setting);            // 关联索引            this.masterItems = {};        }        /**         * 加载数据(初始化), 并给数据添加部分树结构必须数据         * @param datas         */        loadDatas (datas) {            super.loadDatas(datas);            // 清空旧数据            this.masterItems = {};            // minor数据缓存            this.minorData = {};            // 加载全部数据            for (const data of this.datas) {                const keyName = itemsPre + data[this.setting.masterId];                this.masterItems[keyName] = data;            }        }        /**         * 根据关联id,查找节点         * @param id         * @returns {*}         */        getMasterItems(id) {            return this.masterItems[itemsPre + id];        }        /**         * 加载关联数据         *         * @param {Array|Object}datas - 需要关联的数据         * @param {String} fieldPre - 关联字段前缀(关联结果)         * @param {Array} fields - 关联字段         * @returns {Array}         */        loadMinorData(datas, fieldSuf, fields, calcFields) {            for (const cf of calcFields) {                this.setting.calcFields.push(cf+fieldSuf);            }            if (!datas) return;            datas = datas instanceof Array ? datas : [datas];            this.minorData[fieldSuf] = datas;            const loadedData = [];            for (const data of datas) {                let node = this.getMasterItems(data[this.setting.minorId]);                if (node) {                    for (const prop of fields) {                        if (data[prop] !== undefined) {                            node[prop + fieldSuf] = data[prop];                        }                    }                    loadedData.push(node);                }            }            return loadedData;        }    }    if (type === 'base') {        return new BaseTree(setting);    } else if (type === 'fx') {        return new FxTree(setting);    } else if (type === 'stage') {        return new StageTree(setting);    } else if (type === 'ledger') {        return new LedgerTree(setting);    } else if (type === 'revise') {        return new ReviseTree(setting);    } else if (type === 'measure') {        return new MeasureTree(setting);    } else if (type === 'master') {        return new MasterTree(setting);    }};const treeCalc = {    mapTreeNode: function (tree) {        let map = {}, maxLevel = 0;        for (const node of tree.nodes) {            let levelArr = map[node.level];            if (!levelArr) {                levelArr = [];                map[node.level] = levelArr;            }            if (node.level > maxLevel) {                maxLevel = node.level;            }            levelArr.push(node);        }        return [maxLevel, map];    },    getMaxLevel: function (tree) {        return Math.max.apply(Math, tree.datas.map(function(o) {return o.level}));    },    calculateNode: function (tree, node) {        if (node.children && node.children.length > 0) {            const gather = node.children.reduce(function (rst, x) {                const result = {};                for (const cf of tree.setting.calcFields) {                    result[cf] = ZhCalc.add(rst[cf], x[cf]);                }                return result;            });            // 汇总子项            for (const cf of tree.setting.calcFields) {                if (gather[cf]) {                    node[cf] = gather[cf];                } else {                    node[cf] = null;                }            }        }        // 自身运算        if (tree.setting.calcFun) {            tree.setting.calcFun(node);        }    },    calculateLevelNode: function (tree, level) {        const nodes = tree.datas.filter((n) => { return n.level === level });        for (const node of nodes) {            this.calculateNode(tree, node);        }    },    calculateAll: function (tree) {        const [maxLevel, levelMap] = this.mapTreeNode(tree);        for (let i = maxLevel; i >= 0; i--) {            const levelNodes = levelMap[i];            if (levelNodes && levelNodes.length > 0) {                for (const node of levelNodes) {                    this.calculateNode(tree, node);                }            }        }    },    calculateParent: function (tree, node) {        const nodes = tree.getFullPathNodes(node.full_path);        nodes.sort((a, b) => {            return b.level - a.level;        });        for (const n of nodes) {            this.calculateNode(tree, n);        }        return nodes;    }};
 |