|
|
|
|
@ -127,6 +127,12 @@
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="质检要求" align="center" prop="inspectionRequest" v-if="columns[9].visible">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<dict-tag :options="inspection_request" :value="scope.row.inspectionRequest"/>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-tooltip content="修改" placement="top">
|
|
|
|
|
@ -202,7 +208,7 @@ import {
|
|
|
|
|
import { getBaseMaterialCategoryListInWMS } from '@/api/wms/baseMaterialCategory';
|
|
|
|
|
|
|
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
|
|
const { material_mategories, wms_barcode_if } = toRefs<any>(proxy?.useDict('material_mategories', 'wms_barcode_if'));
|
|
|
|
|
const { material_mategories, wms_barcode_if, inspection_request } = toRefs<any>(proxy?.useDict('material_mategories', 'wms_barcode_if', 'inspection_request'));
|
|
|
|
|
const instockPrintList = ref<InstockPrintVO[]>([]);
|
|
|
|
|
const buttonLoading = ref(false);
|
|
|
|
|
const loading = ref(true);
|
|
|
|
|
@ -236,6 +242,7 @@ const initFormData: InstockPrintForm = {
|
|
|
|
|
inboundStatus: undefined,
|
|
|
|
|
actualInboundTime: undefined,
|
|
|
|
|
createTime: undefined,
|
|
|
|
|
inspectionRequest: undefined,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const data = reactive<PageData<InstockPrintForm, InstockPrintQuery>>({
|
|
|
|
|
@ -260,6 +267,7 @@ const data = reactive<PageData<InstockPrintForm, InstockPrintQuery>>({
|
|
|
|
|
inboundStatus: undefined,
|
|
|
|
|
actualInboundTime: undefined,
|
|
|
|
|
createTime: undefined,
|
|
|
|
|
inspectionRequest: undefined,
|
|
|
|
|
params: {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
@ -343,6 +351,7 @@ const columns = ref<FieldOption[]>([
|
|
|
|
|
// { key: 9, label: `是否有条码`, visible: false },
|
|
|
|
|
// { key: 10, label: `物料大类`, visible: false },
|
|
|
|
|
{ key: 8, label: `打印时间`, visible: true },
|
|
|
|
|
{ key: 9, label: `质检要求`, visible: true },
|
|
|
|
|
// { key: 13, label: `推荐库位id`, visible: inboundStatusdVisble.value },
|
|
|
|
|
// { key: 14, label: `入库状态(0-待入库,1-已入库,2-入库中)`, visible: inboundStatusdVisble.value },
|
|
|
|
|
// { key: 15, label: `实际入库时间`, visible: inboundStatusdVisble.value },
|
|
|
|
|
|