| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069 | /** * Created by Zhong on 2017/8/14. */let pageOprObj = {    gljLibName : null,    stdGljLibId: null,    userId: null,    compilationId: null,    initPage : function(container, containerComponent, containerC) {        let me = pageOprObj;        me.stdGljLibId = stdGljLibId;        me.userId = userId;        me.compilationId = compilationId;        repositoryGljObj.buildSheet(container);        gljComponentOprObj.buildSheet(containerComponent);        componentOprObj.buildSheet(containerC);        //获得定额库中引用此工料机库中的,所有被定额所套的工料机的ID        //repositoryGljObj.getRationGljIds(gljLibId);        repositoryGljObj.getGljDistType(function () {            repositoryGljObj.currentRepositoryId = me.stdGljLibId;            repositoryGljObj.getGljTree(stdGljLibId, function () {                repositoryGljObj.getGljItems(me.stdGljLibId, me.userId, me.compilationId);            });        });    }};let repositoryGljObj = {    treeObj : null,    workBook: null,    gljCurTypeId: -1,    currentRepositoryId: -1,    currentCache: null,    parentNodeIds: {},    gljList: [],    stdGljList:[],    complementaryGljList: [],    allowComponent: [202, 203, 204, 301],//可带组成物类型:混凝土、砂浆、配合比、机械台班    componentGljType: [201, 302, 303],//可成为组成物的工料机类型: 普通材料、 机械组成物、 机上人工    distTypeTree: null,//add    setting: {        header:[            {headerName:"编码",headerWidth:140,dataCode:"code", dataType: "String", formatter: "@", hAlign: "left", vAlign: "center"},            {headerName:"名称",headerWidth:280,dataCode:"name", dataType: "String", hAlign: "left", vAlign: "center"},            {headerName:"规格型号",headerWidth:180,dataCode:"specs", dataType: "String", hAlign: "left", vAlign: "center"},            {headerName:"单位",headerWidth:120,dataCode:"unit", dataType: "String", hAlign: "center", vAlign: "center"},            {headerName:"定额价",headerWidth:120,dataCode:"basePrice", dataType: "Number", formatter: "0.00", hAlign: "right", vAlign: "center"},            {headerName:"类型",headerWidth:120,dataCode:"gljType", dataType: "String", hAlign: "center", vAlign: "center"},            {headerName:"是否新增",headerWidth:80,dataCode:"isComplementary", hAlign: "center", vAlign: "center"}        ],        view:{            comboBox:[                {row:-1,col:3,rowCount:-1,colCount:1}            ],            lockedCells:[            ]        }    },    getComboData: function (gljDistType) {        let me = this;        let distType;        let distTypeTree = {            prefix : 'gljType',            distTypes: {},            comboDatas: [],            distTypesArr: []        };        gljDistType.forEach(function (typeData) {            let typeObj = {                data: typeData,                children: [],                parent: null            }            distTypeTree.distTypes[distTypeTree.prefix + typeData.ID] = typeObj;            distTypeTree.distTypesArr.push(typeObj);        });        gljDistType.forEach(function (typeData) {            distType = distTypeTree.distTypes[distTypeTree.prefix + typeData.ID];            let parent = distTypeTree.distTypes[distTypeTree.prefix + typeData.ParentID];            if(parent){                distType.parent = parent;                parent.children.push(distType);            }        });        distTypeTree.distTypesArr.forEach(function (distTypeObj) {            if(distTypeObj.data.fullName !== '材料' && distTypeObj.data.fullName !== '机械'){                distTypeTree.comboDatas.push({text: distTypeObj.data.fullName, value: distTypeObj.data.ID});            }        });        return distTypeTree;    },    getGljDistType: function (callback) {        let me = this;        CommonAjax.post('complementartGlj/api/getGljDistType', {}, function (rstData) {            if(callback){                me.distTypeTree = me.getComboData(rstData);                console.log(me.distTypeTree);                callback();            }        });    },    getGljTree: function(gljLibId, callback) {        let me = this;        CommonAjax.post('complementartGlj/api/getGljTree', {gljLibId: gljLibId}, function (rstData) {            zTreeHelper.createTree(rstData, gljSetting, "repositoryTree", me);            zTreeHelper.createTree(rstData, componentSetting, "componentTree", componentOprObj);            if (rstData && rstData.length > 0) {                me.gljCurTypeId = rstData[0].ID;            } else {                //重新创建库?               // gljTypeTreeOprObj.addRootNode();            }            if(callback){                callback();            }        });    },    getGljItems: function(stdGljLibId, userId, compilationId) {        let me = this;        CommonAjax.post('complementartGlj/api/getGljItems', {stdGljLibId: stdGljLibId, userId: userId, compilationId: compilationId}, function (rstData) {            me.stdGljList = rstData.stdGljs;            me.complementaryGljList = rstData.complementaryGljs;            me.workBook.getSheet(0).setRowCount(me.stdGljList.length);            me.sortGlj(me.stdGljList);            me.setProp('isStd', true, me.stdGljList);            me.sortGlj(me.complementaryGljList);            let rootNode = me.treeObj.getNodes()[0];            if(rootNode && rootNode.isParent && rootNode.isFirstNode){                componentOprObj.rootNode = rootNode;                me.treeObj.selectNode(rootNode);                gljTypeTreeOprObj.onClick(null, 'repositoryTree', rootNode);            }        });    },    showGljItems: function(data, type) {        let me = repositoryGljObj;        if (me.workBook) {            let cacheSection = [];            let pArr = me.parentNodeIds["_pNodeId_" + type];            for (let i = 0; i < data.length; i++) {                if (pArr && pArr.indexOf(data[i].gljClass) >= 0) {                    cacheSection.push(data[i]);                } else if (type == data[i].gljClass) {                    cacheSection.push(data[i]);                }            }            sheetOpr.cleanData(me.workBook.getSheet(0), me.setting, -1);            sheetOpr.showData(me.workBook.getSheet(0), me.setting, cacheSection, me.distTypeTree);            sheetCommonObj.setDynamicCombo(me.workBook.getActiveSheet(), 0, 5, me.workBook.getActiveSheet().getRowCount(), me.distTypeTree.comboDatas, false, 'text');            cacheSection = null;        }    },    buildSheet: function(container) {        let me = repositoryGljObj;        me.workBook = sheetOpr.buildSheet(container, me.setting, 30);        me.repositoryGljDelOpr();        me.workBook.getActiveSheet().bind(GC.Spread.Sheets.Events.ClipboardPasting, me.onClipboardPasting);        me.workBook.getActiveSheet().bind(GC.Spread.Sheets.Events.ClipboardPasted, me.onClipboardPasted);        me.workBook.getSheet(0).bind(GC.Spread.Sheets.Events.EditStarting, me.onCellEditStart);        me.workBook.getSheet(0).bind(GC.Spread.Sheets.Events.EditEnded, me.onCellEditEnd);        me.workBook.getSheet(0).bind(GC.Spread.Sheets.Events.EnterCell, me.onEnterCell);        me.workBook.getSheet(0).bind(GC.Spread.Sheets.Events.SelectionChanged, me.onSelectionChanged);        me.workBook.bind(GC.Spread.Sheets.Events.ButtonClicked, me.onButtonClicked);//复选框点击事件    },    getCurrentComponent: function (gljComponent) {        let me = repositoryGljObj, rst = [];        for(let i = 0; i < gljComponent.length; i++){            let obj = {};            for(let j = 0; j < me.complementaryGljList.length; j++){                if(gljComponent[i].ID == me.complementaryGljList[j].ID){                    obj.isStd = false;                    obj.ID = me.complementaryGljList[j].ID;                    obj.code = me.complementaryGljList[j].code;                    obj.name = me.complementaryGljList[j].name;                    obj.unit = me.complementaryGljList[j].unit;                    obj.basePrice = me.complementaryGljList[j].basePrice;                    obj.consumeAmt = gljComponent[i].consumeAmt;                    rst.push(obj);                }            }            for(let j = 0; j < me.stdGljList.length; j++){                if(gljComponent[i].ID == me.stdGljList[j].ID){                    obj.isStd = true;                    obj.ID = me.stdGljList[j].ID;                    obj.code = me.stdGljList[j].code;                    obj.name = me.stdGljList[j].name;                    obj.unit = me.stdGljList[j].unit;                    obj.basePrice = me.stdGljList[j].basePrice;                    obj.consumeAmt = gljComponent[i].consumeAmt;                    rst.push(obj);                }            }        }        rst.sort(function (a, b) {            let r = 0;            if(a.code > b.code) r = 1;            else if(a.code < b.code) r = -1;            return r;        });        return rst;    },    //获得引用了组成物id为componentId的工料机,和重新变化组成物数组、重新计算单价    getUpdateGljs: function (rObj, isDelete) {        let me = repositoryGljObj, that = gljComponentOprObj,            rst = {updateArr: [], updateBasePrcArr: []};        //改变单价,以便reCalGljBasePrc方法可行        if(!isDelete){            for(let i = 0; i < me.complementaryGljList.length; i++){                if(me.complementaryGljList[i].ID === rObj.ID){                    me.complementaryGljList[i].basePrice = rObj.basePrice;                    break;                }            }        }        for(let i = 0; i < me.complementaryGljList.length; i++){            let thisComponent = me.complementaryGljList[i].component, isChange = false;            for(let j = 0; j < thisComponent.length; j++){                if(thisComponent[j].ID === rObj.ID){                    //删除                    isChange = true;                    if(isDelete){                        thisComponent.splice(j--, 1);                    }                    else {                        break;                    }                }            }            if(isChange){//引用了此组成物                let gljBasePrc = that.reCalGljBasePrc(me.getCurrentComponent(thisComponent));                if(me.complementaryGljList[i].basePrice !== gljBasePrc){                    me.complementaryGljList[i].basePrice = gljBasePrc;                    rst.updateBasePrcArr.push({gljId: me.complementaryGljList[i].ID, gljType: me.complementaryGljList[i].gljType, basePrice: me.complementaryGljList[i].basePrice});                }                rst.updateArr.push(me.complementaryGljList[i]);            }        }        return rst;    },    reshowGljBasePrc: function (glj) {        let me = repositoryGljObj;        let cacheSection = me.currentCache;        for(let i = 0; i < cacheSection.length; i++){            if(glj.ID === cacheSection[i].ID){                cacheSection[i].basePrice = glj.basePrice;                me.workBook.getSheet(0).setValue(i, 4, glj.basePrice);                break;            }        }    },    onSelectionChanged: function (sender, info) {        let me = repositoryGljObj, that = gljComponentOprObj;        //混凝土202、砂浆203、配合比204、机械3        if(typeof info.oldSelections || info.oldSelections.length === 0 && info.newSelections.length > 0 || info.oldSelections[0].row !== info.newSelections[0].row){            let row = info.newSelections[0].row;            sheetOpr.cleanSheet(that.workBook.getSheet(0), that.setting, -1);            me.workBook.focus(true);            me.currentComponent = [];            that.workBook.getSheet(0).setRowCount(5);            if(row < me.currentCache.length){                //标记当前工料机                me.currentGlj = me.currentCache[row];                if(me.allowComponent.indexOf(me.currentCache[row].gljType) !== -1){                    //展示数据                    if(me.currentGlj.component.length > 0){                        me.currentComponent = me.getCurrentComponent(me.currentGlj.component);                        if(me.currentComponent.length > 0){                            sheetOpr.showData(that.workBook.getSheet(0), that.setting, me.currentComponent);                        }                    }                }            }            else{                me.currentGlj = null;            }        }    },    onEnterCell: function (sender, args) {        let me = repositoryGljObj;        args.sheet.repaint();        me.cellRowIdx = args.row;        let isHasData = false;        if(me.addGljObj){            for(let i=0; i<me.setting.header.length; i++){                if(me.addGljObj[me.setting.header[i].dataCode]){                    isHasData = true;                    break;                }            }        }        if(isHasData){            if(me.editingRowIdx !== me.cellRowIdx) {                let isComple = true;                let focusToCol;                function getFocusToCol (me){                    if(!me.addGljObj[me.setting.header[0].dataCode]){                        $('#alertGljTxt').text('编号不能为空,继续增加工料机?');                        return 0;                    }                    else if(!me.addGljObj[me.setting.header[1].dataCode]){                        $('#alertGljTxt').text('名称不能为空,继续增加工料机?');                        return 1;                    }                    else if(!me.addGljObj[me.setting.header[3].dataCode]){                        $('#alertGljTxt').text('计量单位不能为空,继续增加工料机?');                        return 3;                    }                    else if(!me.addGljObj[me.setting.header[5].dataCode]){                        $('#alertGljTxt').text('类型不能为空,继续增加工料机?');                        return 5;                    }                    else {                        return -1;                    }                }                focusToCol = getFocusToCol(me);                if(focusToCol === -1){                }                else {                    $('#gljAlertBtn').click();                    $('#aleConfBtn').click(function () {                        me.workBook.getSheet(0).setActiveCell(me.editingRowIdx, focusToCol);                    });                    $('#gljAleClose').click(function () {                        me.workBook.getSheet(0).setActiveCell(me.editingRowIdx, focusToCol);                    });                    $('#aleCanceBtn').click(function () {                        me.addGljObj = null;                        me.workBook.getSheet(0).suspendPaint();                        me.workBook.getSheet(0).suspendEvent();                        for(let col=0; col<me.setting.header.length; col++){                            if(col === 0){                                me.workBook.getSheet(0).getCell(me.editingRowIdx, 0).formatter("@");                            }                            me.workBook.getSheet(0).getCell(me.editingRowIdx, col).value('');                        }                        me.workBook.getSheet(0).setActiveCell(me.editingRowIdx, 0);                        me.workBook.getSheet(0).resumePaint();                        me.workBook.getSheet(0).resumeEvent();                    });                }            }        }    },    onButtonClicked: function (sender, args) {        let me = repositoryGljObj;        if(args.col === 6 && args.row < me.currentCache.length){            args.sheet.setValue(args.row, args.col, true);        }    },    onCellEditStart: function(sender, args) {        let me = repositoryGljObj;        let rObj = sheetOpr.combineRowData(me.workBook.getSheet(0), me.setting, args.row);        me.currentEditingGlj = rObj;        me.orgCode = me.workBook.getSheet(0).getValue(args.row, 0);        if(args.row < me.currentCache.length){            me.currentGlj = me.currentCache[args.row];            if(args.col === 0 || (args.col === 4 && me.allowComponent.indexOf(me.currentGlj.gljType) !== -1)                || args.col === 6){                args.cancel = true;            }            else {                rObj.ID = me.currentGlj.ID;                rObj.gljClass = me.currentGlj.gljClass;            }        }        else {            me.currentGlj = null;        }    },    onCellEditEnd: function(sender, args) {        let me = repositoryGljObj, that = gljComponentOprObj,            rObj = sheetOpr.combineRowData(me.workBook.getSheet(0), me.setting, args.row, me),            updateArr = [], addArr = [], updateBasePrcArr = [];        me.editingRowIdx = args.row;        rObj.basePrice = rObj.basePrice ? rObj.basePrice : 0;        //更新        if (me.currentEditingGlj["ID"]) {            rObj["ID"] = me.currentEditingGlj["ID"];            rObj.gljClass = me.currentEditingGlj.gljClass;            //for(let col =0; col< me.setting.header.length; col++){                if(me.currentEditingGlj[me.setting.header[args.col].dataCode] !== rObj[me.setting.header[args.col].dataCode]){                    //me.addGljObj = rObj;                    //编码、名称、单位、类型不可为空                    if(rObj[me.setting.header[0].dataCode] && rObj[me.setting.header[1].dataCode] && rObj[me.setting.header[3].dataCode] && rObj[me.setting.header[5].dataCode]                    &&rObj[me.setting.header[0].dataCode].toString().trim().length !== 0 && rObj[me.setting.header[1].dataCode].toString().trim().length !== 0 && rObj[me.setting.header[3].dataCode].toString().trim().length !== 0&&                        rObj[me.setting.header[5].dataCode].toString().trim().length !== 0){                        if(rObj.gljType !== me.currentEditingGlj.gljType){//修改了工料机类型                                if(me.currentGlj){                                    me.currentGlj.component = [];                                }                                if(me.allowComponent.indexOf(rObj.gljType) !== -1){                                    rObj.basePrice = 0;                                }                                if(me.componentGljType.indexOf(me.currentEditingGlj.gljType) !== -1 &&                                    !(me.currentEditingGlj.gljType === 302 && rObj.gljType === 303) && !(me.currentEditingGlj.gljType === 303 && rObj.gljType === 302)){//修改了原本是组成物的工料机                                    //寻找所有引用了此组成物的工料机,并从组成物中删去此工料机,并重算单价                                    let updateGljs = me.getUpdateGljs(rObj, true);                                    if(updateGljs.updateArr.length > 0 || updateGljs.updateBasePrcArr.length > 0){                                        for(let i = 0; i < updateGljs.updateArr.length; i++){                                            updateArr.push(updateGljs.updateArr[i]);                                        }                                        for(let i = 0; i < updateGljs.updateBasePrcArr.length; i++){                                            updateArr.push(updateGljs.updateBasePrcArr[i]);                                        }                                    }                                }                            sheetOpr.cleanData(that.workBook.getSheet(0), that.setting, 5);                        }                        else if(rObj.basePrice !== me.currentEditingGlj.basePrice){//修改了单价,可修改单价的必为可成为组成物的                            //寻找所有引用了此组成物的工料机,并从组成物中删去此工料机,并重算单价                            if(isNaN(parseFloat(rObj.basePrice))){                                alert('单价只能为数值!');                                args.sheet.setValue(args.row, args.col, me.currentEditingGlj.basePrice ? me.currentEditingGlj.basePrice : 0);                                return;                            }                            rObj.basePrice = !isNaN(parseFloat(rObj.basePrice))? scMathUtil.roundTo(parseFloat(rObj.basePrice), -2) : me.currentEditingGlj.basePrice;                            let updateGljs = me.getUpdateGljs(rObj);                            if(updateGljs.updateArr.length > 0 || updateGljs.updateBasePrcArr.length > 0){                                for(let i = 0; i < updateGljs.updateArr.length; i++){                                    updateArr.push(updateGljs.updateArr[i]);                                }                                for(let i = 0; i < updateGljs.updateBasePrcArr.length; i++){                                    updateArr.push(updateGljs.updateBasePrcArr[i]);                                }                            }                            //rObj.basePrice = !isNaN(parseFloat(rObj.basePrice)) && (rObj.basePrice && typeof rObj.basePrice !== 'undefined') ? that.round(parseFloat(rObj.basePrice), 2) : 0;                        }                        rObj.component = me.currentGlj.component;                        updateArr.push(rObj);                    }                    else{                        if(me.setting.header[args.col].dataCode === 'gljType'){                            let distTypeVal =  me.distTypeTree.distTypes[me.distTypeTree.prefix + me.currentEditingGlj[me.setting.header[args.col].dataCode]].data.fullName;                            args.sheet.setValue(args.row, args.col, distTypeVal);                        }                        else{                            args.sheet.setValue(args.row, args.col, me.currentEditingGlj[me.setting.header[args.col].dataCode]);                        }                    }                }          //  }            //--------------------------------------            if(me.currentEditingGlj.basePrice !== rObj.basePrice){                //update basePrice of ration when editting basePrice of glj                let gljType = -1;                let gljTypeParent = me.distTypeTree.distTypes[me.distTypeTree.prefix + me.currentEditingGlj.gljType].parent;                if(gljTypeParent && gljTypeParent.data.ID <=3){                    gljType = gljTypeParent.data.ID;                }                if(!gljTypeParent && me.currentEditingGlj.gljType <= 3){                    gljType = me.currentEditingGlj.gljType;                }                let gljBasePrcObj = {gljId: me.currentEditingGlj.ID, gljType: gljType, basePrice: rObj.basePrice};                if(gljBasePrcObj.gljType !== -1){                    updateBasePrcArr.push(gljBasePrcObj);                    me.updateRationBasePrcRq(updateBasePrcArr);                }            }            //update basePrice of ration when editting gljType of glj            if(me.currentEditingGlj.gljType !== rObj.gljType){                let gljTypeObj = {gljId: me.currentEditingGlj.ID, gljType: rObj.gljType, basePrice: rObj.basePrice};                updateBasePrcArr.push(gljTypeObj);                me.updateRationBasePrcRq(updateBasePrcArr);            }            //-----------------------------------------------------------        }        //新增        else {            if(typeof rObj.code !== 'undefined'){                me.addGljObj = rObj;                let isCanSav = true;                if(!rObj[me.setting.header[0].dataCode] || !rObj[me.setting.header[1].dataCode] || !rObj[me.setting.header[3].dataCode] || !rObj[me.setting.header[5].dataCode]){                    isCanSav = false;                }                if(isCanSav){                    me.addGljObj = null;                    rObj.component = [];                    //如果类型为混凝土、砂浆、配合比、机械台班时,添加时填写的单价清空                    if(me.allowComponent.indexOf(rObj.gljType) !== -1){                        rObj.basePrice = 0;                    }                    rObj.basePrice = !isNaN(parseFloat(rObj.basePrice)) && (rObj.basePrice && typeof rObj.basePrice !== 'undefined') ? parseFloat(rObj.basePrice) : 0;                    addArr.push(rObj);                }            }        }        if(!me.parentNodeIds["_pNodeId_" + me.gljCurTypeId]){            rObj.gljClass = me.gljCurTypeId;        }        if(updateArr.length >0 || addArr.length >0){            me.currentEditingGlj = null;            me.mixUpdateRequest(updateArr, addArr, []);        }    },    repositoryGljDelOpr: function () {        let me = repositoryGljObj;        me.workBook.commandManager().register('repositoryGljDel', function () {            let sheet = me.workBook.getSheet(0),                updateArr = [], removeArr = [],                tempRemoveArr= [],                refGljCodes = [], //已被引用的工料机                updateBasePrcArr = [],//删除基价单位后重新计算                sels = sheet.getSelections(),                canUpdate = false,                cacheSection = me.currentCache;            if(sels.length > 0 && cacheSection.length > 0){                for(let i = 0; i < sels.length; i++){                    if(sels[i].colCount === me.setting.header.length){                        for(let j = 0; j < sels[i].rowCount; j++){                            if(sels[i].row + j < cacheSection.length){                                //删除了已被引用成组成物的工料机,重新计算所有引用此组成物的工料机的单价、组成物数组                                let updateGljs = me.getUpdateGljs(cacheSection[sels[i].row + j], true);                                if(updateGljs.updateArr.length > 0 || updateGljs.updateBasePrcArr.length > 0){                                    for(let i = 0; i < updateGljs.updateArr.length; i++){                                        updateArr.push(updateGljs.updateArr[i]);                                    }                                    for(let i = 0; i < updateGljs.updateBasePrcArr.length; i++){                                        updateBasePrcArr.push(updateGljs.updateBasePrcArr[i]);                                    }                                }                                removeArr.push(cacheSection[sels[i].row + j].ID);                                //tempRemoveArr.push({ID: cacheSection[sels[i].row + j].ID, code: cacheSection[sels[i].row + j].code});                                //删除后重新计算引用了此工料机的定额单价                                updateBasePrcArr.push({gljId: cacheSection[sels[i].row + j].ID, gljType: cacheSection[sels[i].row + j].gljType, basePrice: 0, delete: 1});                            }                        }                    }                    else{                        let maxCol = sels[i].col + sels[i].colCount - 1;                        if(sels[i].col >= 2 && maxCol <= 4){                            for(let j = 0; j < sels[i].rowCount; j++){                                if(sels[i].row + j < cacheSection.length){                                    let updateObj = cacheSection[sels[i].row + j];                                    for(let col = sels[i].col; col <= maxCol; col++){                                        if(me.setting.header[col].dataCode === 'basePrice'){                                            //如果类型不为混凝土、砂浆、配合比、机械,才可删除单价 basePrice = 0                                            if(me.allowComponent.indexOf(updateObj.gljType) === -1){                                                canUpdate = true;                                                updateObj[me.setting.header[col].dataCode] = 0;                                                updateBasePrcArr.push({gljId: updateObj.ID, gljType: updateObj.gljType, basePrice: 0});                                            }                                        }                                        else{                                            canUpdate = true;                                            updateObj[me.setting.header[col].dataCode] = '';                                        }                                    }                                    if(canUpdate){                                        updateArr.push(updateObj);                                    }                                }                            }                        }                        //编号、名称、类型不可为空                        else{                            if(sels[i].row < cacheSection.length){                                let text = '', cantNullStr =['编码', '名称', '类型'];                                for(let col = sels[i].col; col <= sels[i].col + sels[i].colCount -1; col++){                                    if(cantNullStr.indexOf(me.setting.header[col].headerName) !== -1){                                        text += me.setting.header[col].headerName + " ";                                    }                                }                                $('#alertText').text(text + "不可为空!");                                $('#codeAlertBtn').click();                                $('#codAleConfBtn').click(function () {                                });                                $('#codAleClose').click(function () {                                });                            }                        }                    }                }                if(removeArr.length > 0 || updateArr.length > 0){                    //删除警告                    $('#alertGljTxt').text('可能已有定额引用了当前工料机,导致定额查找不到此工料机。确定要删除吗?');                    $('#gljAlertBtn').click();                    //确认                    $('#aleConfBtn').click(function () {                        me.mixUpdateRequest(updateArr, [], removeArr);                        /*if(updateBasePrcArr.length > 0 && me.rationLibs.length > 0){                            me.updateRationBasePrcRq(updateBasePrcArr);                        }*/                    });                }            }        });        me.workBook.commandManager().setShortcutKey(null, GC.Spread.Commands.Key.del, false, false, false, false);        me.workBook.commandManager().setShortcutKey('repositoryGljDel', GC.Spread.Commands.Key.del, false, false, false, false);    },    validUpdateObj: function (pasteObj, rowIdx) {        let rst = {updateGlj: [], updateBasePrcArr: []}, backUpObj = {},            me = repositoryGljObj,            that = gljComponentOprObj,            tempObj = me.currentCache[rowIdx],            reCalBasePrc = false,            isValid = true;        //备份原始数据        for(let atr in tempObj){            backUpObj[atr] = tempObj[atr];        }        if(typeof pasteObj.code !== 'undefined'){            if(pasteObj.code.trim().length !== 0){                let isExist = false;                for(let i = 0; i < me.stdGljList.length; i++){                    if(me.stdGljList[i].code === pasteObj.code){                        isExist = true;                        break;                    }                }                if(!isExist){                    for(let i = 0; i < me.complementaryGljList.length; i++){                        if(me.complementaryGljList[i].code === pasteObj.code){                            isExist = true;                            break;                        }                    }                }                if(!isExist){                    tempObj.code = pasteObj.code;                }                else isValid = false;            }            else isValid = false;        }        if(typeof pasteObj.name !== 'undefined'){            if(pasteObj.name.trim().length === 0) isValid = false;            else tempObj.name = pasteObj.name;        }        if(typeof pasteObj.specs !== 'undefined'){            tempObj.specs = pasteObj.specs;        }        if(typeof pasteObj.unit !== 'undefined'){            tempObj.unit = pasteObj.unit;        }        if(typeof pasteObj.gljType !== 'undefined'){            let isExsit = false;            for(let i = 0; i < me.distTypeTree.comboDatas.length; i++){                if(pasteObj.gljType === me.distTypeTree.comboDatas[i].text){                    isExsit = true;                    reCalBasePrc = true;                    //                    if(me.componentGljType.indexOf(tempObj.gljType) !== -1 &&                        !(tempObj.gljType === 302 && pasteObj.gljType === 303) && !(tempObj.gljType === 303 && pasteObj.gljType === 302)){//修改了原本是组成物的工料机                        //寻找所有引用了此组成物的工料机,并从组成物中删去此工料机,并重算单价                        let updateGljs = me.getUpdateGljs(tempObj, true);                        if(updateGljs.updateArr.length > 0 || updateGljs.updateBasePrcArr.length > 0){                            for(let i = 0; i < updateGljs.updateArr.length; i++){                                rst.updateGlj.push(updateGljs.updateArr[i]);                            }                            for(let i = 0; i < updateGljs.updateBasePrcArr.length; i++){                                rst.updateBasePrcArr.push(updateGljs.updateBasePrcArr[i]);                            }                        }                    }                    tempObj.component = tempObj.gljType === me.distTypeTree.comboDatas[i].value ? tempObj.component : [];                    if(me.allowComponent.indexOf(tempObj.gljType) !== -1){                        tempObj.basePrice = tempObj.gljType === me.distTypeTree.comboDatas[i].value ? tempObj.basePrice : 0;                    }                    tempObj.gljType = me.distTypeTree.comboDatas[i].value;                    tempObj.shortName = me.distTypeTree.distTypes[me.distTypeTree.prefix + tempObj.gljType].data.shortName;                    break;                }            }            if(!isExsit) isValid = false;        }        //        pasteObj.basePrice = !isNaN(parseFloat(pasteObj.basePrice)) && (pasteObj.basePrice && typeof pasteObj.basePrice !== 'undefined') ? scMathUtil.roundTo(parseFloat(pasteObj.basePrice), 2) :            me.currentCache[rowIdx].basePrice;        if(pasteObj.basePrice !== me.currentCache[rowIdx].basePrice){            reCalBasePrc = true;            tempObj.basePrice = pasteObj.basePrice;            let updateGljs = me.getUpdateGljs(tempObj, false);            if(updateGljs.updateArr.length > 0 || updateGljs.updateBasePrcArr.length > 0){                for(let i = 0; i < updateGljs.updateArr.length; i++){                    rst.updateGlj.push(updateGljs.updateArr[i]);                }                for(let i = 0; i < updateGljs.updateBasePrcArr.length; i++){                    rst.updateBasePrcArr.push(updateGljs.updateBasePrcArr[i]);                }            }        }        if(isValid){            rst.updateGlj.push(tempObj);            if(reCalBasePrc){                //重新计算定额基价对象                //rst.updateBasePrc = {gljId: tempObj.ID, gljType: tempObj.gljType, basePrice: tempObj.basePrice};                let newReObj = {gljId: tempObj.ID, gljType: tempObj.gljType, basePrice: tempObj.basePrice};                rst.updateBasePrcArr.push(newReObj);            }        }        else {            for(let attr in backUpObj){                tempObj[attr] = backUpObj[attr];            }        }        return rst;    },    //粘贴的数据是否是可添加的数据,只有含有编号,名称,类型才可添加    isValidObj: function(pasteObj) {        let me = repositoryGljObj;        if(!(pasteObj.code && typeof pasteObj.code !== 'undefined') || !(pasteObj.name && typeof pasteObj.name !== 'undefined') ||            !(pasteObj.gljType && typeof pasteObj.gljType !== 'undefined')){            return false;        }        if(pasteObj.gljType && typeof pasteObj.gljType !== 'undefined'){            let isExist = false;            for(let i = 0; i < me.distTypeTree.comboDatas.length; i++){                if(me.distTypeTree.comboDatas[i].text === pasteObj.gljType){                    isExist = true;                    pasteObj.gljType = me.distTypeTree.comboDatas[i].value;                    pasteObj.shortName = me.distTypeTree.distTypes[me.distTypeTree.prefix + pasteObj.gljType].data.shortName;                    break;                }            }            if(!isExist){                return false;            }        }        if(pasteObj.code && typeof pasteObj.code !== 'undefined'){            for(let i = 0; i < me.stdGljList.length; i++){                if(me.stdGljList[i].code === pasteObj.code){                    return false;                }            }            for(let i = 0; i < me.complementaryGljList.length; i++){                if(me.complementaryGljList[i].code === pasteObj.code){                    return false;                }            }        }        pasteObj.basePrice = !isNaN(parseFloat(pasteObj.basePrice)) && (pasteObj.basePrice && typeof pasteObj.basePrice !== 'undefined') ? parseFloat(pasteObj.basePrice) : 0;        if(!me.parentNodeIds["_pNodeId_" + me.gljCurTypeId]){            pasteObj.gljClass = me.gljCurTypeId;        }        return true;    },    canPasted: function (info) {        let rst = true;        let me = repositoryGljObj;        if(me.gljCurTypeId < 0){            return false;        }        if(info.cellRange.col + info.cellRange.colCount - 1 > me.setting.header.length - 2){            return false;        }        if(info.cellRange.row < me.currentCache.length){            if(info.cellRange.col === 0){                return false;            }            else if(info.cellRange.col <= 4 && info.cellRange.col + info.cellRange.colCount - 1 >= 4){                for(let i = 0, len = info.cellRange.rowCount; i < len; i++){                    let row = i + info.cellRange.row;                    if(row < me.currentCache.length){                        if(me.allowComponent.indexOf(me.currentCache[row].gljType) !== -1){                            rst = false;                        }                    }                    else {                        break;                    }                }            }        }        return rst;    },    onClipboardPasting: function(sender, args) {        let me = repositoryGljObj;        let maxCol = args.cellRange.col + args.cellRange.colCount - 1;        if (!me.canPasted(args)) {            args.cancel = true;        }    },    onClipboardPasted: function(e, info) {      //  if(info.pasteData.text.trim().length > 0){            let me = repositoryGljObj;            let updateArr = [], addArr = [];            let items = sheetOpr.analyzePasteData(me.setting, info);            let beginRow = info.cellRange.row, endRow = info.cellRange.row + info.cellRange.rowCount - 1,//复制的起始行数和结束行数                maxRow = me.currentCache.length - 1,//当前数据最大行数                updateBasePrcArr = [] ,                updateCount, resumeArr = [];            if(endRow <= maxRow){                //updateItems = items;                for(let i = 0; i < items.length; i++){                    let updateObj = me.validUpdateObj(items[i], info.cellRange.row + i);                    if(updateObj && typeof updateObj.updateGlj !== 'undefined' && updateObj.updateGlj.length > 0){                        //updateArr = updateObj.updateGlj;                        updateArr = updateArr.concat(updateObj.updateGlj);                        if(typeof updateObj.updateBasePrcArr !== 'undefined'){                            updateBasePrcArr = updateBasePrcArr.concat(updateObj.updateBasePrcArr);                         }                    }                    else{                        resumeArr.push(info.cellRange.row + i);                    }                }            }            else if(beginRow <= maxRow && endRow > maxRow){                updateCount = maxRow - beginRow + 1;                for(let i = 0; i < updateCount; i++){                    let updateObj = me.validUpdateObj(items[i], info.cellRange.row + i);                    if(updateObj && typeof updateObj.updateGlj !== 'undefined'){                        //updateArr = updateObj.updateGlj;                        updateArr = updateArr.concat(updateObj.updateGlj);                        if(typeof updateObj.updateBasePrcArr !== 'undefined'){                            updateBasePrcArr = updateBasePrcArr.concat(updateObj.updateBasePrcArr);                        }                    }                    else{                        resumeArr.push(info.cellRange.row + i);                    }                }                if(info.cellRange.colCount === me.setting.header.length -1){                    for(let i = updateCount ; i < items.length; i++){                        if(me.isValidObj(items[i])){                            items[i].component = [];                            //类型为混凝土、砂浆、配合比、机械时,基价只能组成物计算                            if(me.allowComponent.indexOf(items[i].gljType) !== -1){                                items[i].basePrice = 0;                            }                            addArr.push(items[i]);                        }                        else{                            resumeArr.push(info.cellRange.row + i);                        }                    }                }                else{                    for(let i = updateCount ; i < items.length; i++){                        resumeArr.push(info.cellRange.row + i);                    }                }            }            else{                if(info.cellRange.colCount === me.setting.header.length -1){                    for(let i = 0; i < items.length; i++){                        if(me.isValidObj(items[i])){                            items[i].component = [];                            if(me.allowComponent.indexOf(items[i].gljType) !== -1){                                items[i].basePrice = 0;                            }                            addArr.push(items[i]);                        }                        else{                            resumeArr.push(info.cellRange.row + i);                        }                    }                }                else{                    for(let i = 0; i < items.length; i++){                        resumeArr.push(info.cellRange.row + i);                    }                }            }            //repaint            if(resumeArr.length > 0){                let sheet = me.workBook.getActiveSheet();                sheet.suspendPaint();                for(let i = 0; i < resumeArr.length ; i++){                    if(resumeArr[i] < me.currentCache.length){                        for(let col = 0; col < me.setting.header.length -1; col++){                            if(me.setting.header[col].dataCode === 'gljType'){                                let gljType = me.currentCache[resumeArr[i]][me.setting.header[col].dataCode];                                sheet.setValue(resumeArr[i], col, me.distTypeTree.distTypes["gljType" + gljType].data.fullName);                            }                            else{                                sheet.setValue(resumeArr[i], col, me.currentCache[resumeArr[i]][me.setting.header[col].dataCode]);                            }                        }                    }                    else{                        for(let col = 0; col < me.setting.header.length - 1; col++){                            sheet.setValue(resumeArr[i], col, '', GC.Spread.Sheets.SheetArea.viewport);                        }                    }                }                sheet.resumePaint();            }            if (updateArr.length > 0 || addArr.length > 0) {                me.mixUpdateRequest(updateArr, addArr, []);            }            if(updateBasePrcArr.length > 0 && me.rationLibs.length > 0){                me.updateRationBasePrcRq(updateBasePrcArr);            }       // }      /*  else{//解决bug: 从原本的sheet复制一行数据,会两次调用粘贴事件函数..,todo:找出原因            for(let i = 0, len = info.cellRange.rowCount; i < len; i++){                for(let col = 0; col < 6; col++){                    info.sheet.setValue(info.cellRange.row + i, col, '');                }            }        }*/    },    updateRationBasePrcRq: function (basePrcArr) {        CommonAjax.post('complementartGlj/api/updateRationBasePrc', {basePrcArr: basePrcArr}, function (rstData) {        });    },  /*  getRationGljIds: function (repId) {        let me = repositoryGljObj;        $.ajax({            type: 'post',            url: 'api/getRationGljIds',            data: {data: JSON.stringify({repId: repId})},            dataType: 'json',            success: function(result){                if(!result.error){                    me.rationGljIds = result.data;                }            }        });    },*/    mixUpdateRequest: function(updateArr, addArr, removeIds) {        let me = repositoryGljObj;        if(updateArr.length > 0){            me.saveInString(updateArr);        }        if(addArr.length > 0){            me.saveInString(addArr);        }        let url = 'complementartGlj/api/mixUpdateGljItems';        let post = {updateItems: updateArr, addItems: addArr, removeIds: removeIds};        let scCaller = function (rstData) {            me.updateCache(addArr, updateArr, removeIds, rstData);            me.sortGlj(me.complementaryGljList);            if(me.currentOprParent === 1){                me.currentCache = me.getParentCache(me.parentNodeIds["_pNodeId_" + me.gljCurTypeId]);            }            else{                me.currentCache = me.getCache();            }            me.showGljItems(me.complementaryGljList, me.gljCurTypeId);            //getCurrentGlj            let row = me.workBook.getSheet(0).getSelections()[0].row;            me.currentGlj = row < me.currentCache.length ? me.currentCache[row] : null;            me.currentComponent = me.currentGlj ?  me.getCurrentComponent(me.currentGlj.component) : [];            sheetOpr.cleanData(gljComponentOprObj.workBook.getSheet(0), gljComponentOprObj.setting, -1);            sheetOpr.showData(gljComponentOprObj.workBook.getSheet(0), gljComponentOprObj.setting, me.currentComponent);        }        let errCaller = function (err) {            alert('保存失败');        };        CommonAjax.post(url, post, scCaller, errCaller);    },    saveInString: function (datas) {        for(let i = 0, len = datas.length; i < len; i++){            let data = datas[i];            if(_exist(data, 'basePrice')){                data['basePrice'] = data['basePrice'].toString();            }            if(_exist(data, 'component')){                for(let j = 0, jLen = data['component'].length; j < jLen; j++){                    let comGljObj = data['component'][j];                    if(_exist(comGljObj, 'consumeAmt')){                        comGljObj['consumeAmt'] = comGljObj['consumeAmt'].toString();                    }                }            }        }        function _exist(data, attr){            return data && data[attr] !== undefined && data[attr];        }    },    getParentCache: function (nodes) {        let me = repositoryGljObj, rst = [];        for(let i = 0; i < me.complementaryGljList.length; i++){            if(nodes.indexOf(me.complementaryGljList[i].gljClass) !== -1){                rst.push(me.complementaryGljList[i]);            }        }        rst.sort(function (a, b) {            let rst = 0;            if(a.code > b.code) rst = 1;            else if(a.code < b.code)rst = -1;            return rst;        });        return rst;    },    getCache: function() {        let me = this, rst = [];        for (let i = 0; i < me.complementaryGljList.length; i++) {            if (me.complementaryGljList[i].gljClass == me.gljCurTypeId) {                rst.push(me.complementaryGljList[i]);            }        }        return rst;    },    updateCache: function(addArr, updateArr, removeIds, rstData) {        let me = this, cacheSection = me.complementaryGljList;        if (addArr.length > 0) {            me.complementaryGljList = me.complementaryGljList.concat(addArr);            cacheSection = me.complementaryGljList;        }        for (let i = removeIds.length - 1; i >= 0; i--) {            for (let j = cacheSection.length - 1; j >= 0 ; j--) {                if (cacheSection[j]["ID"] == removeIds[i]) {                    cacheSection.splice(j,1);                }            }        }        if (rstData && rstData.ops && rstData.ops.length > 0) {            for (let i = 0; i < rstData.ops.length; i++) {                for (let j = 0; j < cacheSection.length; j++) {                    if (cacheSection[j][me.setting.header[0].dataCode] == rstData.ops[i][me.setting.header[0].dataCode]) {                        cacheSection[j]["ID"] = rstData.ops[i]["ID"];                    }                }            }        }        for (let i = 0; i < updateArr.length; i++) {            for (let j = 0; j < cacheSection.length; j++) {                if (updateArr[i]["ID"] && cacheSection[j]["ID"]) {                    if (cacheSection[j]["ID"] == updateArr[i]["ID"]) {                        cacheSection[j] = updateArr[i];                    }                } else {                    if (cacheSection[j][me.setting.header[0].dataCode] == updateArr[i][me.setting.header[0].dataCode]) {                        cacheSection[j] = updateArr[i];                    }                }            }        }        //allgljs    },    setProp: function (prop, value, gljList) {        let me = this;        for(let i = 0, len = gljList.length; i < len; i++){            gljList[i][prop] = value;        }    },    sortGlj: function(gljList) {        let me = this;        gljList.sort(function(a, b){            let rst = 0;            if (a.code > b.code) rst = 1            else if (a.code < b.code) rst = -1;            return rst;        });    }}let gljTypeTreeOprObj = {    onClick: function(event,treeId,treeNode) {        let me = repositoryGljObj,            that = gljComponentOprObj,            gljTypeId = treeNode.ID;        me.gljCurTypeId = treeNode.ID;        //消除新增到一半的数据        me.addGljObj = null;        //me.currentCache = me.getCache();        sheetOpr.cleanData(that.workBook.getSheet(0), that.setting, 5);        if (me.parentNodeIds["_pNodeId_" + treeNode.ID]) {            me.currentOprParent = 1;            me.currentCache = me.getParentCache(me.parentNodeIds["_pNodeId_" + treeNode.ID]);            me.workBook.getSheet(0).setRowCount(me.currentCache.length);        } else {            me.currentOprParent = 0;            me.currentCache = me.getCache();        }        me.showGljItems(me.complementaryGljList, gljTypeId);    }}
 |