123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488 |
- /**
- * Created by CSL on 2017-06-08.
- */
- //modified by zhong on 2017-09-25
- var rationCoeOprObj = {
- sheet: null,
- libID: null,
- curRation: null,
- tempDelArr: [],
- cache: {},
- setting: {
- header:[
- {headerName:"编号",headerWidth:50,dataCode:"serialNo", dataType: "Number", hAlign: 'center'},
- {headerName:"名称",headerWidth:280,dataCode:"name", dataType: "String", hAlign: 'left'},
- {headerName:"内容",headerWidth:150,dataCode:"content", dataType: "String", hAlign: 'left'}
- ],
- view:{
- comboBox:[],
- lockColumns:[1,2]
- }
- },
- buildSheet: function(sheet) {
- var me = this;
- me.sheet = sheet;
- me.libID = pageOprObj.rationLibId; // 不可靠,有时取不到
- if (me.libID == undefined){me.libID = getQueryString('repository')};
- sheetCommonObj.initSheet(me.sheet, me.setting, 30);
- me.sheet.bind(GC.Spread.Sheets.Events.ClipboardPasting, me.onClipboardPasting);
- me.sheet.bind(GC.Spread.Sheets.Events.ClipboardPasted, me.onClipboardPasted);
- me.sheet.bind(GC.Spread.Sheets.Events.EditStarting, me.onEditStarting);
- me.sheet.bind(GC.Spread.Sheets.Events.EditEnded, me.onEditEnded);
- },
- isDef: function (v) {
- return v !== undefined && v !== null;
- },
- onContextmenuOpr: function () {
- let raCoe = rationCoeOprObj;
- $.contextMenu({
- selector: '#rdSpread',
- build: function($triggerElement, e){
- //控制允许右键菜单在哪个位置出现
- let sheet = raCoe.sheet;
- let offset = $("#rdSpread").offset(),
- x = e.pageX - offset.left,
- y = e.pageY - offset.top;
- let target = sheet.hitTest(x, y);
- if(sheet.getParent().getActiveSheetIndex() === 2 && target.hitTestType === 3 && typeof target.row !== 'undefined' && typeof target.col !== 'undefined'){//在表格内
- let currentCache = raCoe.isDef(raCoe.cache["_Coe_" + raCoe.curRation.ID]) ? raCoe.cache["_Coe_" + raCoe.curRation.ID] : [];
- sheet.setActiveCell(target.row, target.col);
- //控制按钮是否可用
- let upDis = false,
- downDis = false,
- refDis = false;
- if(target.row >= currentCache.length){
- upDis = true;
- downDis = true;
- refDis = true;
- }
- else {
- if(!raCoe.isDef(currentCache[target.row - 1])){
- upDis = true;
- }
- if(!raCoe.isDef(currentCache[target.row + 1])){
- downDis = true;
- }
- }
- return {
- callback: function(){},
- items: {
- "upMove": {name: "上移", disabled: upDis, icon: "fa-arrow-up", callback: function (key, opt) {
- raCoe.upMove(currentCache[target.row], currentCache[target.row - 1], {row: target.row - 1, col: target.col});
- }},
- "downMove": {name: "下移", disabled: downDis, icon: "fa-arrow-down", callback: function (key, opt) {
- raCoe.downMove(currentCache[target.row], currentCache[target.row + 1], {row: target.row + 1, col: target.col});
- }},
- "ref": {name: "添加到本节其他定额", disabled: refDis, icon: "fa-arrow-left", callback: function (key, opt) {
- raCoe.updateSectionRation(rationOprObj.currentRations["_SEC_ID_" + rationOprObj.currentSectionId], currentCache[target.row], function (updateArr) {
- for(let i = 0, len = updateArr.length; i < len; i++){
- let ration = updateArr[i];
- let rationCoeList = updateArr[i].rationCoeList;
- let newNo = 1;
- for(let j = 0, jLen = rationCoeList.length; j < jLen; j++){
- if(rationCoeList[j].no >= newNo){
- newNo = rationCoeList[j].no + 1;
- }
- }
- let theCache = raCoe.cache["_Coe_" + ration.ID];
- if(theCache !== undefined && theCache !== null){
- let newCoe = {};
- for(let attr in currentCache[target.row]){
- newCoe[attr] = currentCache[target.row][attr];
- }
- newCoe.no = newNo;
- theCache.push(newCoe);
- }
- }
- });
- }}
- }
- };
- }
- else{
- return false;
- }
- }
- });
- },
- upMove: function (thisObj, preObj, cell) {
- let me = this;
- let tempNo = thisObj.no;
- thisObj.no = preObj.no;
- preObj.no = tempNo;
- //ajax
- me.updateCurRation(function () {
- me.showCoeItems(me.curRation.ID);
- me.sheet.setActiveCell(cell.row, cell.col);
- });
- },
- downMove: function (thisObj, nextObj, cell) {
- let me = this;
- let tempNo = thisObj.no;
- thisObj.no = nextObj.no;
- nextObj.no = tempNo;
- me.updateCurRation(function () {
- me.showCoeItems(me.curRation.ID);
- me.sheet.setActiveCell(cell.row, cell.col);
- });
- },
- //本节所有使用此条件
- useAll: function (coe) {
- },
- sortByNo: function (cache) {
- cache.sort(function (a, b) {
- let rst = 0;
- if(a.no > b.no){
- rst = 1;
- }
- else if(a.no < b.no){
- rst = -1;
- }
- return rst;
- });
- },
- onClipboardPasting: function(sender, args) {
- var me = rationCoeOprObj;
- let rationSection = rationOprObj.getCache();
- let rationRow = rationOprObj.workBook.getActiveSheet().getSelections()[0].row;
- me.curRation = rationRow < rationSection.length ? rationSection[rationRow] : null;
- if (args.cellRange.colCount != 1 || args.cellRange.col != 0 || !(me.curRation)) {
- args.cancel = true;
- }
- },
- onClipboardPasted: function(e, info) {
- var me = rationCoeOprObj;
- if (me.libID) {
- // 修改第一列(编号)
- if (info.cellRange.col == 0) {
- me.tempDelArr = [];
- var coeNos = [];
- var items = sheetCommonObj.analyzePasteData({header:[{dataCode: "serialNo"}] }, info);
- let curCache = typeof me.cache["_Coe_" + me.curRation.ID] !== 'undefined' ? me.cache["_Coe_" + me.curRation.ID] : [];
- let isRefresh = false;
- for(let i = 0, len = items.length; i < len; i++){
- if(!isNaN(items[i].serialNo)){
- let row = i + info.cellRange.row;
- //update
- if(row < curCache.length){
- let isExist = false;
- for(let j = 0, jLen = curCache.length; j < jLen; j++){
- if(items[i].serialNo === curCache[j].serialNo && j !== row){
- isExist = true;
- break;
- }
- }
- if(!isExist){
- me.tempDelArr.push({org: curCache[row], newNo: items[i].serialNo});
- coeNos.push(items[i].serialNo);
- }
- else{
- isRefresh = true;
- }
- }
- else{
- coeNos.push(items[i].serialNo);
- }
- }
- }
- //delete in front
- if(me.tempDelArr.length > 0){
- for(let i = 0, len = me.tempDelArr.length; i < len; i++){
- for(let j = 0; j < curCache.length; j++){
- if(me.tempDelArr[i].org.serialNo === curCache[j].serialNo){
- curCache.splice(j, 1);
- break;
- }
- }
- }
- }
- me.addCoeItems(coeNos);
- if(isRefresh){
- me.showCoeItems(me.curRation.ID);
- }
- } else {
- //修改其它列。
- }
- }
- },
- onEditStarting: function (sender, args) {
- let me = rationCoeOprObj;
- let rationSection = rationOprObj.getCache();
- let rationRow = rationOprObj.workBook.getActiveSheet().getSelections()[0].row;
- me.curRation = rationRow < rationSection.length ? rationSection[rationRow] : null;
- if(!me.curRation || args.col !== 0){
- args.cancel = true;
- }
- },
- onEditEnded: function(sender, args){
- var me = rationCoeOprObj;
- if (args.col == 0 && args.editingText && args.editingText.toString().trim().length > 0 && !isNaN(args.editingText)) { // 编号列
- let curCahe = typeof me.cache["_Coe_" + me.curRation.ID] !== 'undefined' ? me.cache["_Coe_" + me.curRation.ID] : [];
- me.tempDelArr = [];
- //update
- if(args.row < curCahe.length && args.editingText != curCahe[args.row].serialNo){
- let isExist = false;
- for(let i = 0, len = curCahe.length; i < len; i++){
- if(args.editingText == curCahe[i].serialNo){
- isExist = true;
- break;
- }
- }
- if(!isExist){
- me.tempDelArr.push({org: curCahe[args.row], newNo: args.editingText});
- curCahe.splice(args.row, 1);
- me.addCoeItems([args.editingText]);
- }
- else{
- me.showCoeItems(me.curRation.ID);
- }
- }
- //insert
- else{
- me.addCoeItems([args.editingText]);
- }
- }
- else{
- sheetCommonObj.cleanData(me.sheet, me.setting, -1);
- me.showCoeItems(me.curRation.ID);
- }
- },
- bindRationCoeDel: function () {
- if (locked) {
- return;
- }
- let me = rationCoeOprObj;
- let workBook = me.sheet.getParent();
- workBook.commandManager().register('rationCoeDel', function () {
- let sels = me.sheet.getSelections(), isUpdate = false;
- let curCahe = me.cache["_Coe_" + me.curRation.ID];
- for(let i = 0, len = sels.length; i < len; i ++ ){
- if(sels[i].colCount === me.setting.header.length){
- if(sels[i].row < curCahe.length){
- isUpdate = true;
- curCahe.splice(sels[i].row, sels[i].rowCount);
- }
- }
- }
- if(isUpdate){
- me.updateCurRation(function () {
- me.sheet.getParent().focus(true);
- });
- sheetCommonObj.cleanData(me.sheet, me.setting, -1);
- me.showCoeItems(me.curRation.ID);
- }
- });
- workBook.commandManager().setShortcutKey(null, GC.Spread.Commands.Key.del, false, false, false, false);
- workBook.commandManager().setShortcutKey('rationCoeDel', GC.Spread.Commands.Key.del, false, false, false, false);
- },
- getRecoveryArr: function (tempDelArr, newArr) {//获得更新的coe不存在,恢复删除的被更新数据
- let rst = [];
- for(let i = 0, len = tempDelArr.length; i < len; i++){
- let isExist = false;
- for(let j = 0, jLen = newArr.length; j < jLen; j++){
- if(tempDelArr[i].newNo == newArr[j].serialNo){
- isExist = true;
- break;
- }
- }
- if(!isExist){
- rst.push(tempDelArr[i].org);
- }
- }
- return rst;
- },
- addCoeItems: function(coeNos) {
- var me = this;
- sheetCommonObj.cleanData(me.sheet, me.setting, -1);
- var curCache = me.cache["_Coe_" + me.curRation.ID];
- var temp = [];
- if (curCache) {
- for (var i = 0; i < coeNos.length; i++) {
- var isExist = false;
- for (let obj of curCache) {
- if (obj.serialNo == coeNos[i]) {
- isExist = true;
- break;
- };
- };
- if (!isExist) {
- temp.push(coeNos[i]);
- };
- };
- }else{
- for (let obj of coeNos){temp.push(obj)};
- };
- if(temp.length == 0){
- me.showCoeItems(me.curRation.ID);
- //sheetCommonObj.lockCells(me.sheet, me.setting);
- }else{
- $.ajax({
- type:"POST",
- url:"api/getCoeItemsByNos",
- data: {"data": JSON.stringify({"libID": me.libID, "coeNos": temp})},
- dataType:"json",
- cache:false,
- timeout:5000,
- success:function(result){
- if (result) {
- var rstArr = [];
- let newNo = curCache && curCache.length > 0 ? curCache[curCache.length - 1].no + 1 : 1;
- for (let obj of result.data){
- obj.no = newNo++;
- rstArr.push(obj)
- }
- if (curCache) {
- curCache = curCache.concat(rstArr);
- }else{
- curCache = rstArr;
- }
- let recoveryArr = me.getRecoveryArr(me.tempDelArr, result.data);
- if(recoveryArr.length > 0){
- curCache = curCache.concat(recoveryArr);
- }
- me.cache["_Coe_" + me.curRation.ID] = curCache;
- me.updateCurRation(function () {
- me.sheet.getParent().focus(true);
- });
- me.showCoeItems(me.curRation.ID);
- };
- //sheetCommonObj.lockCells(me.sheet, me.setting);
- },
- error:function(err){
- alert(err);
- }
- });
- };
- },
- getCoeItems: function(ration, callback) {
- var me = this;
- me.curRation = ration;
- /*if (ration == undefined || ration.rationCoeList == undefined ||
- ration.rationCoeList.length == 0){return;};*/
- var coeList = ration.rationCoeList;
- let coeIDs = [];
- for(let i = 0, len = coeList.length; i < len; i++){
- coeIDs.push(coeList[i].ID);
- }
- var curCache = me.cache["_Coe_" + ration.ID];
- if (curCache) {
- me.showCoeItems(ration.ID);
- //sheetCommonObj.lockCells(me.sheet, me.setting);
- } else if(!curCache && typeof coeList !== 'undefined' && coeList.length > 0) {
- var data = {"libID": me.libID, "coeIDs": coeIDs};
- $.ajax({
- type:"POST",
- url:"api/getCoeItemsByIDs",
- data: {"data": JSON.stringify(data)},
- dataType:"json",
- cache:false,
- timeout:5000,
- success:function(result){
- sheetCommonObj.cleanData(me.sheet, me.setting, -1);
- if (result.data) {
- var tempResult = [];
- for (let obj of result.data) {
- for(let i = 0, len = coeList.length; i < len; i++){
- if(obj.ID === coeList[i].ID){
- obj.no = coeList[i].no;
- tempResult.push(obj);
- break;
- }
- }
- };
- me.cache["_Coe_" + ration.ID] = tempResult;
- me.showCoeItems(ration.ID);
- }
- if(callback) callback();
- },
- error:function(err){
- alert(err);
- }
- });
- };
- },
- showCoeItems: function(rationID) {
- var me = this;
- var curCache = me.cache["_Coe_" + rationID];
- if (curCache) {
- curCache.sort(function(a, b) {
- var rst = 0;
- if (a.no > b.no) rst = 1
- else if (a.no < b.no) rst = -1;
- return rst;
- });
- sheetsOprObj.showData(me.sheet, me.setting, curCache);
- }
- },
- updateCurRation: function(callback) {
- var me = this, updateArr = [];
- if (me.curRation) {
- var rst = [];
- var curCache = me.cache["_Coe_" + me.curRation.ID];
- if (curCache) {
- for (let obj of curCache) {
- rst.push({ID: obj.ID, no: obj.no});
- }
- me.curRation.rationCoeList = rst;
- updateArr.push(me.curRation);
- rationOprObj.mixUpdateRequest(updateArr, [], [], function () {
- if(callback) callback();
- });
- }
- }
- },
- //更新本节所有定额
- updateSectionRation: function (rations, coe, callback) {
- let me = this;
- let updateArr = [];
- for(let i = 0, len = rations.length; i < len; i++){
- if(rations[i].ID !== me.curRation.ID){
- let rationCoeList = rations[i].rationCoeList;
- let isExist = false;
- let newNo = 1;
- for(let j = 0, jLen = rationCoeList.length; j < jLen; j++){
- if(rationCoeList[j].no >= newNo){
- newNo = rationCoeList[j].no + 1;
- }
- if(rationCoeList[j].ID === coe.ID){
- isExist = true;
- }
- }
- if(!isExist){
- rationCoeList.push({ID: coe.ID, no: newNo});
- updateArr.push(rations[i]);
- }
- }
- }
- if(updateArr.length > 0){
- rationOprObj.mixUpdateRequest(updateArr, [], [], function () {
- if(callback) callback(updateArr);
- });
- }
- }
- }
|