Parcourir la source

修改仓库设置

mxx il y a 3 ans
Parent
commit
4cb50ce453

+ 0 - 1
src/views/contractManagement/futuresSalesContractAdd.vue

@@ -1457,7 +1457,6 @@ export default {
           }else{ 
                  this.deptBudgetList.deliveryArea =  CodeToText[this.selectedOptions[2]]
           }
-          debugger
           addList(this.deptBudgetList)
             .toPromise()
             .then((response) => {

+ 1 - 1
src/views/tranManagement/tranManagementFireFeedback.vue

@@ -283,7 +283,7 @@ export default {
     isShow(val) {
       this.showType = val
     },
-       freightspace(newVal) {debugger
+       freightspace(newVal) {
         this.file_is_show = false
         if (true) {
             this.$nextTick(()=>{ // $nextTick 是在 DOM 更新循环结束之后执行延迟回调

+ 0 - 1
src/views/tranManagement/tranManagementVehicleDispatching.vue

@@ -489,7 +489,6 @@ export default {
       this.$router.go(-1)
     },
     del(index, row) {
-      debugger
       if(row.status == null){
         if (this.deptBudgetList.tranCarInfoList.length > 1) {
                   this.deptBudgetList.tranCarInfoList.splice(index, 1)

+ 89 - 7
src/views/warehouse/warehouseManagementDelivery.vue

@@ -194,7 +194,8 @@
           </ws-form-item>
           <!-- 出库类型 -->
           <ws-form-item label="出库类型" span="1">
-            <ws-select
+            <ws-input v-model='deptBudgetList.inOutType' class="right-bottom" :disabled="isSelectType" placeholder='暂无' />
+            <!-- <ws-select
               v-model="deptBudgetList.deliveryType"
               placeholder=""
               class="typeselect"
@@ -206,16 +207,33 @@
                 :label="item.constValue"
                 :value="item.constValue"
               />
-            </ws-select>
+            </ws-select> -->
           </ws-form-item>
           <!--车牌号-->
-          <ws-form-item label="车牌号" span="1" prop="sourceGoods">
+         <ws-form-item label="车牌号" span="1" prop="carNo">
             <ws-input
+              v-if="!carstatus"
               v-model="deptBudgetList.carNo"
               placeholder="请输入车牌号"
-              maxlength="20"
+              maxlength="7"
               size="small"
             />
+            <el-select
+              v-if="carstatus"
+              filterable
+              :filter-method="dataFilter2"
+              v-model="deptBudgetList.carNo"
+              placeholder="请选择车牌号"
+              class="typeselect"
+              @change="carChange"
+            >
+              <el-option
+                v-for="item in options2"
+                :key="item.constKey"
+                :label="item.carNo + '(' + item.tranCarNo + ')'"
+                :value="item.carNo"
+              />
+            </el-select>
           </ws-form-item>
         </ws-info-table>
       </div>
@@ -238,14 +256,30 @@
       <div class="small-title">化验数据(选填)</div>
       <div class="inspector">
         <!--自检员-->
-        <ws-form-item label="质检员" span="1" prop="qualityInspector">
+        <!-- <ws-form-item label="质检员" span="1" prop="qualityInspector">
           <ws-input
             v-model="deptBudgetList.warehouseInOutDetail.qualityInspector"
             placeholder="请输入质检员姓名"
             maxlength="120"
             size="small"
           />
-        </ws-form-item>
+        </ws-form-item> -->
+             <ws-form-item label="自检员" span="1" prop="qualityInspector">
+            <el-select
+              v-model="deptBudgetList.warehouseInOutDetail.qualityInspector"
+              placeholder="请选择自检员"
+              filterable
+              clearable
+              @change="qualityInspectorChange"
+            >
+              <el-option
+                v-for="item in qualityInspectorList"
+                :key="item.value"
+                :label="item.staffName"
+                :value="item.staffName"
+              />
+            </el-select>
+          </ws-form-item>
       </div>
       <div class="neifor">
         <ws-info-table>
@@ -352,6 +386,9 @@ export default {
   },
   data() {
     return {
+      isSelectType:true,
+       carstatus: false,
+       qualityInspectorList:[],
       //弹出框
       dialogViewSpareMoney: false,
       dialogApproveFormVisible: false,
@@ -427,14 +464,25 @@ export default {
     this.deptBudgetList.warehouseType = this.$route.query.warehouseType
     this.deptBudgetList.warehouseId = this.$route.query.warehouseId
     this.getList()
+  
   },
   methods: {
+      qualityInspectorChange(e){
+      console.log(e)
+    },
     uploadSuccessHandle1(res){
       this.deptBudgetList.addressUrl=res.url
     },
     //返回按钮
     revert() {
       this.$router.push({ path: 'warehouseManagementList' })
+    },
+        carChange(e) {
+      for (let i = 0; i < this.tranCarInfoList.length; i++) {
+        if (this.tranCarInfoList[i].carNo == this.deptBudgetList.carNo) {
+          this.deptBudgetList.tranCarNo=this.tranCarInfoList[i].tranCarNo
+        }
+      }
     },
     typeChange(e){
 
@@ -442,12 +490,45 @@ export default {
     contractNoChange(e){
       for (var i = 0; i < this.outContractNo.length; i++) {
         if (this.outContractNo[i].contractNo == e) {
+             if (this.outContractNo[i].inOutType == '销售出库') {
+              this.deptBudgetList.inOutTypeKey = 1
+            } else if (this.outContractNo[i].inOutType == '移库出库') {
+              this.deptBudgetList.inOutTypeKey = 3
+            } else if (this.outContractNo[i].inOutType == '暂存入库') {
+              this.deptBudgetList.inOutTypeKey = 4
+            } else if (this.outContractNo[i].inOutType == '贸易服务出库') {
+              this.deptBudgetList.inOutTypeKey = 5
+            } else if (this.detailData.inOutType == '采购出库') {
+              this.deptBudgetList.inOutTypeKey = 6
+            }
           this.deptBudgetList.goodsName = this.outContractNo[i].goodsName
           this.deptBudgetList.goodsNameKey = this.outContractNo[i].goodsNameKey
+          this.deptBudgetList.inOutType = this.outContractNo[i].inOutType
+          if(this.outContractNo[i].tranCarInfoList){
+            this.options2=this.outContractNo[i].tranCarInfoList
+            this.tranCarInfoList=this.outContractNo[i].tranCarInfoList
+            this.carstatus=true
+          }
         }
       }
     },
-    
+    dataFilter2(val) {
+      this.deptBudgetList.carNo = val
+      if (val) {
+        //val存在
+        this.options1 = this.outContractNo1.filter((item) => {
+          if (
+            !!~item.carNo.indexOf(val) ||
+            !!~item.carNo.toUpperCase().indexOf(val.toUpperCase())
+          ) {
+            return true
+          }
+        })
+      } else {
+        //val为空时,还原数组
+        this.options2 = this.tranCarInfoList
+      }
+    },
     dataFilter(val) {
       // console.log(val,"名")
       this.deptBudgetList.staffList = val
@@ -1301,6 +1382,7 @@ export default {
         .toPromise()
         .then((response) => {
           // this.agent = response
+          this.qualityInspectorList = response
           this.options = response
            this.staffList = response
         })

+ 29 - 1
src/views/warehouse/warehouseManagementPerfectDelivery.vue

@@ -203,13 +203,30 @@
           </ws-form-item>
 
           <!--车牌号-->
-          <ws-form-item label="车牌号" span="1" prop="sourceGoods">
+          <ws-form-item label="车牌号" span="1" prop="carNo">
             <ws-input
+              v-if="!carstatus"
               v-model="dataList.carNo"
               placeholder="请输入车牌号"
               maxlength="20"
               size="small"
             />
+             <el-select
+              v-if="carstatus"
+              filterable
+              :filter-method="dataFilter2"
+              v-model="deptBudgetList.carNo"
+              placeholder="请选择车牌号"
+              class="typeselect"
+              @change="carChange"
+            >
+              <el-option
+                v-for="item in options2"
+                :key="item.constKey"
+                :label="item.carNo + '(' + item.tranCarNo + ')'"
+                :value="item.carNo"
+              />
+            </el-select>
           </ws-form-item>
         </ws-info-table>
       </div>
@@ -539,6 +556,17 @@ export default {
     contractNoChange(e){
       for (var i = 0; i < this.outContractNo.length; i++) {
         if (this.outContractNo[i].contractNo == e) {
+            if (this.outContractNo[i].inOutType == '销售出库') {
+              this.deptBudgetList.inOutTypeKey = 1
+            } else if (this.outContractNo[i].inOutType == '移库出库') {
+              this.deptBudgetList.inOutTypeKey = 3
+            } else if (this.outContractNo[i].inOutType == '暂存入库') {
+              this.deptBudgetList.inOutTypeKey = 4
+            } else if (this.outContractNo[i].inOutType == '贸易服务出库') {
+              this.deptBudgetList.inOutTypeKey = 5
+            } else if (this.detailData.inOutType == '采购出库') {
+              this.deptBudgetList.inOutTypeKey = 6
+            }
           this.dataList.goodsName = this.outContractNo[i].goodsName
           this.dataList.goodsNameKey = this.outContractNo[i].goodsNameKey
           if(this.outContractNo[i].tranCarInfoList){

+ 110 - 31
src/views/warehouse/warehouseManagementPerfectput.vue

@@ -25,7 +25,7 @@
     <ws-form ref="dataList" :model="dataList" :rules="rules">
       <div class="basicInformation">
         <h2>
-          {{ deptBudgetList1.warehouseName }}
+          {{ deptBudgetList1.warehouseName }}
           <span class="position" v-show="this.$route.query.warehouseType == 1">
             {{ deptBudgetList1.binNumber }}仓位
           </span>
@@ -149,8 +149,9 @@
             />
           </ws-form-item>
           <!--净重(吨)-->
-          <ws-form-item label="扣款" span="1" prop="deductionAmount">
+          <ws-form-item label="扣款(元/吨)" span="1" prop="deductionAmount">
             <ws-input
+            @input="kkInput(dataList.deductionAmount)"
               v-model="dataList.deductionAmount"
               placeholder="请输入扣款金额"
               maxlength="120"
@@ -207,6 +208,7 @@
               placeholder
               class="typeselect"
               @change="selectstorageType"
+               :disabled="isSelectType"
             >
               <ws-option
                 v-for="item in storageType"
@@ -331,14 +333,31 @@
       <div class="small-title">化验数据(选填)</div>
       <div class="inspector">
         <!--质检员-->
-        <ws-form-item label="质检员" span="1" prop="qualityInspector">
+        <!-- <ws-form-item label="质检员" span="1" prop="qualityInspector">
           <ws-input
             v-model="dataList.warehouseInOutDetail.qualityInspector"
             placeholder="请输入质检员姓名"
             maxlength="120"
             size="small"
           />
-        </ws-form-item>
+        </ws-form-item> -->
+           <ws-form-item label="自检员" span="1" prop="qualityInspector">
+            <el-select
+              v-model="dataList.warehouseInOutDetail.qualityInspector"
+              placeholder="请选择自检员"
+              filterable
+              clearable
+               :filter-method="dataFilter"
+              @change="qualityInspectorChange"
+            >
+              <el-option
+                v-for="item in qualityInspectorList"
+                :key="item.value"
+                :label="item.staffName"
+                :value="item.staffName"
+              />
+            </el-select>
+          </ws-form-item>
       </div>
       <div class="neifor">
         <ws-info-table>
@@ -445,10 +464,13 @@ export default {
     },
   },
   computed: {
-    ...mapGetters(['deptBudgetList']),
+    ...mapGetters(['dataList']),
   },
   data() {
     return {
+      isSelectType:true,
+      isGetCost:false,
+      qualityInspectorList:[],
       //弹出框
       dialogViewSpareMoney: false,
       dialogApproveFormVisible: false,
@@ -478,10 +500,10 @@ export default {
       storageType: [],
       deliveryType: [],
       outContractNo: [],
+      outContractNo1: [],
       // 提交类型
       submitType: true,
       typeList:['干粮','潮粮'],
-      storageType: [],
       appendixIdsAdd: '',
       uploadSuccess: {},
       warehouseInOutDetail: {},
@@ -569,27 +591,44 @@ export default {
     this.dataList.inOutTypeKey = Number(this.$route.query.inOutTypeKey)
     this.dataList.statusFlag = this.$route.statusFlag
     this.dataList.warehouseInOutDetail = this.$route.query.warehouseInOutDetail
-    this.deptBudgetList.warehouseType = this.$route.query.warehouseType
-    this.deptBudgetList.createType = this.$route.query.createType
-      this.dataList.temporaryOutType = this.$route.query.temporaryOutType
-      this.dataList.cost=this.$route.query.cost
-      this.dataList.freight=this.$route.query.freight
-      this.dataList.type=this.$route.query.type
-      this.dataList.buckleWeightRatio=this.$route.query.buckleWeightRatio
-      this.dataList.tidalGrainWater=this.$route.query.tidalGrainWater
-      this.dataList.solidGrainWater=this.$route.query.solidGrainWater
-      this.dataList.pureWeight=this.$route.query.pureWeight
-      this.dataList.deductionAmount=this.$route.query.deductionAmount
-      this.dataList.deductionWeight=this.$route.query.deductionWeight
+    this.dataList.warehouseType = this.$route.query.warehouseType
+    this.dataList.createType = this.$route.query.createType
+    this.dataList.temporaryOutType = this.$route.query.temporaryOutType
+    this.dataList.cost=this.$route.query.cost
+    this.dataList.freight=this.$route.query.freight
+    this.dataList.type=this.$route.query.type
+    this.dataList.buckleWeightRatio=this.$route.query.buckleWeightRatio
+    this.dataList.tidalGrainWater=this.$route.query.tidalGrainWater
+    this.dataList.solidGrainWater=this.$route.query.solidGrainWater
+    this.dataList.pureWeight=this.$route.query.pureWeight
+    this.dataList.deductionAmount=this.$route.query.deductionAmount
+    this.dataList.deductionWeight=this.$route.query.deductionWeight
+    this.dataList.inOutTypeFlag=1
+    if(this.dataList.cost){
+      this.isGetCost = true
+      this.cost = this.dataList.cost 
+    }
+
   },
   methods: {
+        kkInput(val){
+      console.log(val)
+      if(this.isGetCost){
+        if(this.dataList.cost>val){
+           this.dataList.cost = this.cost - this.dataList.deductionAmount
+          }
+      }
+    },
+       qualityInspectorChange(e){
+      console.log(e)
+    },
     uploadSuccessHandle1(res){
       this.dataList.addressUrl=res.url
     },
     pureweight(status){
-      console.log(this.deptBudgetList)
-      if(this.deptBudgetList.netWeight&&this.deptBudgetList.tidalGrainWater&&this.deptBudgetList.solidGrainWater&&this.deptBudgetList.buckleWeightRatio){
-        this.deptBudgetList.pureWeight=(this.deptBudgetList.netWeight*(100-(this.deptBudgetList.tidalGrainWater-this.deptBudgetList.solidGrainWater)*this.deptBudgetList.buckleWeightRatio))/100
+      console.log(this.dataList)
+      if(this.dataList.netWeight&&this.dataList.tidalGrainWater&&this.dataList.solidGrainWater&&this.dataList.buckleWeightRatio){
+        this.dataList.pureWeight=(this.dataList.netWeight*(100-(this.dataList.tidalGrainWater-this.dataList.solidGrainWater)*this.dataList.buckleWeightRatio))/100
       }
     },
     //返回按钮
@@ -599,6 +638,7 @@ export default {
     carChange(e){
         for (let i = 0; i < this.tranCarInfoList.length; i++) {
           if(this.tranCarInfoList[i].carNo==this.dataList.carNo){
+            this.dataList.tranCarNo=this.tranCarInfoList[i].tranCarNo
             this.dataList.freight=this.tranCarInfoList[i].tranPrice
           }
           
@@ -610,9 +650,33 @@ export default {
     contractNoChange(e){
       for (var i = 0; i < this.outContractNo.length; i++) {
         if (this.outContractNo[i].contractNo == e) {
+            if (this.outContractNo[i].inOutType == '采购入库') {
+              this.dataList.inOutTypeKey = 1
+            } else if (this.outContractNo[i].inOutType == '移库入库') {
+              this.dataList.inOutTypeKey = 3
+            } else if (this.outContractNo[i].inOutType == '暂存入库') {
+              this.dataList.inOutTypeKey = 4
+            } else if (this.outContractNo[i].inOutType == '贸易服务入库') {
+              this.dataList.inOutTypeKey = 5
+            } else if (this.detailData.inOutType == '退库') {
+              this.dataList.inOutTypeKey = 6
+            }
           this.dataList.goodsName = this.outContractNo[i].goodsName
           this.dataList.goodsNameKey = this.outContractNo[i].goodsNameKey
-          this.dataList.cost= this.outContractNo[i].contractPrice
+            this.cost = this.outContractNo[i].contractPrice
+          if(this.cost){
+            this.isGetCost = true
+              this.dataList.cost = this.cost - this.dataList.deductionAmount
+          }else{
+             this.isGetCost = false
+             this.dataList.cost = this.dataList.cost
+          }
+          this.dataList.inOutType = this.outContractNo[i].inOutType
+          if(this.outContractNo[i].inOutType=='移库入库'){
+            this.isSelectType = false
+          }else{
+            this.isSelectType = true
+          }
           if(this.outContractNo[i].tranCarInfoList){
             this.options2=this.outContractNo[i].tranCarInfoList
             this.tranCarInfoList=this.outContractNo[i].tranCarInfoList
@@ -623,7 +687,7 @@ export default {
     },
     dataFilter1(val) {
        console.log(val)
-        this.deptBudgetList.contractNo = val;
+        this.dataList.contractNo = val;
         if (val) { //val存在
           this.options1 = this.outContractNo1.filter((item) => {
             if (!!~item.contractNo.indexOf(val) || !!~item.contractNo.toUpperCase().indexOf(val.toUpperCase())) {
@@ -635,7 +699,7 @@ export default {
         }
       },
       dataFilter2(val) {
-        this.deptBudgetList.carNo = val;
+        this.dataList.carNo = val;
         if (val) { //val存在
           this.options1 = this.outContractNo1.filter((item) => {
             if (!!~item.carNo.indexOf(val) || !!~item.carNo.toUpperCase().indexOf(val.toUpperCase())) {
@@ -648,7 +712,7 @@ export default {
       },
     dataFilter(val) {
       // console.log(val,"名")
-      this.deptBudgetList.staffList = val
+      this.dataList.staffList = val
       if (val) {
         //val存在
         this.options = this.staffList.filter((item) => {
@@ -665,6 +729,7 @@ export default {
       }
     },
     editClick(status){
+       this.isGetCost = false
       if(status==1){
         this.disabled1=!this.disabled1
       }else{
@@ -674,7 +739,7 @@ export default {
     selectstaff(e) {
       for (var i = 0; i < this.staffList.length; i++) {
         if (this.staffList[i].staffName == e) {
-          this.deptBudgetList.personChargeKey = this.staffList[i].staffId
+          this.dataList.personChargeKey = this.staffList[i].staffId
         }
       }
     },
@@ -685,7 +750,7 @@ export default {
         confirmButtonText: '确定',
         type: 'warning',
       })
-        .then(() => {debugger
+        .then(() => {
           this.$refs.dataList.validate((valid) => {
             if (valid) {
               this.dataList.compId = sessionStorage.getItem('ws-pf_compId')
@@ -825,8 +890,8 @@ export default {
         return
       }
       if (
-        this.deptBudgetList.type=='潮粮'&&this.dataList.solidGrainWater < 1 ||
-        this.deptBudgetList.type=='潮粮'&&this.dataList.solidGrainWater > 40 ||
+        this.dataList.type=='潮粮'&&this.dataList.solidGrainWater < 1 ||
+        this.dataList.type=='潮粮'&&this.dataList.solidGrainWater > 40 ||
         (this.dataList.type=='潮粮'&&String(this.dataList.solidGrainWater).indexOf('.') != -1 &&
           String(this.dataList.solidGrainWater).length -
             (String(this.dataList.solidGrainWater).indexOf('.') + 1) >
@@ -1270,10 +1335,16 @@ export default {
         })
       // 类型
       if (this.$route.query.warehouseType == '1') {
+        this.storageType = []
         pullDown({ constId: 'CON5' })
           .toPromise()
           .then((response) => {
-            this.storageType = response
+            // this.storageType = response
+               for(let i = 0;i<response.length;i++){
+                if(response[i].constValue=='移库入库'||response[i].constValue=='退库'){
+                  this.storageType.push(response[i])
+                }
+            }
           })
       } else if (this.$route.query.warehouseType == '2') {
         //临时仓库入库类型
@@ -1290,16 +1361,24 @@ export default {
           })
       }
       //合同编号
-      xialaNo({ compId: sessionStorage.getItem('ws-pf_compId') })
+      xialaNo({ compId: sessionStorage.getItem('ws-pf_compId'), flag: 6 })
         .toPromise()
         .then((response) => {
+          this.options1 = response
           this.outContractNo = response
         })
+      //合同编号2
+      xialaNo({ compId: sessionStorage.getItem('ws-pf_compId'), flag: 7 })
+        .toPromise()
+        .then((response) => {
+          this.outContractNo1 = response
+        })
       //经办人
       getstaff({ compId: sessionStorage.getItem('ws-pf_compId'),warehouseId:this.dataList.id })
         .toPromise()
         .then((response) => {
           this.options = response
+          this.qualityInspectorList = response
           this.staffList = response
           //  this.agent = response
         })

+ 20 - 8
src/views/warehouse/warehouseManagementPut.vue

@@ -431,7 +431,6 @@
               placeholder="请选择自检员"
               filterable
               clearable
-              :filter-method="qualityDataFilter"
               @change="qualityInspectorChange"
             >
               <el-option
@@ -643,7 +642,7 @@ export default {
       accessoryTFs: false,
     }
   },
-  mounted() {debugger
+  mounted() {
     this.deptBudgetList.baseId = this.$route.query.baseId
     this.deptBudgetList.positionId = this.$route.query.positionId
     this.deptBudgetList.warehouseName = this.$route.query.warehouseName
@@ -653,8 +652,9 @@ export default {
     this.getList()
     this.deptBudgetList.grade = '一等品'
     this.deptBudgetList.gradeKey = '1'
+    this.deptBudgetList.inOutTypeFlag=1
        if(this.deptBudgetList.cost){
-        if(this.deptBudgetList.cost>val){
+        if(this.deptBudgetList.cost>this.deptBudgetList.deductionAmount){
            this.deptBudgetList.cost = this.cost - this.deptBudgetList.deductionAmount
           }
        else{
@@ -662,10 +662,10 @@ export default {
        }
       }
     // if (this.deptBudgetList.warehouseType == 1) {
-    //   this.deptBudgetList.inOutType = '采购入库'
+    //   // this.deptBudgetList.inOutType = '采购入库'
     //   this.deptBudgetList.inOutTypeKey = '1'
     // } else {
-    //   this.deptBudgetList.inOutType = '退库'
+    //   // this.deptBudgetList.inOutType = '退库'
     //   this.deptBudgetList.inOutTypeKey = '1'
     // }
   },
@@ -673,7 +673,7 @@ export default {
     qualityInspectorChange(e){
       console.log(e)
     },
-    kkInput(val){debugger
+    kkInput(val){
       console.log(val)
       if(this.isGetCost){
         if(this.deptBudgetList.cost>val){
@@ -735,6 +735,7 @@ export default {
     carChange(e) {
       for (let i = 0; i < this.tranCarInfoList.length; i++) {
         if (this.tranCarInfoList[i].carNo == this.deptBudgetList.carNo) {
+          this.deptBudgetList.tranCarNo=this.tranCarInfoList[i].tranCarNo
           this.deptBudgetList.freight = this.tranCarInfoList[i].tranPrice
         }
       }
@@ -1804,9 +1805,20 @@ export default {
         )
       }
     },
-    contractNoChange(e) {debugger
+    contractNoChange(e) {
       for (var i = 0; i < this.outContractNo.length; i++) {
         if (this.outContractNo[i].contractNo == e) {
+          if (this.outContractNo[i].inOutType == '采购入库') {
+              this.deptBudgetList.inOutTypeKey = 1
+            } else if (this.outContractNo[i].inOutType == '移库入库') {
+              this.deptBudgetList.inOutTypeKey = 3
+            } else if (this.outContractNo[i].inOutType == '暂存入库') {
+              this.deptBudgetList.inOutTypeKey = 4
+            } else if (this.outContractNo[i].inOutType == '贸易服务入库') {
+              this.deptBudgetList.inOutTypeKey = 5
+            } else if (this.detailData.inOutType == '退库') {
+              this.deptBudgetList.inOutTypeKey = 6
+            }
           this.deptBudgetList.goodsName = this.outContractNo[i].goodsName
           this.deptBudgetList.goodsNameKey = this.outContractNo[i].goodsNameKey
           // this.deptBudgetList.cost = this.outContractNo[i].contractPrice
@@ -1902,7 +1914,7 @@ export default {
         this.storageType = []
         pullDown({ constId: 'CON5' })
           .toPromise()
-          .then((response) => {debugger
+          .then((response) => {
             // this.storageType = response
             for(let i = 0;i<response.length;i++){
                 if(response[i].constValue=='移库入库'||response[i].constValue=='退库'){