Commit 4f431fe7 by LJM

移动端--按货品复核--批量复核模式,扫多个时,只显示最新扫的这个待复核物料

parent 4148c8ff
......@@ -538,7 +538,7 @@
<script>
import { API } from '@/util/api.js';
import debounce from 'lodash/debounce';
import { createArray } from '@/util/util.js';
import { createArray, getFirstEightChars } from '@/util/util.js';
export default {
data() {
......@@ -669,6 +669,12 @@
this.$forceUpdate();
}, 1500);
} else if (type == 2) {
//入库批次号为自营仓库的时候,旧标签开启状态,输入文本后自动截取前8位,。
if (this.warehouse_id == 9 && this.old_Label) {
val = getFirstEightChars(val);
}
//入库批次号 开启批量扫描
if (this.is_batch) {
this.input_flag_stock_in_batch_sn = false;
......
......@@ -38,10 +38,10 @@
<view class="row verCenter">
<text class="iconfont icon-juxing1"></text>
<template v-if="is_batch">
<input class="uni-input" placeholder="请扫描入库标签" placeholder-style="color:#919399" :focus="isFocus" v-model="search_keyword" @input="handleInput(2, search_keyword)" maxlength="15" ref="myInput" />
<input class="uni-input" placeholder="请扫描入库标签" placeholder-style="color:#919399" :focus="isFocus" v-model="search_keyword" @input="handleInput(2, search_keyword)" :maxlength="maxlength" />
</template>
<template v-else>
<input class="uni-input" placeholder="请扫描入库标签" placeholder-style="color:#919399" :focus="isFocus" v-model="searchParams.stock_in_batch_sn" @input="handleInput(2, searchParams.stock_in_batch_sn)" maxlength="15" />
<input class="uni-input" placeholder="请扫描入库标签" placeholder-style="color:#919399" :focus="isFocus" v-model="searchParams.stock_in_batch_sn" @input="handleInput(2, searchParams.stock_in_batch_sn)" :maxlength="maxlength" />
</template>
</view>
<text class="iconfont icon-a-juxing11" @click="clearInput(2)" v-if="input_flag_stock_in_batch_sn"></text>
......@@ -613,7 +613,7 @@
<script>
import { API } from '@/util/api.js';
import { createArray } from '@/util/util.js';
import { createArray, getFirstEightChars } from '@/util/util.js';
import debounce from 'lodash/debounce';
export default {
......@@ -652,6 +652,7 @@
packConfigList: [], //箱配置列表
image_list: [], //图片列表
maxNum: 10, //最大上传图片数量
maxlength: 15, //输入框长度15
searchParams: {
stock_out_id: '',
box_name: '001',
......@@ -1008,6 +1009,12 @@
this.input_flag_box_name = true;
this.getData();
} else if (type == 2) {
//入库批次号为自营仓库的时候,旧标签开启状态,输入文本后自动截取前8位,。
if (this.warehouse_id == 9 && this.old_Label) {
val = getFirstEightChars(val);
}
//入库批次号 开启批量扫描
if (this.is_batch) {
this.input_flag_stock_in_batch_sn = false;
......@@ -1016,9 +1023,7 @@
if (!this.history_id.includes(val)) {
this.history_id.push(val);
}
this.searchParams.stock_in_batch_sn = this.history_id.join(',');
this.getData((data, msg) => {
//回调data里数据,加是否选中交互
if (data.length > 0) {
......@@ -1121,11 +1126,6 @@
title: this.stock_out_sn + '复核'
});
//入库批次号为自营仓库的时候,输入文本后自动截取前8位,作为入库批次号传给后台进行校验。
if (this.warehouse_id == 9 && this.old_Label) {
this.searchParams.stock_in_batch_sn = this.searchParams.stock_in_batch_sn.substring(0, 8);
}
this.request(URL, 'POST', { page: this.page, limit: this.limit, ...this.searchParams }, false).then(res => {
if (res.code === 0) {
//过滤出待复核不为0的数据
......
......@@ -79,10 +79,17 @@ const createArray = (length, value) => {
}
/**
* 截取字符串的前8个字符
*/
const getFirstEightChars = (str) => {
return str.substring(0, 8);
}
module.exports = {
request,
getPlatform,
createArray
createArray,
getFirstEightChars
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment