#
whycq
2023-04-28 48d7350d89db2b4ab98b6775031945de45f34c60
pages/order/orderPutOn.vue
@@ -1,18 +1,18 @@
<template>
   <view>
      <view class="code">
         <view class="item">
         <!-- <view class="item">
            <view class="code-decs">订单号:</view>
            <input type="text" placeholder=" 扫码 / 输入" v-model="order" :focus="orderFocus"
               @input="orderInput()" disabled>
         </view>
         </view> -->
         <view class="item">
            <view class="code-decs">库位号:</view>
            <view class="code-decs">托盘码:</view>
            <input type="text" placeholder=" 扫码 / 输入" v-model="barcode" :focus="barcodeFocus"
               @confirm="barcodeInput()">
         </view>
         <view class="item">
            <view class="code-decs">物料码:</view>
            <view class="code-decs">库位号:</view>
            <input type="text" placeholder=" 扫码 / 输入" v-model="matnr" :focus="matFocus" @input="findMat()">
            <view class="item-right">
               <button></button>
@@ -32,13 +32,19 @@
                  <view class="left-item">{{i + 1}}</view>
               </view>
               <view class="list-left-item">
                  <view class="desc">编码:</view>
                  <view class="desc">订单号:</view>
                  <view class="left-item">
                     <uni-tag :text="item.orderNo" type="primary"></uni-tag>
                  </view>
               </view>
               <view class="list-left-item">
                  <view class="desc">料号:</view>
                  <view class="left-item">
                     <uni-tag :text="item.matnr" type="primary"></uni-tag>
                  </view>
               </view>
               <view class="list-left-item">
                  <view class="desc">品名:</view>
                  <view class="desc">名称:</view>
                  <view class="left-item">{{item.maktx}}</view>
               </view>
               <view class="list-left-item">
@@ -75,14 +81,14 @@
               <!-- 标题 -->
               <view class="title">修改</view>
               <view class="popup-item">
                  <view class="popup-item-left">编码:</view>
                  <view class="popup-item-left">料号:</view>
                  <view class="popup-item-right">
                     <input type="text" v-model="matnr" disabled="true"
                     <input type="text" v-model="matnr1" disabled="true"
                        style="background-color: #f7f7f7;padding: 0;color: #d5d5d5;">
                  </view>
               </view>
               <view class="popup-item">
                  <view class="popup-item-left">合同号:</view>
                  <view class="popup-item-left">批号:</view>
                  <view class="popup-item-right"><input type="text" v-model="batch"></view>
               </view>
               <view class="popup-item">
@@ -149,6 +155,7 @@
            count: 0,
            rowNum: '',
            matnr: '',
            matnr1: '',
            batch: '',
            msgType1: 'success',
            msgType: 'success',
@@ -169,42 +176,10 @@
            this.msgType1 = type
            this.$refs.message.open()
         },
         orderInput() {
            let that = this
            var order =  that.order.split(";")
            that.order = order[0]
            that.matnr = order[1]
            setTimeout(() => {
               that.orderFocus = true
            }, 200)
            uni.request({
               url: that.baseUrl + '/ManPakOut/list/auth',
               data: {
                  matnr: that.matnr
               },
               header: {
                  'token': uni.getStorageSync('token')
               },
               success(res) {
                  console.log(res);
               }
            })
         },
         // 搜索物料
         findMat() {
            let that = this
            var matnr =  that.matnr.split(";")
            if (that.order != '') {
               if (that.order != matnr[0]) {
                  this.messageText = "当前物料不在订单内,请重新选择!!"
                  this.messageToggle('error')
                  setTimeout(()=> {
                     that.matnr = ''
                     that.matFocus = true
                  },1000)
                  return
               }
            }
            that.order = matnr[0]
            that.matnr = matnr[1]
            uni.request({
@@ -221,6 +196,7 @@
                     that.matData = result.data
                     that.matnr = ''
                     that.matData['batch'] = ''
                     result.data.batch = matnr[2]
                     uni.navigateTo({
                        url: "../mat/matSelected",
                        // 通过eventChannel向被打开页面传送数据
@@ -236,9 +212,9 @@
                           },
                        },
                     });
                  } else if (res.code == 403) {
                  } else if (result.code == 403) {
                     uni.showToast({
                        title: res.msg,
                        title: result.msg,
                        icon: "none",
                        position: 'top'
                     })
@@ -249,7 +225,7 @@
                     }, 1000);
                  } else {
                     uni.showToast({
                        title: res.msg,
                        title: result.msg,
                        icon: "none",
                        position: 'top'
                     })
@@ -260,6 +236,7 @@
         
         },
         checkMat(mat) {
            mat['orderNo'] = this.order
            var len = this.dataList.length
            var add = true ,sameItem = false
            for (var i = 0; i < len; i++) {
@@ -290,7 +267,7 @@
               this.dataList.unshift(mat)
            }
         },
         combConfirm() {
         combConfirm(type) {
            this.msgType = type
            this.title = '警告'
            this.content = '是否现在组托!'
@@ -319,7 +296,7 @@
            uni.request({
               url: that.baseUrl + '/mobile/comb/auth',
               data: JSON.stringify({
                  barcode: that.barcode,
                  locno: that.barcode,
                  combMats: that.dataList
               }),
               method: 'POST',
@@ -346,6 +323,63 @@
                  }
               }
            });
         },
         reset(type) {
            this.msgType = type
            this.title = '警告'
            this.content = '是否重置!'
            this.$refs.resetConfirm.open()
         },
         // 确认重置
         resetConfirm() {
            this.dataList = []
            this.order = ''
            this.barcode = ''
            this.messageText = "重置完成"
            this.messageToggle('success')
         },
         // 取消重置
         resetClose() {
         },
         // 修改批号
         revise(item, i) {
            this.matnr1 = this.dataList[i].matnr
            this.count = this.dataList[i].anfme
            this.batch = this.dataList[i].batch
            this.rowNum = i
            this.eject()
         },
         eject(type) {
            this.type = type
            this.$refs.revise.open(type)
         },
         // 列表移除按钮
         remove(item, i, type) {
            this.msgType = type
            this.title = '警告'
            this.content = '是否移除当前商品!'
            this.$refs.alertDialog.open(i)
         },
         // 确认移除
         removeConfirm(i) {
            this.messageText = "移除成功"
            this.messageToggle('success')
            this.dataList.splice(i, 1)
         },
         reviseConfirm() {
            this.dataList[this.rowNum].anfme = this.count
            this.dataList[this.rowNum].batch = this.batch
            this.messageText = "修改成功"
            this.messageToggle('success')
            this.$refs.revise.close()
            this.$forceUpdate() // 强制刷新
         },
         reviseClose() {
            this.$refs.revise.close()
         },
         changeValue(value) {
            this.count = value
         },
      }
   }
@@ -409,7 +443,7 @@
      width: 100%;
      background-color: white;
      position: fixed;
      margin-top: 300rpx;
      margin-top: 200rpx;
      z-index: 9;
      /* border-top: 1px solid #DCDFE6; */
      text-align: center;