This commit is contained in:
2022-11-27 13:35:38 +08:00
parent 17eae55192
commit 68a0e64732
6 changed files with 33 additions and 34 deletions

View File

@@ -229,7 +229,6 @@
</template>
<script>
import checkoutbill from '@/views/wms/st/outbill/checkoutbill'
import CRUD, { crud, header, presenter } from '@crud/crud'
import rrOperation from '@crud/RR.operation'
import crudOperation from '@crud/CRUD.operation'
@@ -237,7 +236,8 @@ import pagination from '@crud/Pagination'
import DivDialog from '@/views/wms/statistics/ioStorQuery/DivDialog'
import TaskDialog from '@/views/wms/statistics/ioStorQuery/TaskDialog'
import crudStorattr from '@/views/wms/basedata/st/stor/storattr'
import crudRawAssist from '@/views/wms/st/inbill/rawassist'
import inandoutreturn from '@/views/wms/st/inAndOutReturn/inandoutreturn'
import checkoutbill from '@/views/wms/st/outbill/checkoutbill'
export default {
name: 'IoStorQuery',
@@ -247,18 +247,20 @@ export default {
props: {
// 每页数据条数
size: 20
},idField: 'iostorinv_id', url: 'api/checkoutbill', crudMethod: { ...checkoutbill },
},idField: 'iostorinv_id', url: 'api/inandoutreturn', crudMethod: { ...inandoutreturn },
optShow: {
add: false,
edit: false,
del: false,
reset: true,
download: false
}})
},
query: { io_type: '0' }
})
},
mixins: [presenter(), header(), crud()],
// 数据字典
dicts: ['ST_QUALITY_SCODE', 'io_bill_status', 'ST_CREATE_MODE', 'io_type', 'is_upload'],
dicts: ['io_bill_status', 'ST_CREATE_MODE', 'io_type', 'is_upload', 'ST_INV_IN_TYPE', 'ST_INV_OUT_TYPE'],
data() {
return {
height: document.documentElement.clientHeight - 180 + 'px;',
@@ -283,12 +285,11 @@ export default {
}
},
created() {
crudStorattr.getStor({ 'is_materialstore': '1' }).then(res => {
crudStorattr.getStor({ 'is_productstore': '1' }).then(res => {
this.storlist = res.content
})
checkoutbill.getType().then(res => {
this.billtypelist = res
})
debugger
this.billtypelist = this.dict.ST_INV_IN_TYPE
},
methods: {
[CRUD.HOOK.beforeRefresh]() {
@@ -324,17 +325,9 @@ export default {
},
ioTypeChange(value) {
if (value === '1') {
crudRawAssist.getType({ 'io_code': '', 'io_flag': '01' }).then(res => {
this.billtypelist = res
})
} else if (value === '0') {
crudRawAssist.getType({ 'io_code': '', 'io_flag': '00' }).then(res => {
this.billtypelist = res
})
this.billtypelist = this.dict.ST_INV_OUT_TYPE
} else {
checkoutbill.getType().then(res => {
this.billtypelist = res
})
this.billtypelist = this.dict.ST_INV_IN_TYPE
}
this.crud.toQuery()
},
@@ -342,10 +335,11 @@ export default {
return this.dict.label.io_bill_status[row.bill_status]
},
bill_typeFormat(row) {
for (const item of this.billtypelist) {
if (item.code === row.bill_type) {
return item.name
}
if (this.query.io_type === '0') {
return this.dict.label.ST_INV_IN_TYPE[row.bill_type]
}
if (this.query.io_type === '1') {
return this.dict.label.ST_INV_OUT_TYPE[row.bill_type]
}
},
create_modeFormat(row) {