修改仓储条码显示

master
suixy 3 weeks ago
parent a8b23a8a6c
commit 011aa486bd

@ -121,10 +121,6 @@ const getOption = () => {
},
itemStyle:{
color:(a,b,c,d) =>{
console.log(a);
console.log(b);
console.log(c);
console.log(d);
}
},
labelLine: {

@ -129,14 +129,19 @@ const getOption = () => {
fontSize: 8,
color: '#ddd',
},
indicator:[
{name: '产品1', max: 100},
{name: '产品2', max: 100},
{name: '产品3', max: 100},
{name: '产品4', max: 100},
{name: '产品5', max: 100},
{name: '产品6', max: 100},
]
indicator:(props.inputData?.x1||[' ']).map(e=>{
return {
name:e
}
})
// indicator:[
// {name: '1', max: 100},
// {name: '2', max: 100},
// {name: '3', max: 100},
// {name: '4', max: 100},
// {name: '5', max: 100},
// {name: '6', max: 100},
// ]
},
series: [
{
@ -152,7 +157,8 @@ const getOption = () => {
},
data: [
{
value: [98,95,93,95,93,97],
// value: [98,95,93,95,93,97],
value: props.inputData?.y1,
name: 'Allocated Budget',
areaStyle: {
color: {

@ -1,6 +1,7 @@
<template>
<div class="p-2">
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
<transition :enter-active-class="proxy?.animate.searchAnimate.enter"
:leave-active-class="proxy?.animate.searchAnimate.leave">
<div v-show="showSearch" class="mb-[10px]">
<el-card shadow="hover">
<el-form ref="queryFormRef" :model="queryParams" :inline="true">
@ -8,10 +9,12 @@
<el-input v-model="queryParams.instockPrintId" placeholder="请输入入库单子表主键" clearable @keyup.enter="handleQuery" />
</el-form-item> -->
<el-form-item label="入库单号" prop="instockCode">
<el-input v-model="queryParams.instockCode" placeholder="请输入入库单号" clearable @keyup.enter="handleQuery" />
<el-input v-model="queryParams.instockCode" placeholder="请输入入库单号" clearable
@keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="批次码" prop="batchCode">
<el-input v-model="queryParams.batchCode" placeholder="请输入批次码" clearable @keyup.enter="handleQuery" />
<el-input v-model="queryParams.batchCode" placeholder="请输入批次码" clearable
@keyup.enter="handleQuery" />
</el-form-item>
<!-- <el-form-item label="条码数量" prop="materialQty">
<el-input v-model="queryParams.materialQty" placeholder="请输入条码数量" clearable @keyup.enter="handleQuery" />
@ -19,49 +22,49 @@
<el-form-item label="分包数量" prop="apportionQty">
<el-input v-model="queryParams.apportionQty" placeholder="请输入分包数量" clearable @keyup.enter="handleQuery" />
</el-form-item> -->
<!-- <el-form-item label="物料" prop="materialId">
<el-select v-model="queryParams.materialId" placeholder="请选择物料">
<el-option
v-for="item in materialList"
:key="item.materialId"
:label="item.materialCode"
:value="item.materialId"
/>
</el-select>
</el-form-item>-->
<!-- <el-form-item label="物料" prop="materialId">
<el-select v-model="queryParams.materialId" placeholder="请选择物料">
<el-option
v-for="item in materialList"
:key="item.materialId"
:label="item.materialCode"
:value="item.materialId"
/>
</el-select>
</el-form-item>-->
<!-- <el-form-item label="物料编码" prop="materialCode">
<el-input v-model="queryParams.materialCode" placeholder="请输入物料编码" clearable @keyup.enter="handleQuery" />
</el-form-item> -->
<!-- <el-form-item label="物料名称" prop="materialName">
<el-input v-model="queryParams.materialName" placeholder="请输入物料名称" clearable @keyup.enter="handleQuery" />
</el-form-item>-->
<!-- <el-form-item label="物料规格" prop="materialSpe">
<el-input v-model="queryParams.materialSpe" placeholder="请输入物料规格" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="计量单位名称" prop="unitName" label-width="120px">
<el-input v-model="queryParams.unitName" placeholder="请输入计量单位名称" clearable @keyup.enter="handleQuery" />
</el-form-item>-->
<!-- <el-form-item label="是否有条码" prop="codeYesNo" label-width="120px">-->
<!-- <el-select v-model="queryParams.codeYesNo" placeholder="请选择物料大类">-->
<!-- <el-option-->
<!-- v-for="dict in wms_barcode_if"-->
<!-- :key="dict.value"-->
<!-- :label="dict.label"-->
<!-- :value="dict.value"-->
<!-- ></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="物料大类" prop="materialCategoryId">-->
<!-- <el-select v-model="queryParams.materialCategoryId" placeholder="请选择物料大类">-->
<!-- <el-form-item label="物料名称" prop="materialName">
<el-input v-model="queryParams.materialName" placeholder="请输入物料名称" clearable @keyup.enter="handleQuery" />
</el-form-item>-->
<!-- <el-form-item label="物料规格" prop="materialSpe">
<el-input v-model="queryParams.materialSpe" placeholder="请输入物料规格" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="计量单位名称" prop="unitName" label-width="120px">
<el-input v-model="queryParams.unitName" placeholder="请输入计量单位名称" clearable @keyup.enter="handleQuery" />
</el-form-item>-->
<!-- <el-form-item label="是否有条码" prop="codeYesNo" label-width="120px">-->
<!-- <el-select v-model="queryParams.codeYesNo" placeholder="请选择物料大类">-->
<!-- <el-option-->
<!-- v-for="dict in wms_barcode_if"-->
<!-- :key="dict.value"-->
<!-- :label="dict.label"-->
<!-- :value="dict.value"-->
<!-- ></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="物料大类" prop="materialCategoryId">-->
<!-- <el-select v-model="queryParams.materialCategoryId" placeholder="请选择物料大类">-->
<!-- <el-option v-for="item in mategoryOptions"-->
<!-- :key="item.materialCategoryId"-->
<!-- :label="item.materialCategoryName"-->
<!-- :value="item.materialCategoryId"-->
<!-- />-->
<!-- <el-option v-for="item in mategoryOptions"-->
<!-- :key="item.materialCategoryId"-->
<!-- :label="item.materialCategoryName"-->
<!-- :value="item.materialCategoryId"-->
<!-- />-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<el-form-item>
<el-button type="primary" icon="Search" @click="handleQuery"></el-button>
<el-button icon="Refresh" @click="resetQuery"></el-button>
@ -81,30 +84,47 @@
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['system:instockPrint:edit']"></el-button>
</el-col>
<el-col :span="1.5">-->
<!-- <el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['system:instockPrint:remove']"></el-button>
</el-col>-->
<!-- <el-col :span="1.5">
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['system:instockPrint:export']"></el-button>
</el-col>-->
<!-- <el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['system:instockPrint:remove']"></el-button>
</el-col>-->
<!-- <el-col :span="1.5">
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['system:instockPrint:export']"></el-button>
</el-col>-->
<el-col :span="1.5">
<el-button type="warning" plain icon="Download" @click="handlePrint" v-if="!inboundStatusdVisble"></el-button>
<el-button type="warning" plain icon="Download" @click="handlePrint" v-if="!inboundStatusdVisble">
</el-button>
</el-col>
<right-toolbar v-model:showSearch="showSearch" :columns="columns" :search="true" @queryTable="getList"></right-toolbar>
<right-toolbar v-model:showSearch="showSearch" :columns="columns" :search="true"
@queryTable="getList"></right-toolbar>
</el-row>
</template>
<el-table v-loading="loading" :data="instockPrintList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<!-- <el-table-column label="入库单子表主键" align="center" prop="instockPrintId" v-if="columns[0].visible"/> -->
<el-table-column label="入库单号" align="center" prop="instockCode" v-if="columns[0].visible"/>
<el-table-column label="批次码" align="center" prop="batchCode" v-if="columns[1].visible"/>
<el-table-column label="每包数量" align="center" prop="materialQty" v-if="columns[2].visible"/>
<el-table-column label="条码数量" align="center" prop="apportionQty" v-if="columns[3].visible"/>
<el-table-column label="入库单号" align="center" prop="instockCode" v-if="columns[0].visible" />
<el-table-column label="批次码" align="center" prop="batchCode" v-if="columns[1].visible">
<template #default="scope">
<el-popover
placement="right-start"
>
<template #reference>
<span>{{ scope.row.batchCode }}</span>
</template>
<div>
<img :src="qrcodeList.find(e=>e.code === scope.row.batchCode).src"
:style="{ width:'100px',height:'100px',objectFit:'contain'}"
alt="" />
</div>
</el-popover>
</template>
</el-table-column>
<el-table-column label="每包数量" align="center" prop="materialQty" v-if="columns[2].visible" />
<el-table-column label="条码数量" align="center" prop="apportionQty" v-if="columns[3].visible" />
<!-- <el-table-column label="物料id" align="center" prop="materialId" v-if="columns[6].visible"/> -->
<el-table-column label="物料编码" align="center" prop="materialCode" v-if="columns[4].visible"/>
<el-table-column label="物料名称" align="center" prop="materialName" v-if="columns[5].visible"/>
<el-table-column label="物料规格" align="center" prop="materialSpe" v-if="columns[6].visible"/>
<el-table-column label="计量单位名称" align="center" prop="unitName" v-if="columns[7].visible"/>
<el-table-column label="物料编码" align="center" prop="materialCode" v-if="columns[4].visible" />
<el-table-column label="物料名称" align="center" prop="materialName" v-if="columns[5].visible" />
<el-table-column label="物料规格" align="center" prop="materialSpe" v-if="columns[6].visible" />
<el-table-column label="计量单位名称" align="center" prop="unitName" v-if="columns[7].visible" />
<!-- <el-table-column label="是否有条码" align="center" prop="codeYesNo" v-if="columns[11].visible">
<template #default="scope">
<dict-tag :options="wms_barcode_if" :value="scope.row.codeYesNo"/>
@ -121,7 +141,8 @@
<dict-tag :options="wms_inbound_status" :value="scope.row.inboundStatus"/>
</template>w
</el-table-column> -->
<el-table-column label="实际入库时间" align="center" prop="actualInboundTime" width="120px" v-if="!inboundStatusdVisble">
<el-table-column label="实际入库时间" align="center" prop="actualInboundTime" width="120px"
v-if="!inboundStatusdVisble">
<template #default="scope">
<span>{{ parseTime(scope.row.actualInboundTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
@ -129,13 +150,13 @@
<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"/>
<dict-tag :options="inspection_request" :value="scope.row.inspectionRequest" />
</template>
</el-table-column>
<el-table-column label="入库状态" align="center" prop="inboundStatus" v-if="columns[10].visible">
<template #default="scope">
<dict-tag :options="wms_inbound_status" :value="scope.row.inboundStatus"/>
<dict-tag :options="wms_inbound_status" :value="scope.row.inboundStatus" />
</template>
</el-table-column>
@ -151,7 +172,8 @@
</el-table-column> -->
</el-table>
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum"
v-model:limit="queryParams.pageSize" @pagination="getList" />
</el-card>
<!-- 添加或修改入库单-物料打印条码对话框 -->
@ -205,16 +227,31 @@
</template>
<script setup name="InstockPrint" lang="ts">
import { listInstockPrint, getInstockPrint, delInstockPrint, addInstockPrint, updateInstockPrint, printInstockPrint } from '@/api/wms/instockPrint';
import {
listInstockPrint,
getInstockPrint,
delInstockPrint,
addInstockPrint,
updateInstockPrint,
printInstockPrint
} from '@/api/wms/instockPrint';
import { InstockPrintVO, InstockPrintQuery, InstockPrintForm } from '@/api/wms/instockPrint/types';
import {
getMaterialList
} from '@/api/wms/linkage'
} from '@/api/wms/linkage';
import QRCode from 'qrcode';
const qrcodeList = ref([]);
import { getBaseMaterialCategoryListInWMS } from '@/api/wms/baseMaterialCategory';
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
const { material_mategories, wms_barcode_if, inspection_request, wms_inbound_status } = toRefs<any>(proxy?.useDict('material_mategories', 'wms_barcode_if', 'inspection_request', 'wms_inbound_status'));
const {
material_mategories,
wms_barcode_if,
inspection_request,
wms_inbound_status
} = toRefs<any>(proxy?.useDict('material_mategories', 'wms_barcode_if', 'inspection_request', 'wms_inbound_status'));
const instockPrintList = ref<InstockPrintVO[]>([]);
const buttonLoading = ref(false);
const loading = ref(true);
@ -229,7 +266,6 @@ const queryFormRef = ref<ElFormInstance>();
const instockPrintFormRef = ref<ElFormInstance>();
const initFormData: InstockPrintForm = {
instockPrintId: undefined,
instockCode: undefined,
@ -248,11 +284,11 @@ const initFormData: InstockPrintForm = {
inboundStatus: undefined,
actualInboundTime: undefined,
createTime: undefined,
inspectionRequest: undefined,
}
inspectionRequest: undefined
};
const data = reactive<PageData<InstockPrintForm, InstockPrintQuery>>({
form: {...initFormData},
form: { ...initFormData },
queryParams: {
pageNum: 1,
pageSize: 10,
@ -274,8 +310,7 @@ const data = reactive<PageData<InstockPrintForm, InstockPrintQuery>>({
actualInboundTime: undefined,
createTime: undefined,
inspectionRequest: undefined,
params: {
}
params: {}
},
rules: {
// instockPrintId: [
@ -326,9 +361,9 @@ const route = useRoute();
const inboundStatusdVisble = ref(false);
//
let routeInboundStatusValue = '';
if (route.query.inboundStatus ) {
if (route.query.inboundStatus) {
//
const inboundStatusdValue = Array.isArray(route.query.inboundStatus )
const inboundStatusdValue = Array.isArray(route.query.inboundStatus)
? route.query.inboundStatus[0]
: route.query.inboundStatus;
queryParams.value.inboundStatus = inboundStatusdValue;
@ -358,7 +393,7 @@ const columns = ref<FieldOption[]>([
// { key: 10, label: ``, visible: false },
{ key: 8, label: `打印时间`, visible: true },
{ key: 9, label: `质检要求`, visible: true },
{ key: 10, label: `质检状态`, visible: true}
{ key: 10, 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 },
@ -369,62 +404,72 @@ const getList = async () => {
loading.value = true;
const res = await listInstockPrint(queryParams.value);
instockPrintList.value = res.rows;
qrcodeList.value = res.rows.map(row => {
return {
code: row.batchCode,
src: ''
};
});
qrcodeList.value.forEach(async row => {
row.src = await QRCode.toDataURL(row.code);
});
console.log(qrcodeList.value);
total.value = res.total;
loading.value = false;
}
};
/** 取消按钮 */
const cancel = () => {
reset();
dialog.visible = false;
}
};
/** 表单重置 */
const reset = () => {
form.value = {...initFormData};
form.value = { ...initFormData };
queryParams.value.inboundStatus = routeInboundStatusValue;
instockPrintFormRef.value?.resetFields();
}
};
/** 搜索按钮操作 */
const handleQuery = () => {
queryParams.value.pageNum = 1;
queryParams.value.inboundStatus = routeInboundStatusValue;
getList();
}
};
/** 重置按钮操作 */
const resetQuery = () => {
queryFormRef.value?.resetFields();
queryParams.value.inboundStatus = routeInboundStatusValue;
handleQuery();
}
};
/** 多选框选中数据 */
const handleSelectionChange = (selection: InstockPrintVO[]) => {
vos.value = selection
console.log(vos.value)
vos.value = selection;
console.log(vos.value);
ids.value = selection.map(item => item.instockPrintId);
single.value = selection.length != 1;
multiple.value = !selection.length;
}
};
/** 新增按钮操作 */
const handleAdd = () => {
reset();
dialog.visible = true;
dialog.title = "添加入库单-物料打印条码";
}
dialog.title = '添加入库单-物料打印条码';
};
/** 修改按钮操作 */
const handleUpdate = async (row?: InstockPrintVO) => {
reset();
const _instockPrintId = row?.instockPrintId || ids.value[0]
const _instockPrintId = row?.instockPrintId || ids.value[0];
const res = await getInstockPrint(_instockPrintId);
Object.assign(form.value, res.data);
dialog.visible = true;
dialog.title = "修改入库单-物料打印条码";
}
dialog.title = '修改入库单-物料打印条码';
};
/** 提交按钮 */
const submitForm = () => {
@ -432,41 +477,41 @@ const submitForm = () => {
if (valid) {
buttonLoading.value = true;
if (form.value.instockPrintId) {
await updateInstockPrint(form.value).finally(() => buttonLoading.value = false);
await updateInstockPrint(form.value).finally(() => buttonLoading.value = false);
} else {
await addInstockPrint(form.value).finally(() => buttonLoading.value = false);
await addInstockPrint(form.value).finally(() => buttonLoading.value = false);
}
proxy?.$modal.msgSuccess("操作成功");
proxy?.$modal.msgSuccess('操作成功');
dialog.visible = false;
await getList();
}
});
}
};
/** 删除按钮操作 */
const handleDelete = async (row?: InstockPrintVO) => {
const _instockPrintIds = row?.instockPrintId || ids.value;
await proxy?.$modal.confirm('是否确认删除入库单-物料打印条码编号为"' + _instockPrintIds + '"的数据项?').finally(() => loading.value = false);
await delInstockPrint(_instockPrintIds);
proxy?.$modal.msgSuccess("删除成功");
proxy?.$modal.msgSuccess('删除成功');
await getList();
}
};
/** 打印按钮操作 */
const handlePrint = async (row?: InstockPrintVO) => {
console.log(vos.value)
console.log(vos.value);
const _instockPrintVOs = vos.value;
// await proxy?.$modal.confirm('-"' + _instockPrintIds + '"').finally(() => loading.value = false);
await printInstockPrint({'vos':_instockPrintVOs});
await printInstockPrint({ 'vos': _instockPrintVOs });
// proxy?.$modal.msgSuccess("");
await getList();
}
};
/** 导出按钮操作 */
const handleExport = () => {
proxy?.download('wms/instockPrint/export', {
...queryParams.value
}, `instockPrint_${new Date().getTime()}.xlsx`)
}
}, `instockPrint_${new Date().getTime()}.xlsx`);
};
let mategoryOptions = ref([]);
const getMaterialCategorySelect = async () => {
@ -477,8 +522,8 @@ const getMaterialCategorySelect = async () => {
onMounted(() => {
getMaterialList().then(e => {
materialList.value = e.data
})
materialList.value = e.data;
});
getList();
getMaterialCategorySelect();
});

Loading…
Cancel
Save