|
@@ -696,8 +696,23 @@ export default {
|
|
|
return item
|
|
|
})
|
|
|
}
|
|
|
- this.myHotArr[this.tabChecked].loadData(data)
|
|
|
- this.myHotMainArr[this.tabChecked] = data
|
|
|
+ this.myHotMainArr[this.tabChecked] = data;
|
|
|
+ this.pageCount[this.tabChecked] = res.data.Count;
|
|
|
+ let dom = this.myHotArr[this.tabChecked];
|
|
|
+ //存储一个数组防止删除操作找寻不到删除的该数组
|
|
|
+ this.tableLoading = false;
|
|
|
+ this.deepArr = this.deepCopy(data);
|
|
|
+ if (!!this.myHotArr[this.tabChecked]) {
|
|
|
+ this.myHotArr[this.tabChecked].loadData(data)
|
|
|
+ this.myHotMainArr[this.tabChecked] = data
|
|
|
+ } else {
|
|
|
+ this.createHot(
|
|
|
+ this.tabChecked,
|
|
|
+ data,
|
|
|
+ this.myHotHeaderArr[this.tabChecked]
|
|
|
+ );
|
|
|
+ }
|
|
|
+ this.loading = false
|
|
|
} else {
|
|
|
this.$message.error("请求错误:" + res.data.ResultMsg)
|
|
|
}
|
|
@@ -1118,7 +1133,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
//获取表格主体内容
|
|
|
- getTableMain() {
|
|
|
+ async getTableMain() {
|
|
|
let param = {
|
|
|
BeginTime: this.checkTimeArr[0],
|
|
|
BuildId: this.buildId,
|
|
@@ -1132,6 +1147,46 @@ export default {
|
|
|
ProjId: this.ProjId,
|
|
|
UserId: this.UserId
|
|
|
};
|
|
|
+ getdelMain(param).then(res => {
|
|
|
+ if (res.data.Result == "success") {
|
|
|
+ // let paramData = res.data.FmList.map(item => {
|
|
|
+ // return {
|
|
|
+ // id: item.FmId,
|
|
|
+ // family: item.Family,
|
|
|
+ // infos: item.Infos
|
|
|
+ // }
|
|
|
+ // })
|
|
|
+ // let data = await this.getIdForVender({
|
|
|
+ // "criterias":paramData
|
|
|
+ // })
|
|
|
+ // let updateData = data.map(item => {
|
|
|
+ // return {
|
|
|
+ // FmId: item.id,
|
|
|
+ // Family: item.family,
|
|
|
+ // Infos: item.infos
|
|
|
+ // }
|
|
|
+ // })
|
|
|
+ this.updateBusiness(res.data.FmList)
|
|
|
+ } else {
|
|
|
+
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ getTabsData2() {
|
|
|
+ let param = {
|
|
|
+ BeginTime: this.checkTimeArr[0],
|
|
|
+ BuildId: this.buildId,
|
|
|
+ Checked: this.checked,
|
|
|
+ EndTime: this.checkTimeArr[1],
|
|
|
+ Family: this.code,
|
|
|
+ FloorId: this.floorId,
|
|
|
+ PageNum: this.currentPage[this.tabChecked],
|
|
|
+ PageSize: this.pageSizeArr[this.tabChecked],
|
|
|
+ PointId: this.pointCheck,
|
|
|
+ ProjId: this.ProjId,
|
|
|
+ UserId: this.UserId
|
|
|
+ }
|
|
|
getdelMain(param).then(result => {
|
|
|
this.buildMsgShow = false;
|
|
|
if (result.data.Result == "success") {
|
|
@@ -1171,6 +1226,7 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+
|
|
|
download() {
|
|
|
if (!!this.myHotArr[this.tabChecked]) {
|
|
|
let fileName = ''
|
|
@@ -1567,106 +1623,36 @@ export default {
|
|
|
},
|
|
|
//修改请求
|
|
|
async updateBusiness(data, change, obj) {
|
|
|
- console.log(data, change, obj)
|
|
|
- let param = []
|
|
|
+ console.log(data, change, obj, "obj")
|
|
|
+ // let param = []
|
|
|
//生成对应修改数据
|
|
|
let infoArr = ["Brand", "Specification", "Manufacturer", "Supplier", "Maintainer", "Insurer"]
|
|
|
let versArr = ["Manufacturer", "Supplier", "Maintainer", "Insurer"]
|
|
|
- let falg = false
|
|
|
- let splitArr = change[0][1].split(".")
|
|
|
- data.map((item, index) => {
|
|
|
- let arr = change[index][1].split(".");
|
|
|
- let info = {};
|
|
|
- console.log(arr, change[index][3], change, "change[index][3]")
|
|
|
- let pushData = {
|
|
|
- FmId: item.FmId,
|
|
|
- Infos: {}
|
|
|
- }
|
|
|
- if (arr.length == 2) {
|
|
|
- //修改的数据存在于
|
|
|
- if (infoArr.indexOf(arr[1]) > -1) {
|
|
|
- falg = true
|
|
|
- //如果名字相同,将id带入
|
|
|
- if (!!obj && change[index][3] == obj.Infos[arr[1]]) {
|
|
|
- if (arr[1] == "Brand") {
|
|
|
- pushData.Infos.DPManufacturerID = obj.Infos.DPManufacturerID || null
|
|
|
- }
|
|
|
- if (arr[1] == "Specification") {
|
|
|
- pushData.Infos.DPManufacturerID = obj.Infos.DPManufacturerID || null
|
|
|
- pushData.Infos.DPBrandID = obj.Infos.DPBrandID
|
|
|
- }
|
|
|
- pushData.Infos["DP" + arr[1] + "ID"] = obj.Infos["DP" + arr[1] + "ID"] || null
|
|
|
- }
|
|
|
- pushData.Infos[arr[1]] = change[index][3]
|
|
|
- } else {
|
|
|
- pushData[arr[0]][arr[1]] = change[index][3]
|
|
|
- }
|
|
|
- } else {
|
|
|
- pushData[arr[0]] = change[index][3]
|
|
|
- }
|
|
|
- param.push(pushData);
|
|
|
- });
|
|
|
- console.log(param)
|
|
|
- //判断值在厂商库种的相似程度
|
|
|
- if (splitArr.length == 2 && infoArr.indexOf(splitArr[1]) > -1) {
|
|
|
- //如果名字相同,将id带入
|
|
|
- let venderParam = {
|
|
|
- "infoCode": splitArr[1], //四种厂商类型名称[Manufacturer,Supplier,Maintainer,Insurer],品牌类型名称(Brand),型号类型名称(Specification)
|
|
|
- "infoValue": param[0][splitArr[0]][splitArr[1]],
|
|
|
- }, falg = false, venderData = ""
|
|
|
- if (splitArr[1] == "Brand") {
|
|
|
- venderParam.manufacturerID = data[0].Infos.DPManufacturerID
|
|
|
- }
|
|
|
- if (splitArr[1] == "Specification") {
|
|
|
- venderParam.brandID = data[0].Infos.DPBrandID || null
|
|
|
- venderParam.eqFamily = data[0].Family
|
|
|
- }
|
|
|
- for (let k in venderParam) {
|
|
|
- if (!venderParam[k]) {
|
|
|
- falg = true
|
|
|
- }
|
|
|
- }
|
|
|
- if (!falg) {
|
|
|
- venderData = await this.getIdForVender(venderParam)
|
|
|
- }
|
|
|
- if (!!venderData && venderData.hasOwnProperty("id")) {
|
|
|
- param.map(item => {
|
|
|
- if (item.Infos.hasOwnProperty(splitArr[1])) {
|
|
|
- item.Infos["DP" + splitArr[1] + "ID"] = venderData.id
|
|
|
- item.Infos[splitArr[1]] = null
|
|
|
- if (splitArr[1] == "Brand") {
|
|
|
- item.Infos[splitArr[1]] = venderData.value
|
|
|
- }
|
|
|
- }
|
|
|
- })
|
|
|
- } else {
|
|
|
- param.map(item => {
|
|
|
- item.Infos["DP" + splitArr[1] + "ID"] = null
|
|
|
- if (splitArr[1] == "Brand") {
|
|
|
- item.Infos.DPSpecificationID = null
|
|
|
- }
|
|
|
- if (splitArr[1] == "Manufacturer") {
|
|
|
- item.Infos.DPBrandID = null
|
|
|
- item.Infos.DPSpecificationID = null
|
|
|
- }
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- param.map(item => {
|
|
|
- if (item.hasOwnProperty("Infos")) {
|
|
|
- for (let key in item.Infos) {
|
|
|
- if (item.Infos[key] == "") {
|
|
|
- item.Infos[key] = null
|
|
|
- }
|
|
|
- }
|
|
|
+ let falg = true
|
|
|
+ let param = data.map(item => {
|
|
|
+ let obj = {}
|
|
|
+ obj.id = item.FmId
|
|
|
+ obj.family = item.Family
|
|
|
+ obj.infos = item.Infos
|
|
|
+ return obj
|
|
|
+ })
|
|
|
+ console.log(param, "param")
|
|
|
+ let changeParam = await this.getIdForVender({
|
|
|
+ "projectId": this.ProjId,
|
|
|
+ "criterias": param
|
|
|
+ })
|
|
|
+ console.log(changeParam, "changeParam")
|
|
|
+ let lastData = changeParam.map(item => {
|
|
|
+ return {
|
|
|
+ FmId: item.id,
|
|
|
+ Family: item.family,
|
|
|
+ Infos: item.infos
|
|
|
}
|
|
|
})
|
|
|
-
|
|
|
upDateTableMain({
|
|
|
ProjId: this.$route.query.projId,
|
|
|
UserId: this.$route.query.userId
|
|
|
- }, param).then(res => {
|
|
|
+ }, lastData).then(res => {
|
|
|
if (falg) {
|
|
|
this.loadData()
|
|
|
}
|
|
@@ -1675,9 +1661,7 @@ export default {
|
|
|
|
|
|
//判断文案是否相同
|
|
|
async getIdForVender(param) {
|
|
|
- console.log(param)
|
|
|
return await getBasicMatch(param).then(res => {
|
|
|
- console.log(res)
|
|
|
if (res.data.result == "success") {
|
|
|
return res.data.content
|
|
|
} else {
|
|
@@ -1885,24 +1869,31 @@ export default {
|
|
|
},
|
|
|
|
|
|
afterDocumentKeyDown(e) {
|
|
|
- console.log(this.myHotArr[this.tabChecked].getActiveEditor())
|
|
|
+ // this.$nextTick(() => {
|
|
|
+ console.log(e, e.realTarget.value)
|
|
|
let activeEditer = this.myHotArr[this.tabChecked].getActiveEditor(),
|
|
|
td = activeEditer.TD,
|
|
|
row = activeEditer.row,
|
|
|
- val = activeEditer.TEXTAREA.value,
|
|
|
+ val = e.realTarget.value,
|
|
|
prop = activeEditer.prop,
|
|
|
- infoArr = ["Brand", "Specification", "Manufacturer", "Supplier", "Maintainer", "Insurer"];
|
|
|
+ infoArr = ["Brand", "Specification", "Manufacturer", "Supplier", "Maintainer", "Insurer", "SupplierContactor", "SupplierPhone", "SupplierEmail", "SupplierWeb", "SupplierFax", "MaintainerContactor", "MaintainerPhone", "MaintainerEmail", "MaintainerWeb", "MaintainerFax", "InsurerContactor", "InsurerPhone", "InsurerEmail", "InsurerWeb", "InsurerFax"];
|
|
|
let filter = this.filtersArr[this.tabChecked];
|
|
|
+ console.log(activeEditer, val, document.getElementsByClassName("handsontableInput")[0].value)
|
|
|
//被筛选过后的数组
|
|
|
+ if (e.which == 8) {
|
|
|
+ console.log("val", val)
|
|
|
+ val = val.substring(0, val.length - 1)
|
|
|
+ console.log("val1", val)
|
|
|
+ }
|
|
|
let trimmedArr = this.trimmedRows();
|
|
|
//是否启用了排序
|
|
|
let isSort = this.myHotArr[this.tabChecked]
|
|
|
.getPlugin("columnSorting")
|
|
|
.isSorted();
|
|
|
let infos = "";
|
|
|
- if (infoArr.indexOf(prop.split('.')[1]) < 0) {
|
|
|
- return false
|
|
|
- }
|
|
|
+ // if (infoArr.indexOf(prop.split('.')[1]) < 0) {
|
|
|
+ // return false
|
|
|
+ // }
|
|
|
if (trimmedArr.length && isSort) {
|
|
|
let sortArr = this.myHotArr[this.tabChecked].getPlugin("columnSorting")
|
|
|
.rowsMapper.__arrayMap;
|
|
@@ -1919,9 +1910,8 @@ export default {
|
|
|
} else {
|
|
|
infos = this.myHotMainArr[this.tabChecked][row];
|
|
|
}
|
|
|
- this.$nextTick(() => {
|
|
|
- this.$refs.recommend.randerData(infos, prop, this.myHotHeaderArr[this.tabChecked], true, val)
|
|
|
- })
|
|
|
+ this.$refs.recommend.randerData(infos, prop, this.myHotHeaderArr[this.tabChecked], true, val)
|
|
|
+ // })
|
|
|
},
|
|
|
|
|
|
//获取被筛选掉的行号
|