You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

334 lines
11 KiB
Vue

<template>
<ContentWrap>
<!-- 搜索工作栏 -->
<el-form
class="-mb-15px"
:model="queryParams"
ref="queryFormRef"
:inline="true"
label-width="68px"
>
<el-row>
<el-col :span="7">
<el-form-item label="日期" prop="reportDate">
<el-date-picker
v-model="queryParams.reportDate"
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-240px"
@change="handleQuery"
/>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="人员" prop="userId">
<el-select v-model="queryParams.userId" @change="handleQuery" clearable filterable placeholder="请选择人员" class="!w-180px">
<el-option
v-for="item in userList"
:key="item.id"
:label="item.nickname"
:value="item.id"
/>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="工位" prop="orgId">
<el-tree-select
v-model="queryParams.orgId"
:data="organizationTree"
:props="defaultProps"
check-strictly
default-expand-all
@change="handleQuery"
placeholder="请选择工位"
class="!w-240px"
/>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="备注" prop="remark">
<el-input
v-model="queryParams.remark"
placeholder="请输入备注"
clearable
@keyup.enter="handleQuery"
class="!w-180px"
/>
</el-form-item>
</el-col>
</el-row>
<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="warning"
plain
@click="openReplaceForm('create')"
>
<Icon icon="ep:plus" class="mr-5px" /> 代报工
</el-button>
</el-form-item>
</el-form>
</ContentWrap>
<!-- 列表 -->
<ContentWrap>
<el-tabs v-model="activeName" @tab-click="handleTabClick">
<el-tab-pane label="制浆" name="zhijiang" />
<el-tab-pane label="成型" name="chengxing" />
<el-tab-pane label="烘干" name="honggan" />
<el-tab-pane label="转移" name="zhuanyi" />
<el-tab-pane label="加湿" name="jiashi" />
<el-tab-pane label="热压" name="reya" />
<el-tab-pane label="切边" name="qiebian" />
<el-tab-pane label="品检" name="pinjian" />
<el-tab-pane label="打包" name="dabao" />
<el-tab-pane label="贴标" name="tiebiao" />
<el-tab-pane label="品印" name="pinyin" />
<el-tab-pane label="塑封" name="sufeng" />
</el-tabs>
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
<!-- 子表的列表 -->
<el-table-column type="expand">
<template #default="scope">
<el-tabs model-value="produceReportDetail">
<el-tab-pane label="生产报工明细" name="produceReportDetail">
<ProduceReportDetailList :report-id="scope.row.id" />
</el-tab-pane>
</el-tabs>
</template>
</el-table-column>
<el-table-column
label="报工日期"
align="center"
prop="reportDate"
:formatter="dateFormatter2"
width="130px"
/>
<el-table-column label="工人" align="center" prop="userName" width="130px"/>
<el-table-column label="工序" align="center" prop="orgType">
<template #default="scope">
<dict-tag :type="DICT_TYPE.MES_ORG_TYPE" :value="scope.row.orgType" />
</template>
</el-table-column>
<el-table-column label="工位" align="center" prop="orgName" width="130px"/>
<el-table-column label="计时时段" align="center" prop="reportTime" />
<el-table-column label="计时时长" align="center" prop="totalTime" />
<el-table-column label="班别" align="center" prop="groupType">
<template #default="scope">
<dict-tag :type="DICT_TYPE.MES_GROUP_TYPE" :value="scope.row.groupType" />
</template>
</el-table-column>
<el-table-column label="类型" align="center" prop="reportType">
<template #default="scope">
<dict-tag :type="DICT_TYPE.MES_PRODUCE_REPORT_TYPE" :value="scope.row.reportType" />
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="remark" />
<el-table-column
label="创建时间"
align="center"
prop="createTime"
:formatter="dateFormatter"
width="180px"
/>
<el-table-column label="状态" align="center" fixed="right" prop="reportStatus">
<template #default="scope">
<dict-tag :type="DICT_TYPE.MES_RECORD_STATUS" :value="scope.row.reportStatus" />
</template>
</el-table-column>
<el-table-column label="操作" align="center" fixed="right" width="200px">
<template #default="scope">
<el-button
link
v-if="scope.row.reportStatus === 0"
type="success"
@click="updateStatus(scope.row.id,1,'提交')"
>
提交
</el-button>
<el-button
link
v-if="scope.row.reportStatus === 1"
type="success"
@click="updateStatus(scope.row.id,2,'通过')"
>
通过
</el-button>
<el-button
link
v-if="scope.row.reportStatus === 1"
type="warning"
@click="updateStatus(scope.row.id,3,'驳回')"
>
驳回
</el-button>
<!-- 代报工编辑别人的-->
<el-button
v-if="scope.row.reportStatus !== 2"
link
type="primary"
@click="openReplaceForm('update', scope.row.id)"
>
编辑
</el-button>
<el-button
v-if="scope.row.reportStatus !== 2"
link
type="danger"
@click="handleDelete(scope.row.id)"
>
删除
</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页 -->
<Pagination
:total="total"
v-model:page="queryParams.pageNo"
v-model:limit="queryParams.pageSize"
@pagination="getList"
/>
</ContentWrap>
<!-- 表单弹窗:添加/修改 -->
<ProduceReportForm ref="formRef" @success="getList" />
<!-- 代报工弹窗:添加/修改 -->
<AdminReplaceForm ref="replaceFormRef" @success="getList" />
</template>
<script setup lang="ts">
import { getIntDictOptions, getStrDictOptions, DICT_TYPE } from '@/utils/dict'
import {dateFormatter, dateFormatter2} from '@/utils/formatTime'
import download from '@/utils/download'
import {ProduceReportApi, ProduceReportDetailApi, ProduceReportVO} from '@/api/mes/producereport'
import ProduceReportForm from './ProduceReportForm.vue'
import ProduceReportDetailList from './components/ProduceReportDetailList.vue'
import {defaultProps, handleTree} from "@/utils/tree";
import * as UserApi from "@/api/system/user";
import {OrganizationApi} from "@/api/mes/organization";
import AdminReplaceForm from "@/views/mes/producereport/components/AdminReplaceForm.vue";
/** */
defineOptions({ name: 'ProduceReport' })
const message = useMessage() //
const { t } = useI18n() //
const userList = ref<UserApi.UserVO[]>([]) // 用户列表
const organizationTree = ref() // 树形结构
const loading = ref(true) // 列表的加载中
const list = ref<ProduceReportVO[]>([]) // 列表的数据
const total = ref(0) // 列表的总页数
const queryParams = reactive({
pageNo: 1,
pageSize: 10,
processInstanceId: undefined,
reportCode: undefined,
userId: undefined,
orgId: undefined,
orgType: undefined,
reportTime: [],
totalTime: [],
reportStatus: undefined,
remark: undefined,
createTime: [],
groupType: undefined,
reportType: undefined,
reportDate: []
})
const queryFormRef = ref() // 搜索的表单
const exportLoading = ref(false) // 导出的加载中
/** 查询列表 */
const getList = async () => {
loading.value = true
try {
const data = await ProduceReportApi.getProduceReportPage(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 ProduceReportApi.deleteProduceReport(id)
message.success(t('common.delSuccess'))
// 刷新列表
await getList()
} catch {}
}
/** 获得产线工位树 */
const getOrganizationTree = async () => {
organizationTree.value = []
const data = await OrganizationApi.getOrganizationList()
const root: Tree = { id: 0, name: 'ALL', children: [] }
root.children = handleTree(data, 'id', 'parentId')
organizationTree.value.push(root)
}
/** 初始化 **/
onMounted(async() => {
await getList()
await getOrganizationTree()
// 加载用户列表
userList.value = await UserApi.getSimpleUserList()
})
/** tab 切换 */
let activeName = 'chengxing'
const handleTabClick = (tab: TabsPaneContext) => {
queryParams.orgType = tab.paneName
handleQuery()
}
/** 代报工添加/修改操作 */
const replaceFormRef = ref()
const openReplaceForm = (type: string, id?: number) => {
replaceFormRef.value.open(type, id)
}
const updateStatus = async (id:number, status:number, type:string) => {
try {
// 二次确认
await message.confirm('确定'+type+"该报工单吗?")
// 发起导出
const data = await ProduceReportApi.updateStatus(id,status)
message.success(type+"报工单成功!")
// 刷新列表
await getList()
} catch {
} finally {
exportLoading.value = false
}
}
</script>