chuwu 6 роки тому
батько
коміт
e27498a95f

+ 1 - 1
config/index.js

@@ -43,7 +43,7 @@ const proxyTable = {
         }
     },
     '/arithmetic': {
-        target: 'http://101.200.32.13:8001',
+        target: 'http://api.sagacloud.cn/pythonserver/',
         changeOrigin: true,
         pathRewrite: {
             '^/arithmetic': ''

+ 1 - 1
src/api/request.js

@@ -762,5 +762,5 @@ export function getProductList(param, success) {
 export function getBasicMatch(param) {
     console.log(param, "param")
     let data = param
-    return fetch({ method: 'POST', url: `${physics}/venders/basic/match`, data })
+    return fetch({ method: 'POST', url: `${physics}/venders/basic/autoFillId`, data })
 }

Різницю між файлами не показано, бо вона завелика
+ 599 - 565
src/components/buildData/recommend.vue


+ 27 - 2
src/components/business/handsontable.vue

@@ -90,9 +90,34 @@ export default {
   methods: {
     //获取表头
     getHeader(headers, activeTabType) {
-      this.headers = headers;
+      this.headers = headers.map(item => {
+        let dataSoucse = item.DataSource
+        console.log(dataSoucse)
+        if (!dataSoucse) {
+          return item
+        }
+        dataSoucse.map(keys => {
+          if (!!keys.Content && keys.Content.length) {
+            keys.Content.map(child => {
+              dataSoucse.push({
+                Code: child.Code,
+                Name: child.Name,
+              })
+              if (!!child.Content && child.Content.length) {
+                child.Content.map(node => {
+                  dataSoucse.push({
+                    Code: node.Code,
+                    Name: node.Name,
+                  })
+                })
+              }
+            })
+          }
+        })
+        return item
+      });
+      console.log(this.headers, "headers")
       this.activeType = activeTabType
-      console.log(this.headers, this.id)
     },
 
 

+ 1 - 1
src/components/dialogs/addDialog/dialogAssets.vue

@@ -362,7 +362,7 @@ export default {
           params.push(one)
         }
       })
-      param.map(item => {
+      params.map(item => {
         for (let k in item.Infos) {
           if (item.Infos[k] == "") {
             item.Infos[k] = null

+ 30 - 30
src/components/dialogs/addDialog/dialogSystem.vue

@@ -358,10 +358,10 @@ export default {
           item.InputMode == "F1" ||
           item.InputMode == "F2"
         ) {
-          if (item.unit == "") {
+          if (item.Unit == "") {
             return item.InfoPointName;
           } else {
-            return item.InfoPointName + "(" + item.unit + ")";
+            return item.InfoPointName + "(" + item.Unit + ")";
           }
         } else {
           return undefined;
@@ -381,76 +381,76 @@ export default {
     getType(arr) {
       let data = arr.map(item => {
         //二维码
-        if (item.infoPointCode == "EquipQRCode") {
+        if (item.InfoPointCode == "EquipQRCode") {
           return {
-            data: "infos." + item.infoPointCode,
+            data: "infos." + item.InfoPointCode,
             renderer: tools.lookDetails,
             readOnly: true
           }
         }
         //厂商选择
-        if (item.infoPointCode == "Brand" || item.infoPointCode == "Specification") {
+        if (item.InfoPointCode == "Brand" || item.InfoPointCode == "Specification") {
           return {
-            data: "infos." + item.infoPointCode,
+            data: "infos." + item.InfoPointCode,
             renderer: tools.lookDetails,
             readOnly: true
           }
         }
-        if (item.infoPointCode == "SupplierContractID") {
+        if (item.InfoPointCode == "SupplierContractID") {
           return {
-            data: "infos." + item.infoPointCode,
+            data: "infos." + item.InfoPointCode,
             renderer: tools.lookDetails,
             readOnly: true
           }
         }
 
-        if (item.infoPointCode == "InsuranceNum") {
+        if (item.InfoPointCode == "InsuranceNum") {
           //选择保单
           return {
-            data: "infos." + item.infoPointCode,
+            data: "infos." + item.InfoPointCode,
             renderer: tools.lookDetails,
             readOnly: true
           }
         }
 
-        if (item.infoPointCode == "InsuranceFile" || item.infoPointCode == "Archive") {
+        if (item.InfoPointCode == "InsuranceFile" || item.InfoPointCode == "Archive") {
           return {
-            data: "infos." + item.infoPointCode,
+            data: "infos." + item.InfoPointCode,
             renderer: tools.lookDetails,
             readOnly: true
           }
         }
 
         if (
-          item.infoPointCode == "InstallLocation" ||
-          item.infoPointCode == "InstallPic" ||
-          item.infoPointCode == "InstallDrawing" ||
-          item.infoPointCode == "Nameplate" ||
-          item.infoPointCode == "Pic" ||
-          item.infoPointCode == "Drawing"
+          item.InfoPointCode == "InstallLocation" ||
+          item.InfoPointCode == "InstallPic" ||
+          item.InfoPointCode == "InstallDrawing" ||
+          item.InfoPointCode == "Nameplate" ||
+          item.InfoPointCode == "Pic" ||
+          item.InfoPointCode == "Drawing"
         ) {
           return {
-            data: "infos." + item.infoPointCode,
+            data: "infos." + item.InfoPointCode,
             renderer: tools.lookDetails,
             readOnly: true
           }
         }
 
         if (
-          item.infoPointCode == "Maintainer" ||
-          item.infoPointCode == "Supplier" ||
-          item.infoPointCode == "Insurer" ||
-          item.infoPointCode == "InsurerContactor"
+          item.InfoPointCode == "Maintainer" ||
+          item.InfoPointCode == "Supplier" ||
+          item.InfoPointCode == "Insurer" ||
+          item.InfoPointCode == "InsurerContactor"
         ) {
           return {
-            data: "infos." + item.infoPointCode,
+            data: "infos." + item.InfoPointCode,
             renderer: tools.lookDetails,
             readOnly: true
           }
         }
         if (item.InputMode == "D1") {
           return {
-            data: "infos." + item.infoPointCode,
+            data: "infos." + item.InfoPointCode,
             renderer: tools.customDropdownRenderer,
             editor: "chosen",
             chosenOptions: {
@@ -460,7 +460,7 @@ export default {
           };
         } else if (item.InputMode == "A1" || item.InputMode == "A2") {
           return {
-            data: "infos." + item.infoPointCode,
+            data: "infos." + item.InfoPointCode,
             type: "numeric",
             numericFormat: {
               pattern: "0,0.00"
@@ -470,7 +470,7 @@ export default {
           };
         } else if (item.InputMode == "C5") {
           return {
-            data: "infos." + item.infoPointCode,
+            data: "infos." + item.InfoPointCode,
             type: "date",
             dateFormat: "YYYY-MM-DD",
             correctFormat: true
@@ -482,7 +482,7 @@ export default {
           item.InputMode == "L2"
         ) {
           return {
-            data: "infos." + item.infoPointCode
+            data: "infos." + item.InfoPointCode
           };
         } else if (
           item.InputMode == "X" ||
@@ -491,12 +491,12 @@ export default {
           // item.InputMode == "L2"
         ) {
           return {
-            data: "infos." + item.infoPointCode,
+            data: "infos." + item.InfoPointCode,
             readOnly: true
           };
         } else if (item.InputMode == "D2") {
           return {
-            data: "infos." + item.infoPointCode,
+            data: "infos." + item.InfoPointCode,
             renderer: tools.customDropdownRenderer,
             editor: "chosen",
             chosenOptions: {

+ 1 - 1
src/components/handsontables/system.vue

@@ -744,7 +744,7 @@ export default {
         });
       });
       console.log(param)
-      param.map(item => {
+      param.data.criterias.map(item => {
         for (let k in item.infos) {
           if (item.infos[k] == "") {
             item.infos[k] = null

+ 5 - 5
src/views/buildingData.vue

@@ -1392,9 +1392,9 @@ export default {
       var values = (value + "").split(",");
       value = [];
       for (var index = 0; index < optionsList.length; index++) {
-        if (values.indexOf(optionsList[index].code + "") > -1) {
-          selectedId = optionsList[index].code;
-          value.push(optionsList[index].name);
+        if (values.indexOf(optionsList[index].Code + "") > -1) {
+          selectedId = optionsList[index].Code;
+          value.push(optionsList[index].Name);
         }
       }
       value = value.join(", ");
@@ -1816,8 +1816,8 @@ export default {
       if (arr.length) {
         return arr.map(item => {
           return {
-            code: item.code,
-            name: item.name
+            Code: item.code,
+            Name: item.name
           };
         });
       } else {

+ 96 - 106
src/views/buildingData1.vue

@@ -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)
+      //   })
     },
 
     //获取被筛选掉的行号