组盘入库添加功能

This commit is contained in:
2025-10-28 17:12:07 +08:00
parent 6d1a8d7378
commit c48a4b471a
5 changed files with 53 additions and 12 deletions

View File

@@ -73,7 +73,9 @@
"Keyword": "Keyword",
"Pointlocation": "Point location",
"Pointlocationcarrier": "Point - location carrier",
"Unitmeasurement": "Unit of measurement"
"Unitmeasurement": "Unit of measurement",
"WarehousingType": "Warehousing Type",
"MaterialQRCode": "Material QR Code"
},
"th": {
"MaterialBoxNumber": "Material Box Number",

View File

@@ -73,7 +73,9 @@
"Keyword": "Từ khóa",
"Pointlocation": "Điểm",
"Pointlocationcarrier": "Vật chở tại điểm",
"Unitmeasurement": "Đơn vị đo"
"Unitmeasurement": "Đơn vị đo",
"WarehousingType": "Loại nhập kho",
"MaterialQRCode": "Mã QR vật liệu"
},
"th": {
"MaterialBoxNumber": "Số hộp vật liệu",

View File

@@ -73,7 +73,9 @@
"Keyword": "关键字",
"Pointlocation": "点位",
"Pointlocationcarrier": "点位载具",
"Unitmeasurement": "计量单位"
"Unitmeasurement": "计量单位",
"WarehousingType": "入库类型",
"MaterialQRCode": "物料二维码"
},
"th": {
"MaterialBoxNumber": "料框号",

View File

@@ -29,6 +29,18 @@
<uni-data-select :placeholder="$t('utils.selectPlaceholder')" :emptyTips="$t('utils.selectEmptyTips')" v-model="index" :localdata="options" @change="selectChange"></uni-data-select>
</view>
</view>
<view class="is-required">
<view class="filter_label">{{$t('label.WarehousingType')}}</view>
<view class="filter_select">
<uni-data-select :placeholder="$t('utils.selectPlaceholder')" :emptyTips="$t('utils.selectEmptyTips')" v-model="index1" :localdata="options1" @change="selectChange1"></uni-data-select>
</view>
</view>
<view>
<view class="filter_label">{{$t('label.MaterialQRCode')}}</view>
<search-box
v-model="qrcode"
/>
</view>
<view>
<view class="filter_label">{{$t('label.MaterialName')}}</view>
<input type="text" class="filter_input filter_input_disabled" v-model="currentData.material_name" disabled>
@@ -70,7 +82,7 @@
</view>
<view class="zd-row submit-bar">
<button class="zd-col-6 button-default" @tap="clearUp">{{$t('button.clear')}}</button>
<button class="zd-col-16 button-primary" :class="{'button-info': !val1 || !val2 || !index}" :disabled="disabled" @tap="_confirmIn">{{$t('button.confirm')}}</button>
<button class="zd-col-16 button-primary" :class="{'button-info': !val1 || !val2 || !index || !index1}" :disabled="disabled" @tap="_confirmIn">{{$t('button.confirm')}}</button>
</view>
</view>
</template>
@@ -78,7 +90,7 @@
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {getSect, getVehicleMaterial, confirmIn} from '@/utils/getData.js'
import {getSect, getVehicleMaterial, confirmIn, dictDetail} from '@/utils/getData.js'
export default {
components: {
NavBar,
@@ -91,6 +103,9 @@
val2: '',
options: [],
index: '',
options1: [],
index1: '',
qrcode: '',
disabled: false,
currentData: {},
dataList: []
@@ -98,16 +113,15 @@
},
onLoad (options) {
this.title = options.title
},
created () {
this._getSect()
this._dictDetail()
},
methods: {
async _getSect () {
try {
let res = await getSect()
if (res) {
this.options = res
this.options = [...res]
} else {
this.options =[]
}
@@ -115,9 +129,24 @@
this.options = []
}
},
async _dictDetail () {
try {
let res = await dictDetail('ST_INV_IN_TYPE')
if (res && res.code === '200') {
this.options1 = [...res.content]
} else {
this.options1 =[]
}
} catch (e) {
this.options1 = []
}
},
selectChange (e) {
this.index = e
},
selectChange1 (e) {
this.index1 = e
},
handleChange (e) {
if (e) {
this._getVehicleMaterial(e)
@@ -142,18 +171,20 @@
this.val1 = ''
this.val2 = ''
this.index = ''
this.index1 = ''
this.qrcode = ''
this.disabled = false
this.currentData = {}
this.dataList = []
},
async _confirmIn () {
this.disabled = true
if (!this.val1 || !this.val2 || !this.index) {
if (!this.val1 || !this.val2 || !this.index || !this.index1) {
this.disabled = false
return
}
try {
let res = await confirmIn(this.val1, this.val2, this.index)
let res = await confirmIn(this.val1, this.val2, this.index, this.index1, this.qrcode)
if (res.status === '200') {
this.clearUp()
}

View File

@@ -60,9 +60,9 @@ export const getVehicleMaterial = (search) => request({
url:'api/pda/iosIn/getVehicleMaterial',
data: {search: search}
})
export const confirmIn = (vcode, sitecode, sid) => request({
export const confirmIn = (vcode, sitecode, sid, type, barcode) => request({
url:'api/pda/iosIn/confirmIn',
data: {vehicle_code: vcode, site_code: sitecode, sect_id: sid}
data: {vehicle_code: vcode, site_code: sitecode, sect_id: sid, in_type: type, barcode: barcode}
})
// 人工叫料
@@ -132,4 +132,8 @@ export const addTaskV2 = (Value, point1, point2) => request({
}
]
}
})
export const dictDetail = (code) => request({
url:'api/dict/dictDetail?code=' + code + '&page=0&size=9999',
method: 'GET'
})