1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084 |
- /**
- * Created by Zhong on 2017/8/31.
- * 特征及内容
- */
- let contentOprObj = {
- workBook: null,
- currentCache: [],//按照serialNo排序
- setting: {
- header: [
- {headerName:"工作内容",headerWidth:160,dataCode:"content", dataType: "String", hAlign: "left", vAlign: "center"},
- {headerName:"输出",headerWidth:80,dataCode:"isChecked", cellType:"checkBox", hAlign: "center", vAlign: "center"}
- ]
- },
- buildSheet: function(container) {
- let me = contentOprObj;
- me.workBook = sheetCommonObj.buildSheet(container, me.setting, 30);
- me.workBook.options.allowUserDragDrop = false;
- me.workBook.getSheet(0).setColumnWidth(0, 20, GC.Spread.Sheets.SheetArea.rowHeader);
- me.workBook.options.allowCopyPasteExcelStyle = false;
- me.onContextmenuOpr();//右键菜单
- me.bindEvents(me.workBook);
- },
- bindEvents: function (workBook) {
- let sheet = workBook.getActiveSheet(), me = contentOprObj;
- const EVENTS = GC.Spread.Sheets.Events;
- workBook.bind(EVENTS.ButtonClicked, me.onButtonClicked);
- sheet.bind(EVENTS.EditEnded, me.onEditEnded);
- sheet.bind(EVENTS.ClipboardPasting, me.onClipboardPasting);
- sheet.bind(EVENTS.ClipboardPasted, me.onClipboardPasted);
- },
- //将从清单库中添加的清单,把标准清单的工作内容转化成清单的工作内容
- buildJobContent: function (jobs) {
- let jobContent = [];
- for(let i = 0, len = jobs.length; i < len; i++){
- let newJob = {serialNo: i + 1, content: jobs[i].content, isChecked: true};//从清单库添加过来的默认输出
- jobContent.push(newJob);
- }
- return jobContent;
- },
- //显示在jobSpread的数据
- showContentData: function (sheet, setting, datas) {
- sheetCommonObj.showData(sheet, setting, datas);
- sheet.suspendPaint();
- sheet.suspendEvent();
- for(let i = 0, len = datas.length; i < len; i++){
- sheet.getCell(i, 0).locked(true);
- }
- sheet.resumePaint();
- sheet.suspendEvent();
- },
- //显示到清单工作内容列的数据
- getColData: function (jobsArr) {
- let me = contentOprObj;
- let rstStr = "", count = 0;
- for(let i = 0, len = jobsArr.length; i < len; i++){
- if(jobsArr[i].isChecked === true){
- count ++;
- /* if(count === 1){
- rstStr += "“";
- }
- else{
- rstStr += " ";
- }*/
- rstStr += count + ". " + jobsArr[i].content + "\n";
- }
- }
- if(rstStr.trim().length > 0){
- let reg = /\n+$/g;
- let newStr = rstStr.replace(reg, "");
- return newStr;
- }
- return null;
- },
- //新增行
- addRow: function (sheet) {
- let checkBox = new GC.Spread.Sheets.CellTypes.CheckBox();
- checkBox.isThreeState = false;
- sheet.addRows(sheet.getRowCount(), 1);
- sheet.getCell(sheet.getRowCount() - 1, 1).cellType(checkBox);
- },
- upMove: function (cell) {
- let me = contentOprObj;
- let thisObj = me.currentCache[cell.row],
- preObj = me.currentCache[cell.row - 1],
- temp, contentTxt;
- temp = thisObj.serialNo;
- thisObj.serialNo = preObj.serialNo;
- preObj.serialNo = temp;
- me.sortCache(me.currentCache);
- me.save(function () {
- me.workBook.getSheet(0).setActiveCell(cell.row - 1, cell.col);
- });
- },
- downMove: function (cell) {
- let me = contentOprObj;
- let thisObj = me.currentCache[cell.row],
- nextObj = me.currentCache[cell.row + 1],
- temp, contentTxt;
- temp = thisObj.serialNo;
- thisObj.serialNo = nextObj.serialNo;
- nextObj.serialNo = temp;
- me.sortCache(me.currentCache);
- me.save(function () {
- me.workBook.getSheet(0).setActiveCell(cell.row + 1, cell.col);
- });
- },
- deleteContent: function (rowIdx) {
- let me = contentOprObj;
- me.currentCache.splice(rowIdx, 1);
- me.save();
- },
- //更新
- updateContent: function (job, newContent) {
- job.content = newContent;
- },
- //新增
- insertContent: function (content) {
- let me = contentOprObj;
- let preObj = me.currentCache.length > 0 ? me.currentCache[me.currentCache.length - 1] : null;
- let newObj = {content: content, isCheceked: false, serialNo: preObj ? preObj.serialNo + 1 : 1};
- me.currentCache.push(newObj);
- },
- save: function (callback) {
- let selectedNode = projectObj.mainController.tree.selected;
- const setting = projectObj.project.property.addRule !== undefined ? projectObj.project.property.addRule : getAddRuleSetting();
- pageCCOprObj.setCharacterBySetting(contentOprObj, selectedNode, setting, callback);
- },
- onEditEnded: function (sender, args) {
- let me = contentOprObj;
- let preObj = me.currentCache.length > 0 ? me.currentCache[me.currentCache.length - 1] : null;
- let contentTxt;
- if(args.editingText && args.editingText.toString().trim().length > 0){
- //更新
- if(args.row < me.currentCache.length ){
- me.updateContent(me.currentCache[args.row], args.editingText);
- }
- //新增
- else{
- me.insertContent(args.editingText);
- }
- //保存
- me.save();
- }
- else{
- //恢复
- args.sheet.setValue(args.row, args.col, me.currentCache.length > args.row ? me.currentCache[args.row].content + '' : '');
- }
- },
- //复选框控制输出
- onButtonClicked: function (sender, args) {
- let me = contentOprObj, contentTxt;
- if(args.sheet.isEditing()){
- args.sheet.endEdit(true);
- }
- let isChecked = args.sheet.getValue(args.row, args.col);
- if(me.currentCache.length > args.row){
- me.currentCache[args.row].isChecked = isChecked;
- me.save();
- }
- //else的情况就是新增
- else{
- //还没数据清空复选框
- args.sheet.setValue(args.row, args.col, 0);
- }
- },
- //复制粘贴
- onClipboardPasting: function (sender, args) {
- if(args.cellRange.colCount > 1 || args.cellRange.col !== 0){
- args.cancel = true;
- }
- },
- onClipboardPasted: function (sender, args) {
- let me = contentOprObj;
- let items = sheetCommonObj.analyzePasteData(me.setting, args);
- for(let i = 0, len = items.length; i < len; i++){
- let rowIdx = args.cellRange.row + i;
- //更新
- if(rowIdx < me.currentCache.length){
- me.updateContent(me.currentCache[rowIdx], items[i].content);
- }
- //新增
- else{
- me.insertContent(items[i].content);
- }
- }
- me.save();
- },
- sortCache: function (cacheArr) {
- cacheArr.sort(function (a, b) {
- let rst = 0;
- if(a.serialNo > b.serialNo){
- rst = 1;
- }
- else if(a.serialNo < b.serialNo){
- rst = -1;
- }
- return rst;
- });
- },
- onContextmenuOpr: function () {//右键菜单
- let me = contentOprObj;
- $.contextMenu({
- selector: '#jobSpread',
- build: function($triggerElement, e){
- //控制允许右键菜单在哪个位置出现
- let target = SheetDataHelper.safeRightClickSelection($triggerElement, e, me.workBook);
- let sheet = me.workBook.getSheet(0);
- if(target.hitTestType === 3){//在表格内&& typeof target.row !== 'undefined' && typeof target.col !== 'undefined'
- let insertDis = pageCCOprObj.isBillsType() ? false : true, delDis = false, upDis = false, downDis = false;
- if(typeof target.row !== 'undefined'){
- //控制按钮是否可用
- sheet.setActiveCell(target.row, target.col);
- if(!me.currentCache ||target.row >= me.currentCache.length){//右键定位在有数据的行,删除键才显示可用
- delDis = true;
- downDis = true;
- upDis = true;
- }
- else{//有数据
- if(typeof target.col === 'undefined'){//定位不在表格内
- downDis = true;
- upDis = true;
- delDis = true;
- }
- else{//定位在表格内
- if(target.row === me.currentCache.length -1){//定位在最后一行,不可下移
- downDis = true;
- }
- if(target.row === 0){//定位在第一行,不可上移
- upDis = true;
- }
- }
- }
- }
- else{
- delDis = true;
- downDis = true;
- upDis = true;
- }
- return {
- callback: function(){},
- items: {
- "insert": {name: "添加", disabled: insertDis, icon: "fa-sign-in", callback: function (key, opt) {
- //插入空行
- me.addRow(sheet);
- }},
- "delete": {name: "删除", disabled: delDis, icon: "fa-remove", callback: function (key, opt) {
- me.deleteContent(target.row);
- }},
- "upMove": {name: "上移", disabled: upDis, icon: "fa-arrow-up", callback: function (key, opt) {
- me.upMove({row: target.row, col: target.col});
- }},
- "downMove": {name: "下移", disabled: downDis, icon: "fa-arrow-down", callback: function (key, opt) {
- me.downMove({row: target.row, col: target.col});
- }}
- }
- };
- }
- else{
- return false;
- }
- }
- });
- }
- };
- let characterOprObj = {
- workBook: null,
- currentCache: [],
- setting: {
- header: [
- {headerName:"项目特征",headerWidth:160,dataCode:"character", dataType: "String", hAlign: "left", vAlign: "center"},
- {headerName:"特征值",headerWidth:160,dataCode:"eigenvalue", dataType: "String", cellType: "comboBox", hAlign: "left", vAlign: "center"},
- {headerName:"输出",headerWidth:80,dataCode:"isChecked", cellType:"checkBox", hAlign: "center", vAlign: "center"}
- ]
- },
- buildSheet: function(container) {
- let me = characterOprObj;
- me.workBook = sheetCommonObj.buildSheet(container, me.setting, 30);
- me.workBook.options.allowUserDragDrop = false;
- me.workBook.getSheet(0).setColumnWidth(0, 20, GC.Spread.Sheets.SheetArea.rowHeader);
- me.workBook.options.allowCopyPasteExcelStyle = false;
- me.onContextmenuOpr();
- me.bindEvents(me.workBook);
- },
- bindEvents: function (workBook) {
- let sheet = workBook.getActiveSheet(), me = characterOprObj;
- const EVENTS = GC.Spread.Sheets.Events;
- workBook.bind(EVENTS.ButtonClicked, me.onButtonClicked);
- sheet.bind(EVENTS.EditEnded, me.onEditEnded);
- sheet.bind(EVENTS.EditStarting, me.onEditStart);
- sheet.bind(EVENTS.ClipboardPasting, me.onClipboardPasting);
- sheet.bind(EVENTS.ClipboardPasted, me.onClipboardPasted);
- },
- //将从清单库中添加的清单,把标准清单的项目特征转化成清单的项目特征
- buildItemCharactet: function (items) {//从清单库过来的默认不输出
- let itemCharacter = [];
- for(let i = 0, len = items.length; i < len; i++){
- let newItem = {serialNo: i + 1, character: items[i].content, eigenvalue: [], isChecked: false};
- let eigenvalues = items[i].itemValue;
- for(let j = 0, len = eigenvalues.length; j < len; j++){
- let newValue = {value: eigenvalues[j].value, isSelected: false};
- newItem.eigenvalue.push(newValue);
- }
- itemCharacter.push(newItem);
- }
- return itemCharacter;
- },
- //显示在itemSpread的数据
- showCharacterData: function (sheet, setting, datas) {
- let me = characterOprObj;
- sheetCommonObj.showData(sheet, setting, datas);
- sheet.suspendPaint();
- sheet.suspendEvent();
- for(let i = 0, len = datas.length; i < len; i++){
- let comboObj = me.getComboBox(datas[i]);
- comboObj.combo.editable(false);//不可编辑
- sheet.getCell(i, 1).cellType(comboObj.combo).value(typeof comboObj.selectedValue !== 'undefined' ? comboObj.selectedValue : '');
- sheet.getCell(i, 0).locked(true);
- }
- sheet.resumePaint();
- sheet.suspendEvent();
- },
- //获得项目特征特征值comboBox
- getComboBox: function (characterItem) {
- let rst = {};
- let combo = new GC.Spread.Sheets.CellTypes.ComboBox();
- let comboItems = [], eigenvalues = characterItem.eigenvalue;
- for(let i = 0, len = eigenvalues.length; i < len; i++){
- comboItems.push(eigenvalues[i].value);
- if(eigenvalues[i].isSelected){
- rst.selectedValue = eigenvalues[i].value;
- }
- }
- combo.items(comboItems);
- rst.combo = combo;
- return rst;
- },
- //获得当前行选中的特征值
- getCurrentSelected: function (item) {
- let rst = null;
- for(let i = 0, len = item.eigenvalue.length; i < len; i++){
- if(item.eigenvalue[i].isSelected){
- rst = item.eigenvalue[i].value;
- break;
- }
- }
- return rst;
- },
- //显示到清单项目特征列的数据
- getColData: function (itemsArr) {
- let me = characterOprObj;
- let rstStr = "", count = 0;
- for(let i = 0, len = itemsArr.length; i < len; i++){
- if(itemsArr[i].isChecked === true){
- //获取选中的特征值
- let eigenvalueStr = "";
- let eigenvalue = itemsArr[i].eigenvalue;
- for(let j = 0, vLen = eigenvalue.length; j < vLen; j++){
- if(eigenvalue[j].isSelected){
- eigenvalueStr += eigenvalue[j].value;
- break;
- }
- }
- count ++;
- /*if(count === 1){
- rstStr += "“";
- }
- else{
- rstStr += " ";
- }*/
- rstStr += count + ". " + itemsArr[i].character + ": " + eigenvalueStr + "\n";
- }
- }
- if(rstStr.trim().length > 0){
- let reg = /\n+$/g;
- let newStr = rstStr.replace(reg, "");
- return newStr;
- }
- return null;
- },
- addRow: function (sheet) {
- let checkBox = new GC.Spread.Sheets.CellTypes.CheckBox(),
- combo = new GC.Spread.Sheets.CellTypes.ComboBox();
- checkBox.isThreeState = false;
- combo.editable(true);
- let rowIdx = sheet.getRowCount();
- sheet.addRows(rowIdx, 1);
- sheet.getCell(rowIdx, 1).cellType(combo);
- sheet.getCell(rowIdx, 2).cellType(checkBox);
- },
- upMove: function (cell) {
- let me = characterOprObj;
- let thisObj = me.currentCache[cell.row],
- preObj = me.currentCache[cell.row - 1],
- temp;
- temp = thisObj.serialNo;
- thisObj.serialNo = preObj.serialNo;
- preObj.serialNo = temp;
- contentOprObj.sortCache(me.currentCache);
- me.save(function () {
- me.workBook.getSheet(0).setActiveCell(cell.row - 1, cell.col);
- });
- },
- downMove: function (cell) {
- let me = characterOprObj;
- let thisObj = me.currentCache[cell.row],
- nextObj = me.currentCache[cell.row + 1],
- temp;
- temp = thisObj.serialNo;
- thisObj.serialNo = nextObj.serialNo;
- nextObj.serialNo = temp;
- contentOprObj.sortCache(me.currentCache);
- me.save(function () {
- me.workBook.getSheet(0).setActiveCell(cell.row + 1, cell.col);
- });
- },
- deleteCharacter: function (rowIdx) {
- let me = characterOprObj;
- me.currentCache.splice(rowIdx, 1);
- me.save();
- },
- //取消选择的特征值
- unsetSelected: function (item) {
- for(let i = 0, len = item.eigenvalue.length; i < len; i++){
- if(item.eigenvalue[i].isSelected){
- item.eigenvalue[i].isSelected = false;
- }
- }
- },
- //设置选中的特征值
- setSelected: function (item, value) {
- for(let i = 0, len = item.eigenvalue.length; i < len; i++){
- if(item.eigenvalue[i].value === value){
- item.eigenvalue[i].isSelected = true;
- }
- }
- },
- //改变选择特征值
- changeSelected: function (item, value) {
- let me = characterOprObj;
- me.unsetSelected(item);
- me.setSelected(item, value);
- },
- insertValue: function (item, value) {
- let me = characterOprObj;
- me.unsetSelected(item);
- let newValue = {value: value, isSelected: true};
- item.eigenvalue.push(newValue);
- },
- updateCharacter: function (item, character, value) {
- let me = characterOprObj;
- if(character){
- item.character = character;
- }
- if(value){
- let isExist = false;
- for(let i = 0, len = item.eigenvalue.length; i < len; i++){
- if(item.eigenvalue[i].value === value){
- isExist = true;
- break;
- }
- }
- //不存在,新增进eigenvalue,自动打勾输出
- if(!isExist){
- //更新selected
- me.insertValue(item, value);
- item.isChecked = true;
- }
- //存在,选择特征值,自动打勾输出
- else{
- me.changeSelected(item, value);
- item.isChecked = true;
- }
- }
- },
- insertCharacter: function (character, value) {
- let me = characterOprObj;
- let preObj = me.currentCache.length > 0 ? me.currentCache[me.currentCache.length - 1] : null;
- if(character && !value){
- let newCharacter = {character: character, eigenvalue: [], isChecked: false, serialNo: preObj ? preObj.serialNo + 1 : 1};
- me.currentCache.push(newCharacter);
- }
- else if(!character && value){
- let newValue = {value: value, isSelected: true};
- let newCharacter = {character: '', eigenvalue: [newValue], isChecked: false, serialNo: preObj? preObj.serialNo + 1 : 1};
- me.currentCache.push(newCharacter);
- }
- else if(character && value){//有了特征值自动打勾输出
- let newValue = {value: value, isSelected: true};
- let newCharacter = {character:character , eigenvalue: [newValue], isChecked: true, serialNo: preObj? preObj.serialNo + 1 : 1};
- me.currentCache.push(newCharacter);
- }
- },
- save: function (callback) {
- let selectedNode = projectObj.mainController.tree.selected;
- const setting = projectObj.project.property.addRule !== undefined ? projectObj.project.property.addRule : getAddRuleSetting();
- pageCCOprObj.setCharacterBySetting(characterOprObj, selectedNode, setting, callback);
- },
- onEditStart: function (sender, args) {
- let me = characterOprObj;
- if(args.col === 1){//改变选择的特征值
- me.currentSelectedValue = me.currentCache.length > args.row ? me.getCurrentSelected(me.currentCache[args.row]) : null;
- }
- },
- onEditEnded: function (sender, args) {
- let me = characterOprObj, characterTxt;
- let preObj = me.currentCache.length > 0 ? me.currentCache[me.currentCache.length - 1] : null;
- if(args.editingText && args.editingText.toString().trim().length > 0){
- //更新
- if(args.row < me.currentCache.length){
- let thisCha = me.currentCache[args.row];
- if(args.col === 0){//特征
- me.updateCharacter(thisCha, args.editingText, null);
- }
- else if(args.col === 1){//特征值
- me.updateCharacter(thisCha, null, args.editingText);
- }
- }
- //新增
- else{
- if(args.col === 0){//特征
- me.insertCharacter(args.editingText, null);
- }
- else if(args.col === 1){//特征值
- me.insertCharacter(null, args.editingText);
- }
- }
- //保存
- me.save();
- }
- else{//恢复
- if(args.col === 0){
- args.sheet.setValue(args.row, args.col, me.currentCache.length > args.row ? me.currentCache[args.row].character + '' : '');
- }
- else if(args.col === 1){
- args.sheet.setValue(args.row, args.col, me.currentSelectedValue ? me.currentSelectedValue + '' : '');
- }
- }
- },
- onClipboardPasting: function (sender, args) {
- if(args.cellRange.col + args.colCount - 1 > 1){
- args.cancel = true;
- }
- },
- onClipboardPasted: function (sender, args) {
- let me = characterOprObj;
- let items = sheetCommonObj.analyzePasteData(me.setting, args);
- for(let i = 0, len = items.length; i < len; i++){
- //更新
- let rowIdx = args.cellRange.row + i;
- if(me.currentCache.length > rowIdx){
- me.updateCharacter(me.currentCache[rowIdx], items[i].character, items[i].eigenvalue);
- }
- //新增
- else{
- me.insertCharacter(items[i].character, items[i].eigenvalue);
- }
- }
- me.save();
- },
- //复选框控制输出
- onButtonClicked: function (sender, args) {
- let me = characterOprObj, characterTxt;
- if(args.sheet.isEditing()){
- args.sheet.endEdit(true);
- }
- let isChecked = args.sheet.getValue(args.row, args.col);
- if(me.currentCache.length > args.row){
- me.currentCache[args.row].isChecked = isChecked;
- me.save();
- }
- //else的情况就是新增
- else{
- args.sheet.setValue(args.row, args.col, 0);
- }
- },
- onContextmenuOpr: function () {//右键菜单
- let me = characterOprObj;
- $.contextMenu({
- selector: '#itemSpread',
- build: function($triggerElement, e){
- //控制允许右键菜单在哪个位置出现
- let target = SheetDataHelper.safeRightClickSelection($triggerElement, e, me.workBook);
- let sheet = me.workBook.getSheet(0);
- if(target.hitTestType === 3){//在表格内 && typeof target.row !== 'undefined' && typeof target.col !== 'undefined'
- let insertDis = pageCCOprObj.isBillsType() ? false : true, delDis = false, upDis = false, downDis = false;
- if(typeof target.row !== 'undefined'){
- //控制按钮是否可用
- sheet.setActiveCell(target.row, target.col);
- if(!me.currentCache ||target.row >= me.currentCache.length){//右键定位在有数据的行,删除键才显示可用
- delDis = true;
- downDis = true;
- upDis = true;
- }
- else{//有数据
- if(typeof target.col === 'undefined'){//定位在表格外
- downDis = true;
- upDis = true;
- delDis = true;
- }
- else{
- if(target.row === me.currentCache.length -1){//定位在最后一行,不可下移
- downDis = true;
- }
- if(target.row === 0){//定位在第一行,不可上移
- upDis = true;
- }
- }
- }
- }
- else{
- delDis = true;
- downDis = true;
- upDis = true;
- }
- return {
- callback: function(){},
- items: {
- "insert": {name: "添加", disabled: insertDis, icon: "fa-sign-in", callback: function (key, opt) {
- me.addRow(sheet);
- }},
- "delete": {name: "删除", disabled: delDis, icon: "fa-remove", callback: function (key, opt) {
- me.deleteCharacter(target.row);
- }},
- "upMove": {name: "上移", disabled: upDis, icon: "fa-arrow-up", callback: function (key, opt) {
- me.upMove({row: target.row, col: target.col});
- }},
- "downMove": {name: "下移", disabled: downDis, icon: "fa-arrow-down", callback: function (key, opt) {
- me.downMove({row: target.row, col: target.col});
- }}
- }
- };
- }
- else{
- return false;
- }
- }
- });
- }
- };
- let pageCCOprObj = {
- currentFindSet: null,
- mainActiveCell: null,//mainSpread焦点单元格
- nameCache: '',
- //获得造价书当前焦点行的类型:清单、定额
- isBillsType: function () {
- let rst = false;
- let selectedNode = projectObj.mainController.tree.selected;
- if(selectedNode && selectedNode.sourceType === projectObj.project.Bills.getSourceType()){//为清单
- rst = true
- }
- return rst;
- },
- setItemContentNode: function (node, jobs, items, name = '') {
- let theCont = contentOprObj, theCha = characterOprObj,
- jobContent, itemCharacter, contentTxt, characterTxt;
- jobContent = theCont.buildJobContent(jobs);
- itemCharacter = theCha.buildItemCharactet(items);
- // contentTxt = theCont.getColData(jobContent);
- // characterTxt = theCha.getColData(itemCharacter);
- node.data.jobContent = jobContent;
- node.data.itemCharacter = itemCharacter;
- this.nameCache = name;
- // 根据规则设置对应特征、内容、名称格式
- const setting = projectObj.project.property.addRule !== undefined ? projectObj.project.property.addRule : getAddRuleSetting();
- const updateData = pageCCOprObj.getCharacterUpdateData(setting, node);
- node.data.jobContentText = updateData.jobContentText;
- node.data.itemCharacterText = updateData.itemCharacterText;
- node.data.name = updateData.name;
- },
- safeItemCharater: function (itemCharater) {
- return characterOprObj.buildItemCharactet(itemCharater);
- },
- //设置特征及内容currentCache
- setCacheAndShow: function (node) {
- let theCont = contentOprObj, theCha = characterOprObj;
- theCont.currentCache = node && typeof node.data.jobContent !== 'undefined' ? node.data.jobContent : [];
- theCha.currentCache = node && typeof node.data.itemCharacter !== 'undefined' ? node.data.itemCharacter : [];
- this.currentFindSet = node && typeof node.data.ID !== 'undefined' && typeof node.data.projectID ? {ID: node.data.ID, projectID: node.data.projectID} : null;
- this.showData(theCont.workBook.getSheet(0), theCont.setting, theCont.currentCache);
- this.showData(theCha.workBook.getSheet(0), theCha.setting, theCha.currentCache);
- },
- //contentSpread、itemSpread展示数据用
- showData: function(sheet, setting, data) {
- let me = this, ch = GC.Spread.Sheets.SheetArea.viewport;
- sheet.suspendPaint();
- sheet.suspendEvent();
- sheet.clear(0, 0, sheet.getRowCount(), sheet.getColumnCount(), GC.Spread.Sheets.SheetArea.viewport, GC.Spread.Sheets.StorageType.data);
- sheet.setRowCount(data.length);
- for (let col = 0; col < setting.header.length; col++) {
- var hAlign = "left", vAlign = "center";
- if (setting.header[col].hAlign) {
- hAlign = setting.header[col].hAlign;
- } else if (setting.header[col].dataType !== "String"){
- hAlign = "right";
- }
- vAlign = setting.header[col].vAlign?setting.header[col].vAlign:vAlign;
- sheetCommonObj.setAreaAlign(sheet.getRange(-1, col, -1, 1), hAlign, vAlign);
- if (setting.header[col].formatter) {
- sheet.setFormatter(-1, col, setting.header[col].formatter, GC.Spread.Sheets.SheetArea.viewport);
- }
- for (let row = 0; row < data.length; row++) {
- sheet.getCell(row, 0).locked(true);//locked
- let val = data[row][setting.header[col].dataCode];
- if(setting.header[col].cellType === "checkBox"){
- let checkBox = new GC.Spread.Sheets.CellTypes.CheckBox();
- checkBox.isThreeState(false);
- sheet.getCell(row, col).cellType(checkBox).value(val);
- }
- else if(setting.header[col].cellType === 'comboBox'){
- let comboObj = characterOprObj.getComboBox(data[row]);
- comboObj.combo.editable(true);//可编辑
- sheet.getCell(row, 1).cellType(comboObj.combo).value(typeof comboObj.selectedValue !== 'undefined' ? comboObj.selectedValue : '');
- }
- else{
- sheet.setValue(row, col, val, ch);
- }
- sheet.getCell(row, col).wordWrap(true);
- sheet.autoFitRow(row);
- }
- }
- sheet.resumeEvent();
- sheet.resumePaint();
- },
- clearData: function () {
- let theCon = contentOprObj, theCha = characterOprObj;
- theCon.workBook.getSheet(0).setRowCount(0);
- theCha.workBook.getSheet(0).setRowCount(0);
- sheetCommonObj.cleanSheet(theCon.workBook.getSheet(0), theCon.setting, -1);
- sheetCommonObj.cleanSheet(theCha.workBook.getSheet(0), theCha.setting, -1);
- projectObj.mainSpread.focus(true);
- },
- //更新特征及内容数据
- updateCharacterContent: function (findSet, updateObj, txtObj, oprObj, callback) {
- let me = pageCCOprObj, updateCol;
- if(txtObj){
- updateCol = txtObj.field === 'itemCharacterText' ? 4 : 5;//更新清单行特征列或内容列
- }
- else{
- updateCol = null;
- }
- let url = '/bills/updateCharacterContent';
- let postData = {
- findSet: findSet,
- updateObj: updateObj,
- txtObj: txtObj
- };
- CommonAjax.post(url, postData, function (rstData) {
- //更新节点数据
- if(updateCol){
- // 已当前选中行更新数据
- let selectedNode = projectObj.mainController.tree.selected;
- selectedNode.data[updateObj.field] = updateObj.updateArr;
- selectedNode.data[txtObj.field] = txtObj.text;
- me.showData(oprObj.workBook.getSheet(0), oprObj.setting, oprObj.currentCache);//刷新特征及内容Spread
- let activeCell = projectObj.mainSpread.getActiveSheet().getSelections()[0];
- projectObj.mainSpread.getActiveSheet().setValue(activeCell.row, updateCol, txtObj.text + ''); //刷新输出显示
- projectObj.mainSpread.getActiveSheet().autoFitRow(activeCell.row);
- if(callback){
- callback();
- }
- }
- });
- },
- /**
- * 更新bill数据
- *
- * @param {Object} findSet - 更新条件
- * @param {Object} updateData - 更新数据
- * @param {Function} callback - 回调函数
- * @return {void}
- */
- updateBill: function(findSet, updateData, callback) {
- if (!updateData instanceof Array || updateData.length <= 0) {
- return;
- }
- let url = '/bills/updateBill';
- let postData = { findSet, updateData };
- CommonAjax.post(url, postData, function (response) {
- callback(response);
- });
- },
- /**
- * 刷新节点数据
- *
- * @param {Object} node - 节点数据
- * @param {Object} refreshData - 刷新的数据
- * @return {void}
- */
- refreshView: function(node, refreshData) {
- // 更新清单行特征列或内容列
- let updateCol = [
- { name: 'itemCharacterText', col: 4 },
- { name: 'jobContentText', col: 5 },
- { name: 'name', col: 2 }
- ];
- if (updateCol === '') {
- return;
- }
- const row = node.serialNo();
- // 刷新输出显示
- for (const tmp of updateCol) {
- // 没有默认的数据则跳过刷新
- if (refreshData[tmp.name] === undefined) {
- continue;
- }
- projectObj.mainSpread.getActiveSheet().setValue(row, tmp.col, refreshData[tmp.name] + '');
- }
- projectObj.mainSpread.getActiveSheet().autoFitRow(row);
- },
- /**
- * 根据配置设置清单项目特征
- *
- * @param {Object} node - 选中的node节点
- * @param {Object} setting - 设置
- * @return {void}
- */
- setCharacterBySetting: function(oprObj, node, setting, callback) {
- let self = this;
- // 保存的条件数据
- const findSet = { ID: node.data.ID, projectID: node.data.projectID };
- const updateData = this.getCharacterUpdateData(setting, node);
- let saveObj = [];
- for (const index in updateData) {
- saveObj.push({field: index, value: updateData[index]});
- }
- saveObj.push({field: 'addRule', value: setting});
- // 更新到数据库
- pageCCOprObj.updateBill(findSet, saveObj, function(response) {
- self.refreshView(node, updateData);
- // 更新项目属性的配置
- projectObj.project.property.addRule = setting;
- // 更新节点数据
- node.data.name = updateData.name;
- node.data.itemCharacterText = updateData.itemCharacterText;
- node.data.jobContentText = updateData.jobContentText;
- pageCCOprObj.showData(oprObj.workBook.getSheet(0), oprObj.setting, oprObj.currentCache);//刷新特征及内容Spread
- if(callback){
- callback();
- }
- });
- },
- /**
- * 格式化序号格式
- *
- * @param {Number} type - 格式化的类型
- * @param {String} serialNo - 待格式化的序号
- * @return {String} - 返回格式化后的字符
- */
- formatSerialNumber: function(type, serialNo) {
- const letter = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r',
- 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'];
- switch (type) {
- case '1':
- // 数字
- serialNo = serialNo + '. ';
- break;
- case '2':
- // 英文字母(小写)
- serialNo = letter[serialNo - 1] !== undefined ? letter[serialNo - 1] + '. ' : '';
- break;
- case '3':
- // 英文字母(大写)
- serialNo = letter[serialNo - 1] !== undefined ? letter[serialNo - 1].toUpperCase() + '. ' : '';
- break;
- default:
- serialNo = '';
- break;
- }
- return serialNo;
- },
- /**
- * 查找选中的树节点中定额子目数据
- *
- * @param {Object} selectNode - 选中的节点
- * @param {Object} setting - 设置
- * @return {Array} - 返回定额子目数组
- */
- getRationChapter: function(selectNode, setting) {
- let result = [];
- if (selectNode.children === undefined || selectNode.children.length <= 0) {
- return result;
- }
- // 查找对应的定额数据
- let count = 1;
- for (const tmp of selectNode.children) {
- if (tmp.sourceType !== 'ration') {
- continue;
- }
- const serialNo = this.formatSerialNumber(setting.serialType, count.toString());
- setting.childDisplayFormat === "1" ? result.push(tmp.data.code + ':' + tmp.data.name) : result.push(serialNo + tmp.data.name);
- count++;
- }
- return result;
- },
- /**
- * 获取默认数据
- *
- * @param {Object} node - 节点数据
- * @param {Object} setting - 设置
- * @return {Object}
- */
- getDataBySetting: function(node, setting) {
- let result = {};
- try {
- if (node.data === undefined) {
- throw '数据错误';
- }
- const itemCharacter = node.data.itemCharacter;
- const itemJob = node.data.jobContent;
- if (itemCharacter === undefined || itemCharacter.length <= 0 || itemJob === undefined || itemJob.length <= 0) {
- throw '内部数据错误';
- }
- // 默认名称
- result['name'] = this.nameCache;
- // 特征
- let characterArray = [];
- let count = 1;
- for (const tmp of itemCharacter) {
- if (tmp.eigenvalue === undefined || tmp.eigenvalue.length <= 0 || !tmp.isChecked) {
- continue;
- }
- // 获取选中的特征值
- let selectedEigen = '';
- for (const eigen of tmp.eigenvalue) {
- if (eigen.isSelected) {
- selectedEigen = eigen.value;
- }
- }
- // 匹配设置的序号格式
- const serialNo = this.formatSerialNumber(setting.serialType, count.toString());
- let characterString = '';
- // 特征生成方式
- switch (setting.characterFormat) {
- case '1':
- // 特征值
- characterString = serialNo + selectedEigen;
- break;
- case '2':
- // 特征:特征值
- characterString = serialNo + tmp.character + ': ' + selectedEigen;
- break;
- }
- characterArray.push(characterString);
- count++;
- }
- result['character'] = characterArray;
- // 内容部分
- let jobArray = [];
- count = 1;
- for (const tmp of itemJob) {
- if (!tmp.isChecked) {
- continue;
- }
- // 匹配设置的序号格式
- const serialNo = this.formatSerialNumber(setting.serialType, count.toString());
- jobArray.push(serialNo + tmp.content);
- count++;
- }
- result['content'] = jobArray;
- } catch (error) {
- console.log(error);
- result = {};
- }
- return result;
- },
- /**
- * 获取特征内容名称更新的数据
- *
- * @param {Object} setting - 设置
- * @param {Object} node - 节点数据
- * @return {Object} - 返回更新的数据
- */
- getCharacterUpdateData: function(setting, node) {
- // 获取原名称
- const name = node.data.name.split("\n");
- this.nameCache = name[0] !== undefined ? name[0] : "";
- let updateData = {
- itemCharacterText: '',
- jobContentText: '',
- name: this.nameCache,
- };
- let contentArray = [];
- // 获取当前设置数据
- const currentData = this.getDataBySetting(node, setting);
- // 组合数据
- let content = '';
- switch (setting.addContent) {
- case "1":
- // 项目特征+工作内容
- contentArray.push('[项目特征]');
- contentArray.push.apply(contentArray, currentData.character);
- contentArray.push('[工作内容]');
- contentArray.push.apply(contentArray, currentData.content);
- break;
- case "2":
- // 工作内容+项目特征
- contentArray.push('[工作内容]');
- contentArray.push.apply(contentArray, currentData.content);
- contentArray.push('[项目特征]');
- contentArray.push.apply(contentArray, currentData.character);
- break;
- case "3":
- // 项目特征
- contentArray.push.apply(contentArray, currentData.character);
- break;
- case "4":
- // 工作内容
- contentArray.push.apply(contentArray, currentData.content);
- break;
- case "5":
- // 定额子目
- const rationChapter = this.getRationChapter(node, setting);
- contentArray.push.apply(contentArray, rationChapter);
- break;
- case "":
- // 无
- break;
- }
- // 显示格式
- switch (setting.displayFormat) {
- case "1":
- // 换行分隔
- content = contentArray.join("\n");
- currentData.character = currentData.character.join("\n");
- currentData.content = currentData.content.join("\n");
- break;
- case "2":
- // 逗号分隔
- content = contentArray.join(',');
- currentData.character = currentData.character.join(",");
- currentData.content = currentData.content.join(",");
- break;
- case "3":
- // 括号分隔
- content = '(' + contentArray.join(',') + ')';
- break;
- }
- // 添加到对应位置
- switch (setting.position) {
- case "1":
- // 添加到项目特征列
- updateData.itemCharacterText = content;
- break;
- case "2":
- // 添加到清单名称列
- content = this.nameCache + "\n" + content;
- updateData.name = content;
- break;
- case "3":
- // 添加到工作内容列
- updateData.jobContentText = content;
- break;
- case "4":
- updateData = {
- itemCharacterText: currentData.character,
- jobContentText: currentData.content,
- name: currentData.name,
- };
- break;
- }
- return updateData;
- },
- }
|