|
@@ -0,0 +1,418 @@
|
|
|
+<template>
|
|
|
+ <ContentWrap>
|
|
|
+ <!-- 搜索工作栏 -->
|
|
|
+ <el-form
|
|
|
+ class="-mb-15px"
|
|
|
+ :model="queryParams"
|
|
|
+ ref="queryFormRef"
|
|
|
+ :inline="true"
|
|
|
+ label-width="68px"
|
|
|
+ >
|
|
|
+ <el-form-item label="入库id" prop="storageId">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.storageId"
|
|
|
+ placeholder="请输入入库id"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="组织部门id" prop="deptId">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.deptId"
|
|
|
+ placeholder="请输入组织部门id"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="工厂(SAP) 专业公司" prop="factory">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.factory"
|
|
|
+ placeholder="请输入工厂(SAP) 专业公司"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="库存地点 - SAP 部门 项目部级" prop="projectDepartment">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.projectDepartment"
|
|
|
+ placeholder="请输入库存地点 - SAP 部门 项目部级"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="成本中心(SAP) 库存地点 小队" prop="costCenter">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.costCenter"
|
|
|
+ placeholder="请输入成本中心(SAP) 库存地点 小队"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="物料编码" prop="materialCode">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.materialCode"
|
|
|
+ placeholder="请输入物料编码"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="物料名称" prop="materialName">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.materialName"
|
|
|
+ placeholder="请输入物料名称"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="物料组" prop="materialGroupName">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.materialGroupName"
|
|
|
+ placeholder="请输入物料组"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="物料组id" prop="materialGroupId">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.materialGroupId"
|
|
|
+ placeholder="请输入物料组id"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="出库数量" prop="quantity">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.quantity"
|
|
|
+ placeholder="请输入出库数量"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="单价" prop="unitPrice">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.unitPrice"
|
|
|
+ placeholder="请输入单价"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="单位" prop="unit">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.unit"
|
|
|
+ placeholder="请输入单位"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="使用方向 对应BOM节点" prop="bomNodeId">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.bomNodeId"
|
|
|
+ placeholder="请输入使用方向 对应BOM节点"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="使用类型(1维修 2保养 3临时)" prop="type">
|
|
|
+ <el-select
|
|
|
+ v-model="queryParams.type"
|
|
|
+ placeholder="请选择使用类型(1维修 2保养 3临时)"
|
|
|
+ clearable
|
|
|
+ class="!w-240px"
|
|
|
+ >
|
|
|
+ <el-option label="请选择字典生成" value="" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="出库时间" prop="deliveryTime">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="queryParams.deliveryTime"
|
|
|
+ value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
+ type="daterange"
|
|
|
+ start-placeholder="开始日期"
|
|
|
+ end-placeholder="结束日期"
|
|
|
+ :default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
|
|
+ class="!w-220px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="出库原因" prop="reason">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.reason"
|
|
|
+ placeholder="请输入出库原因"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="排序" prop="sort">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.sort"
|
|
|
+ placeholder="请输入排序"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="状态 0启用 1停用" prop="status">
|
|
|
+ <el-select
|
|
|
+ v-model="queryParams.status"
|
|
|
+ placeholder="请选择状态 0启用 1停用"
|
|
|
+ clearable
|
|
|
+ class="!w-240px"
|
|
|
+ >
|
|
|
+ <el-option label="请选择字典生成" value="" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="备注" prop="remark">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.remark"
|
|
|
+ placeholder="请输入备注"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="流程实例id" prop="processInstanceId">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.processInstanceId"
|
|
|
+ placeholder="请输入流程实例id"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="审批状态 未提交、审批中、审批通过、审批不通过、已取消" prop="auditStatus">
|
|
|
+ <el-select
|
|
|
+ v-model="queryParams.auditStatus"
|
|
|
+ placeholder="请选择审批状态 未提交、审批中、审批通过、审批不通过、已取消"
|
|
|
+ clearable
|
|
|
+ class="!w-240px"
|
|
|
+ >
|
|
|
+ <el-option label="请选择字典生成" value="" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="创建时间" prop="createTime">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="queryParams.createTime"
|
|
|
+ value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
+ type="daterange"
|
|
|
+ start-placeholder="开始日期"
|
|
|
+ end-placeholder="结束日期"
|
|
|
+ :default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
|
|
+ class="!w-220px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
|
|
|
+ <el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ @click="openForm('create')"
|
|
|
+ v-hasPermi="['pms:iot-outbound:create']"
|
|
|
+ >
|
|
|
+ <Icon icon="ep:plus" class="mr-5px" /> 新增
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ type="success"
|
|
|
+ plain
|
|
|
+ @click="handleExport"
|
|
|
+ :loading="exportLoading"
|
|
|
+ v-hasPermi="['pms:iot-outbound:export']"
|
|
|
+ >
|
|
|
+ <Icon icon="ep:download" class="mr-5px" /> 导出
|
|
|
+ </el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </ContentWrap>
|
|
|
+
|
|
|
+ <!-- 列表 -->
|
|
|
+ <ContentWrap>
|
|
|
+ <el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
|
|
|
+ <el-table-column label="主键" align="center" prop="id" />
|
|
|
+ <el-table-column label="入库id" align="center" prop="storageId" />
|
|
|
+ <el-table-column label="组织部门id" align="center" prop="deptId" />
|
|
|
+ <el-table-column label="工厂(SAP) 专业公司" align="center" prop="factory" />
|
|
|
+ <el-table-column label="库存地点 - SAP 部门 项目部级" align="center" prop="projectDepartment" />
|
|
|
+ <el-table-column label="成本中心(SAP) 库存地点 小队" align="center" prop="costCenter" />
|
|
|
+ <el-table-column label="物料编码" align="center" prop="materialCode" />
|
|
|
+ <el-table-column label="物料名称" align="center" prop="materialName" />
|
|
|
+ <el-table-column label="物料组" align="center" prop="materialGroupName" />
|
|
|
+ <el-table-column label="物料组id" align="center" prop="materialGroupId" />
|
|
|
+ <el-table-column label="出库数量" align="center" prop="quantity" />
|
|
|
+ <el-table-column label="单价" align="center" prop="unitPrice" />
|
|
|
+ <el-table-column label="单位" align="center" prop="unit" />
|
|
|
+ <el-table-column label="使用方向 对应BOM节点" align="center" prop="bomNodeId" />
|
|
|
+ <el-table-column label="使用类型(1维修 2保养 3临时)" align="center" prop="type" />
|
|
|
+ <el-table-column
|
|
|
+ label="出库时间"
|
|
|
+ align="center"
|
|
|
+ prop="deliveryTime"
|
|
|
+ :formatter="dateFormatter"
|
|
|
+ width="180px"
|
|
|
+ />
|
|
|
+ <el-table-column label="出库原因" align="center" prop="reason" />
|
|
|
+ <el-table-column label="排序" align="center" prop="sort" />
|
|
|
+ <el-table-column label="状态 0启用 1停用" align="center" prop="status" />
|
|
|
+ <el-table-column label="备注" align="center" prop="remark" />
|
|
|
+ <el-table-column label="流程实例id" align="center" prop="processInstanceId" />
|
|
|
+ <el-table-column label="审批状态 未提交、审批中、审批通过、审批不通过、已取消" align="center" prop="auditStatus" />
|
|
|
+ <el-table-column
|
|
|
+ label="创建时间"
|
|
|
+ align="center"
|
|
|
+ prop="createTime"
|
|
|
+ :formatter="dateFormatter"
|
|
|
+ width="180px"
|
|
|
+ />
|
|
|
+ <el-table-column label="操作" align="center" min-width="120px">
|
|
|
+ <template #default="scope">
|
|
|
+ <el-button
|
|
|
+ link
|
|
|
+ type="primary"
|
|
|
+ @click="openForm('update', scope.row.id)"
|
|
|
+ v-hasPermi="['pms:iot-outbound:update']"
|
|
|
+ >
|
|
|
+ 编辑
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ link
|
|
|
+ type="danger"
|
|
|
+ @click="handleDelete(scope.row.id)"
|
|
|
+ v-hasPermi="['pms:iot-outbound:delete']"
|
|
|
+ >
|
|
|
+ 删除
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <!-- 分页 -->
|
|
|
+ <Pagination
|
|
|
+ :total="total"
|
|
|
+ v-model:page="queryParams.pageNo"
|
|
|
+ v-model:limit="queryParams.pageSize"
|
|
|
+ @pagination="getList"
|
|
|
+ />
|
|
|
+ </ContentWrap>
|
|
|
+
|
|
|
+ <!-- 表单弹窗:添加/修改 -->
|
|
|
+ <IotOutboundForm ref="formRef" @success="getList" />
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup lang="ts">
|
|
|
+import { dateFormatter } from '@/utils/formatTime'
|
|
|
+import download from '@/utils/download'
|
|
|
+import { IotOutboundApi, IotOutboundVO } from '@/api/pms/iotoutbound'
|
|
|
+import IotOutboundForm from './IotOutboundForm.vue'
|
|
|
+
|
|
|
+/** PMS 出库 列表 */
|
|
|
+defineOptions({ name: 'IotOutbound' })
|
|
|
+
|
|
|
+const message = useMessage() // 消息弹窗
|
|
|
+const { t } = useI18n() // 国际化
|
|
|
+
|
|
|
+const loading = ref(true) // 列表的加载中
|
|
|
+const list = ref<IotOutboundVO[]>([]) // 列表的数据
|
|
|
+const total = ref(0) // 列表的总页数
|
|
|
+const queryParams = reactive({
|
|
|
+ pageNo: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ storageId: undefined,
|
|
|
+ deptId: undefined,
|
|
|
+ factory: undefined,
|
|
|
+ projectDepartment: undefined,
|
|
|
+ costCenter: undefined,
|
|
|
+ materialCode: undefined,
|
|
|
+ materialName: undefined,
|
|
|
+ materialGroupName: undefined,
|
|
|
+ materialGroupId: undefined,
|
|
|
+ quantity: undefined,
|
|
|
+ unitPrice: undefined,
|
|
|
+ unit: undefined,
|
|
|
+ bomNodeId: undefined,
|
|
|
+ type: undefined,
|
|
|
+ deliveryTime: [],
|
|
|
+ reason: undefined,
|
|
|
+ sort: undefined,
|
|
|
+ status: undefined,
|
|
|
+ remark: undefined,
|
|
|
+ processInstanceId: undefined,
|
|
|
+ auditStatus: undefined,
|
|
|
+ createTime: [],
|
|
|
+})
|
|
|
+const queryFormRef = ref() // 搜索的表单
|
|
|
+const exportLoading = ref(false) // 导出的加载中
|
|
|
+
|
|
|
+/** 查询列表 */
|
|
|
+const getList = async () => {
|
|
|
+ loading.value = true
|
|
|
+ try {
|
|
|
+ const data = await IotOutboundApi.getIotOutboundPage(queryParams)
|
|
|
+ list.value = data.list
|
|
|
+ total.value = data.total
|
|
|
+ } finally {
|
|
|
+ loading.value = false
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+/** 搜索按钮操作 */
|
|
|
+const handleQuery = () => {
|
|
|
+ queryParams.pageNo = 1
|
|
|
+ getList()
|
|
|
+}
|
|
|
+
|
|
|
+/** 重置按钮操作 */
|
|
|
+const resetQuery = () => {
|
|
|
+ queryFormRef.value.resetFields()
|
|
|
+ handleQuery()
|
|
|
+}
|
|
|
+
|
|
|
+/** 添加/修改操作 */
|
|
|
+const formRef = ref()
|
|
|
+const openForm = (type: string, id?: number) => {
|
|
|
+ formRef.value.open(type, id)
|
|
|
+}
|
|
|
+
|
|
|
+/** 删除按钮操作 */
|
|
|
+const handleDelete = async (id: number) => {
|
|
|
+ try {
|
|
|
+ // 删除的二次确认
|
|
|
+ await message.delConfirm()
|
|
|
+ // 发起删除
|
|
|
+ await IotOutboundApi.deleteIotOutbound(id)
|
|
|
+ message.success(t('common.delSuccess'))
|
|
|
+ // 刷新列表
|
|
|
+ await getList()
|
|
|
+ } catch {}
|
|
|
+}
|
|
|
+
|
|
|
+/** 导出按钮操作 */
|
|
|
+const handleExport = async () => {
|
|
|
+ try {
|
|
|
+ // 导出的二次确认
|
|
|
+ await message.exportConfirm()
|
|
|
+ // 发起导出
|
|
|
+ exportLoading.value = true
|
|
|
+ const data = await IotOutboundApi.exportIotOutbound(queryParams)
|
|
|
+ download.excel(data, 'PMS 出库.xls')
|
|
|
+ } catch {
|
|
|
+ } finally {
|
|
|
+ exportLoading.value = false
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+/** 初始化 **/
|
|
|
+onMounted(() => {
|
|
|
+ getList()
|
|
|
+})
|
|
|
+</script>
|