|
@@ -237,7 +237,6 @@ repositoryGljObj = {
|
|
|
if(glj.ID === me.gljList[i].ID){
|
|
|
me.gljList[i].basePrice = glj.basePrice;
|
|
|
me.workBook.getSheet(0).setValue(i, 4, glj.basePrice);
|
|
|
- console.log(i);
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
@@ -257,8 +256,6 @@ repositoryGljObj = {
|
|
|
if(row < me.currentCache.length){
|
|
|
//标记当前工料机
|
|
|
me.currentGlj = me.currentCache[row];
|
|
|
- console.log(`me.currentCache`);
|
|
|
- console.log(me.currentCache);
|
|
|
if(me.allowComponent.indexOf(me.currentCache[row].gljType) !== -1){
|
|
|
that.workBook.getSheet(0).getRange(-1, 0 , -1, 1, GC.Spread.Sheets.SheetArea.viewport).locked(false);
|
|
|
that.workBook.getSheet(0).getRange(-1, 4 , -1, 1, GC.Spread.Sheets.SheetArea.viewport).locked(false);
|
|
@@ -373,8 +370,6 @@ repositoryGljObj = {
|
|
|
updateArr = [], addArr = [], updateBasePrcArr = [];
|
|
|
me.editingRowIdx = args.row;
|
|
|
rObj.basePrice = rObj.basePrice ? rObj.basePrice : 0;
|
|
|
- console.log(`me.currentGlj`);
|
|
|
- console.log(me.currentGlj);
|
|
|
if (me.currentEditingGlj["ID"]) {
|
|
|
rObj["ID"] = me.currentEditingGlj["ID"];
|
|
|
rObj.gljClass = me.currentEditingGlj.gljClass;
|
|
@@ -441,7 +436,6 @@ repositoryGljObj = {
|
|
|
me.currentEditingGlj = null;
|
|
|
//me.workBook.getSheet(0).setValue(11, 5, "人工");
|
|
|
me.mixUpdateRequest(updateArr, addArr, []);
|
|
|
- console.log(updateArr);
|
|
|
}
|
|
|
},
|
|
|
repositoryGljDelOpr: function () {
|
|
@@ -1082,7 +1076,6 @@ var gljTypeTreeOprObj = {
|
|
|
}
|
|
|
hoverOpr();
|
|
|
function hoverOpr(){
|
|
|
- //console.log(treeNode);
|
|
|
var me = repositoryGljObj, sObj = $("#" + treeNode.tId + "_span");
|
|
|
if (treeNode.editNameFlag || $("#addBtn_"+treeNode.tId).length>0) return;
|
|
|
var addStr = "<span class='button add' id='addBtn_" + treeNode.tId + "' title='新增子节点' onfocus='this.blur();'></span>";
|