update 熟化库过账修改目的货位下拉框方法

This commit is contained in:
18110972313 2025-04-27 13:33:05 +08:00
parent 24132593cf
commit 866fd5b6f8

View File

@ -135,7 +135,6 @@
<el-select
size="small"
filterable
@change="changeLocW"
v-model="desParams.params.ERPLOCATION"
placeholder="下拉选择仓库"
>
@ -160,9 +159,9 @@
>
<el-option
v-for="item in locDecList2"
:key="item.VALUE"
:label="item.LABEL"
:value="item.VALUE"
:key="item.STORAGENAME"
:label="item.DESCRIPTION"
:value="item.STORAGENAME"
/>
</el-select>
</el-form-item>
@ -216,6 +215,7 @@
import { getORG } from '@/api/auth'
import { cals } from '@/utils/cal'
import { getOpCode } from '@/api/opcode'
import request from '@/utils/request'
const { tableContainer, tableHeight, updateTableHeight, handleResize } = bTableHeight(330)
const queryFormRef = ref(ElForm)
@ -427,6 +427,8 @@
updateTableHeight()
window.addEventListener('resize', handleResize)
StorageList()
getStorageSpecLocationList()
})
function getRKey(row: any) {
@ -573,7 +575,7 @@
function getlocDec(query: any) {
// console.log(query)
let arr = state.locDecListAll.filter((item: any) => {
return item.LABEL.includes(query) || item.VALUE.includes(query)
return item.STORAGENAME.includes(query) || item.STORAGENAME.includes(query)
})
// console.log(arr)
if (arr.length > 50) {
@ -679,6 +681,21 @@
// state.loading2 = false
state.Button_state = false
}
async function getStorageSpecLocationList() {
let erpLocation = JSON.parse(localStorage.getItem('orgNo'));
request({
url: '/api/api/storage/getLocationNameForERPLocation',
method: 'post',
data: {
erpLocation: erpLocation,
SITENAME: 'SDK',
},
}).then((res: any) => {
state.locDecListAll = res.resultObj;
console.log(state.locDecList2)
});
}
</script>
<style scoped lang="scss">