Files
pad-nl-three-uni/pages/management/SemifinishedInStoreSearch.vue
2024-02-20 16:29:38 +08:00

243 lines
7.0 KiB
Vue

<template>
<view class="content">
<nav-bar title="半成品入库查询"></nav-bar>
<view class="search-confirm-wrap">
<view class="search-wrap">
<view class="search-item">
<label class="search-label">仓库</label>
<view class="filter_input_wraper">
<uni-data-select v-model="index1" :localdata="options1" @change="selectChange1"></uni-data-select>
</view>
</view>
<view class="search-item">
<label class="search-label">开始日期</label>
<view class="filter_input_wraper">
<input type="text" class="search-input-l" v-model="startDate" @click="open1">
</view>
</view>
<view class="search-item">
<label class="search-label">结束日期</label>
<view class="filter_input_wraper">
<input type="text" class="search-input-l" v-model="endDate" @click="open2">
</view>
</view>
<view class="search-item">
<label class="search-label">业务类型</label>
<view class="filter_input_wraper">
<uni-data-select v-model="index2" :localdata="options2" @change="selectChange2"></uni-data-select>
</view>
</view>
<view class="search-item">
<label class="search-label">物料</label>
<view class="filter_input_wraper">
<input type="text" class="search-input-l" v-model="val1" placeholder="编号/名称">
</view>
</view>
<view class="search-item">
<label class="search-label">载具号</label>
<view class="filter_input_wraper">
<input type="text" class="search-input-l" v-model="val1">
</view>
</view>
</view>
<view class="confirm-button-wrap">
<button class="confirm-button" @tap="toSearch">查询</button>
<button class="confirm-button" :class="{'confirm-button_disabled': !pkId || !index2 || !val1 || !index3}" :disabled="disabled" @tap="toSure">强制确认</button>
</view>
</view>
<view class="grid-wrap zd_wrapper">
<view class="slide_new">
<table class="grid-table">
<thead>
<tr>
<th>选择</th>
<th>序号</th>
<th>单据号</th>
<th>状态</th>
<th>类型</th>
<th>物料编号</th>
<th>物料名称</th>
<th>数量</th>
<th>单重(g)</th>
<th>载具号</th>
<th>入库点</th>
<th>货位</th>
<th>创建时间</th>
<th>创建人</th>
</tr>
</thead>
<tbody>
<tr v-for="e in dataList" :key="e.position_code" @click="toRadio(e)">
<td>
<view class="iconfont icon-check" :class="{'icon-checked': pkId === e.position_code}"></view>
</td>
<td>{{e.cacheline_code}}</td>
<td>{{e.position_code}}</td>
<td>{{e.vehicle_code}}</td>
<td></td>
<td>{{e.cacheline_code}}</td>
<td>{{e.position_code}}</td>
<td>{{e.vehicle_code}}</td>
<td></td>
<td>{{e.cacheline_code}}</td>
<td>{{e.position_code}}</td>
<td>{{e.vehicle_code}}</td>
<td>{{e.cacheline_code}}</td>
<td>{{e.position_code}}</td>
</tr>
</tbody>
</table>
</view>
</view>
<view>
<uni-calendar
ref="calendar1"
:insert="false"
:date="startDate"
@confirm="confirm1"
/>
</view>
<view>
<uni-calendar
ref="calendar2"
:insert="false"
:date="endDate"
@confirm="confirm2"
/>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {getCacheLine, inOutExceptionInstQuery, inOutExceptionInstConfirm} from '@/utils/getData2.js'
import {dateFtt} from '@/utils/utils.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
startDate: dateFtt(new Date()),
endDate: dateFtt(new Date(new Date().setDate(new Date().getDate() + 1))),
options1: [{text: '1线本成品入库', value: '1'}],
index1: 'A1',
options2: [{text: '清洗入库', value: '1'}, {text: '挑料入库', value: '2'}, {text: '回流入库', value: 'A1'}, {text: '手工入库', value: 'A2'}],
index2: '1',
val1: '',
dataList: [{position_code: '1', vehicle_code: 'djlfjjljlkllkllldf', cacheline_code: 'jfjldfjl'}, {position_code: '2', vehicle_code: 'djlfjldf', cacheline_code: 'jfjldfjl'}, {position_code: '21', vehicle_code: 'djlfjldf', cacheline_code: 'jfjldfjl'}, {position_code: '22', vehicle_code: 'djlfjldf', cacheline_code: 'jfjldfjl'}, {position_code: '23', vehicle_code: 'djlfjldf', cacheline_code: 'jfjldfjl'}, {position_code: '24', vehicle_code: 'djlfjldf', cacheline_code: 'jfjldfjl'}, {position_code: '25', vehicle_code: 'djlfjldf', cacheline_code: 'jfjldfjl'}, {position_code: '26', vehicle_code: 'djlfjldf', cacheline_code: 'jfjldfjl'}, {position_code: '27', vehicle_code: 'djlfjldf', cacheline_code: 'jfjldfjl'}, {position_code: '29', vehicle_code: 'djlfjldf', cacheline_code: 'jfjldfjl'}],
pkId: '',
disabled: false
};
},
created() {
},
methods: {
open1(){
this.$refs.calendar1.open()
},
confirm1(e) {
var compare = Date.parse(new Date(e.fulldate)) - Date.parse(new Date(this.endDate))
if (compare < 0) {
this.startDate = e.fulldate
}
},
open2(){
this.$refs.calendar2.open()
},
confirm2(e) {
var compare = Date.parse(new Date(e.fulldate)) - Date.parse(new Date(this.startDate))
if (compare > 0) {
this.endDate = e.fulldate
}
},
/** 选择器1 */
selectChange1(e) {
this.index1 = e
if (this.index1) {
this._getCacheLine(e)
}
this.index2 = ''
},
/** 选择器2 */
selectChange2(e) {
this.index2 = e
},
/** 选择器3 */
selectChange3(e) {
this.index3 = e
},
toSearch () {
this.dataList = []
this.pkId = ''
this._inOutExceptionInstQuery()
},
async _getCacheLine (id) {
let res = await getCacheLine(id)
this.options2 = [...res]
},
async _inOutExceptionInstQuery () {
let res = await inOutExceptionInstQuery(this.index2)
this.dataList = [...res]
},
async toSure () {
this.disabled = true
if (!this.pkId) {
uni.showToast({
title: '请选择',
icon: 'none'
})
this.disabled = false
return
}
if (!this.index2) {
uni.showToast({
title: '请选择缓存线',
icon: 'none'
})
this.disabled = false
return
}
if (!this.index3) {
uni.showToast({
title: '请选择位置类型',
icon: 'none'
})
this.disabled = false
return
}
if (!this.val1) {
uni.showToast({
title: '请扫满箱码',
icon: 'none'
})
this.disabled = false
return
}
try {
let res = await inOutExceptionInstConfirm(this.index2, this.val1, this.pkId, this.index3)
this.disabled = false
this.toSearch()
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled = false
}
},
toRadio (e) {
this.pkId = this.pkId === e.position_code ? '' : e.position_code
}
}
}
</script>
<style lang="stylus" scoped>
.grid-wrap
height: calc(100% - 237px); /** 42+ 15*6+ 35*3 */
/deep/ .uni-calendar-item__weeks-box-item
height: 40px !important
</style>