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.
502 lines
16 KiB
Vue
502 lines
16 KiB
Vue
<template>
|
|
<ContentWrap>
|
|
<!-- 搜索工作栏 -->
|
|
<el-form
|
|
class="-mb-15px"
|
|
:model="queryParams"
|
|
ref="queryFormRef"
|
|
:inline="true"
|
|
label-width="68px"
|
|
>
|
|
<el-form-item label="任务单" prop="taskId">
|
|
<el-select
|
|
v-model="queryParams.taskId"
|
|
@change="handleQuery"
|
|
clearable
|
|
filterable
|
|
placeholder="请选择"
|
|
class="!w-180px"
|
|
>
|
|
<el-option
|
|
v-for="item in taskList"
|
|
:key="item.id"
|
|
:label="item.code"
|
|
:value="item.id"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="计划编码" prop="code">
|
|
<el-input
|
|
v-model="queryParams.code"
|
|
placeholder="请输入计划编码"
|
|
clearable
|
|
@keyup.enter="handleQuery"
|
|
class="!w-180px"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="产品" prop="productId">
|
|
<el-select
|
|
v-model="queryParams.productId"
|
|
@change="handleQuery"
|
|
clearable
|
|
filterable
|
|
placeholder="请选择产品"
|
|
class="!w-180px"
|
|
>
|
|
<el-option
|
|
v-for="item in productList"
|
|
:key="item.id"
|
|
:label="item.name"
|
|
:value="item.id"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="备注" prop="remark">
|
|
<el-input
|
|
v-model="queryParams.remark"
|
|
placeholder="请输入备注"
|
|
clearable
|
|
@keyup.enter="handleQuery"
|
|
class="!w-180px"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="计划开始" prop="planStartTime">
|
|
<el-date-picker
|
|
v-model="queryParams.planStartTime"
|
|
value-format="YYYY-MM-DD HH:mm:ss"
|
|
type="daterange"
|
|
@change="handleQuery"
|
|
start-placeholder="开始日期"
|
|
end-placeholder="结束日期"
|
|
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
|
class="!w-240px"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="计划结束" prop="planEndTime">
|
|
<el-date-picker
|
|
v-model="queryParams.planEndTime"
|
|
value-format="YYYY-MM-DD HH:mm:ss"
|
|
type="daterange"
|
|
@change="handleQuery"
|
|
start-placeholder="开始日期"
|
|
end-placeholder="结束日期"
|
|
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
|
class="!w-240px"
|
|
/>
|
|
</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="['mes:plan:create']"
|
|
>
|
|
<Icon icon="ep:plus" class="mr-5px" /> 新增
|
|
</el-button> -->
|
|
<el-button
|
|
type="success"
|
|
plain
|
|
@click="handleExport"
|
|
:loading="exportLoading"
|
|
v-hasPermi="['mes:plan:export']"
|
|
>
|
|
<Icon icon="ep:download" 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="" /> -->
|
|
<!-- <el-tab-pane label="派工" name="0" /> -->
|
|
<el-tab-pane label="已排产" name="1" />
|
|
<el-tab-pane label="试产" name="6" />
|
|
<el-tab-pane label="量产" name="2" />
|
|
<el-tab-pane label="暂停" name="3" />
|
|
<el-tab-pane label="待入库" name="4" />
|
|
<el-tab-pane label="已入库" name="5" />
|
|
</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 v-if="scope.row.status > 0 && scope.row.status != 6" model-value="itemRequisitionDetail">
|
|
<el-tab-pane label="投料明细" name="itemRequisitionDetail" >
|
|
<ItemRequisitionDetailList :item-requisition-id="scope.row.requisitionId" />
|
|
</el-tab-pane>
|
|
<!-- <el-tab-pane label="派工记录" name="paigongRecord">
|
|
<PaigongRecordList :plan-id="scope.row.id"/>
|
|
</el-tab-pane> -->
|
|
</el-tabs>
|
|
<!-- <el-tabs v-if="scope.row.status == 0" model-value="paigongRecord">
|
|
<el-tab-pane label="派工记录" name="paigongRecord">
|
|
<PaigongRecordList :plan-id="scope.row.id"/>
|
|
</el-tab-pane>
|
|
</el-tabs> -->
|
|
<el-tabs v-if="scope.row.status == 6" model-value="zj">
|
|
<el-tab-pane label="检验明细" name="zj">
|
|
<ZjProductPreList :product-id="scope.row.productId"/>
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="计划编码" align="center" prop="code" min-width="180px" />
|
|
<el-table-column label="产品" align="center" prop="productName" min-width="200px" sortable/>
|
|
<!-- <el-table-column label="任务单" align="center" prop="taskCode" min-width="150px" />-->
|
|
<el-table-column label="生产线" align="center" prop="feedingPipelineName"/>
|
|
<el-table-column label="数量" align="center" prop="planNumber" />
|
|
<!-- <el-table-column label="热压数量" align="center" prop="reyaNumber" /> -->
|
|
<el-table-column label="状态" align="center" prop="status" sortable>
|
|
<template #default="scope">
|
|
<dict-tag :type="DICT_TYPE.MES_PLAN_STATUS" :value="scope.row.status" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="班别" align="center" prop="groupType" sortable>
|
|
<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="productionManagerName" />
|
|
<el-table-column label="计划开始时间" align="center" sortable prop="planStartTime" :formatter="dateFormatter2" width="150px"/>
|
|
<el-table-column label="计划结束时间" align="center" sortable prop="planEndTime" :formatter="dateFormatter2" width="150px"/>
|
|
<el-table-column label="是否检验" align="center" prop="isZj" v-if="activeName === '6'">
|
|
<template #default="scope">
|
|
<dict-tag :type="DICT_TYPE.MES_ZJ_PRODUCT" :value="scope.row.isZj" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
<el-table-column label="操作" align="center" fixed="right" width="350">
|
|
<template #default="scope">
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="openForm('update', scope.row.id)"
|
|
v-hasPermi="['mes:plan:update']"
|
|
v-if="scope.row.status === 0"
|
|
>
|
|
编辑
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="info"
|
|
@click="openItemNeed(scope.row.code, scope.row.id)"
|
|
v-hasPermi="['mes:task:query']"
|
|
>
|
|
物料
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="openPaiForm(scope.row.code, scope.row.id)"
|
|
v-hasPermi="['mes:plan:update']"
|
|
v-if="scope.row.status === 0"
|
|
>
|
|
下料派工
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="openTypePaiForm(scope.row.code, scope.row.id)"
|
|
v-hasPermi="['mes:plan:update']"
|
|
v-if="scope.row.status === 0"
|
|
>
|
|
工序派工
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="handleStatus(scope.row.code, scope.row.id, 'pre',6,'试产', scope.row.isZj)"
|
|
v-hasPermi="['mes:plan:update']"
|
|
v-if="scope.row.status === 1 && scope.row.isPreProduction === 1"
|
|
>
|
|
试产
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
v-hasPermi="['mes:plan:update']"
|
|
@click="handleZjStatus(scope.row.code, scope.row.id)"
|
|
v-if="scope.row.status === 6"
|
|
>
|
|
检验
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="handleStatus(scope.row.code, scope.row.id, 'start',2,'量产', scope.row.isZj)"
|
|
v-hasPermi="['mes:plan:update']"
|
|
v-if="(scope.row.status === 1 && scope.row.isPreProduction === 0) || scope.row.status === 6"
|
|
>
|
|
量产
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
v-hasPermi="['mes:plan:update']"
|
|
@click="openBaogongForm(scope.row.code, scope.row.id)"
|
|
v-if="scope.row.status === 2"
|
|
>
|
|
报工
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="handleStatus(scope.row.code,scope.row.id, 'pause',3,'暂停', scope.row.isZj)"
|
|
v-hasPermi="['mes:plan:update']"
|
|
v-if="scope.row.status === 2"
|
|
>
|
|
暂停
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="handleStatus(scope.row.code, scope.row.id, 'end',4,'完工', scope.row.isZj)"
|
|
v-hasPermi="['mes:plan:update']"
|
|
v-if="scope.row.status === 2 || scope.row.status === 3"
|
|
>
|
|
完工
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="handleStatus(scope.row.code, scope.row.id, 'store',5,'入库', scope.row.isZj)"
|
|
v-hasPermi="['mes:plan:update']"
|
|
v-if="scope.row.status === 4"
|
|
>
|
|
入库
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="danger"
|
|
@click="handleDelete(scope.row.id)"
|
|
v-hasPermi="['mes:plan:delete']"
|
|
v-if="scope.row.status === 0"
|
|
>
|
|
删除
|
|
</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<!-- 分页 -->
|
|
<Pagination
|
|
:total="total"
|
|
v-model:page="queryParams.pageNo"
|
|
v-model:limit="queryParams.pageSize"
|
|
@pagination="getList"
|
|
/>
|
|
</ContentWrap>
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
<PlanForm ref="formRef" @success="getList" />
|
|
<!-- 物料列表 -->
|
|
<ItemNeedIndex ref="itemFormRef" @success="getList" />
|
|
|
|
<!-- 派工弹出 -->
|
|
<Paigong ref="paiFormRef" @success="getList" />
|
|
|
|
<!-- 工序派工弹出 -->
|
|
<TypePaigong ref="typePaiFormRef" @success="getList" />
|
|
|
|
<!-- 报工弹出 -->
|
|
<Baogong ref="baogongFormRef" @success="getList" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { DICT_TYPE } from '@/utils/dict'
|
|
import {dateFormatter2} from '@/utils/formatTime'
|
|
import download from '@/utils/download'
|
|
import { PlanApi, PlanVO } from '@/api/mes/plan'
|
|
import PlanForm from './PlanForm.vue'
|
|
import {ProductApi, ProductVO} from "@/api/erp/product/product";
|
|
import {TaskApi, TaskVO} from "@/api/mes/task";
|
|
import ItemNeedIndex from "@/views/mes/bom/ItemNeedIndex.vue";
|
|
import Paigong from "./components/Paigong.vue";
|
|
import TypePaigong from "./components/TypePaigong.vue";
|
|
import ItemRequisitionDetailList from "@/views/mes/itemrequisition/components/ItemRequisitionDetailList.vue";
|
|
import ZjProductPreList from "@/views/mes/zjproduct/components/ZjProductPreList.vue";
|
|
|
|
|
|
const productList = ref<ProductVO[]>([]) // 产品列表
|
|
const taskList = ref<TaskVO[]>([]) // 列表
|
|
/** 生产计划 列表 */
|
|
defineOptions({ name: 'Plan' })
|
|
const activeName = ref('1') // 列表 tab
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
const {query} = useRoute() // 查询参数
|
|
const loading = ref(true) // 列表的加载中
|
|
const list = ref<PlanVO[]>([]) // 列表的数据
|
|
const total = ref(0) // 列表的总页数
|
|
const queryParams = reactive({
|
|
pageNo: 1,
|
|
pageSize: 10,
|
|
code: undefined,
|
|
productId: undefined,
|
|
taskDetailId: undefined,
|
|
taskId: undefined,
|
|
planNumber: undefined,
|
|
finishNumber: undefined,
|
|
status: undefined,
|
|
planStartTime: [],
|
|
planEndTime: [],
|
|
startTime: [],
|
|
endTime: [],
|
|
productionManagerId: undefined,
|
|
remark: undefined,
|
|
isEnable: undefined,
|
|
feedingPipeline: undefined,
|
|
requisitionId: undefined,
|
|
createTime: []
|
|
})
|
|
const queryFormRef = ref() // 搜索的表单
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
|
|
/** 查询列表 */
|
|
const getList = async () => {
|
|
loading.value = true
|
|
try {
|
|
const data = await PlanApi.getPlanPage(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 PlanApi.deletePlan(id)
|
|
message.success(t('common.delSuccess'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
const handleExport = async () => {
|
|
try {
|
|
// 导出的二次确认
|
|
await message.exportConfirm()
|
|
// 发起导出
|
|
exportLoading.value = true
|
|
const data = await PlanApi.exportPlan(queryParams)
|
|
download.excel(data, '生产计划.xls')
|
|
} catch {
|
|
} finally {
|
|
exportLoading.value = false
|
|
}
|
|
}
|
|
|
|
|
|
/** 初始化 **/
|
|
onMounted(async () => {
|
|
//处理其他页面跳转过来的参数
|
|
if(query.taskId)
|
|
queryParams.taskId = String(query.taskId)
|
|
if(query.productId)
|
|
queryParams.productId = String(query.productId)
|
|
// 加载产品、任务单
|
|
productList.value = await ProductApi.getMesProductSimpleList()
|
|
taskList.value = await TaskApi.getTaskList()
|
|
if(!query.taskId || !query.productId) {
|
|
queryParams.status = '1'
|
|
}
|
|
await getList()
|
|
})
|
|
/** 物料需求 */
|
|
const itemFormRef = ref()
|
|
const openItemNeed = (planCode:string, planId: number) => {
|
|
itemFormRef.value.open("plan","计划-"+planCode, planId)
|
|
}
|
|
|
|
/** 派工 */
|
|
const paiFormRef = ref()
|
|
const openPaiForm = (planCode: string, planId: number) => {
|
|
paiFormRef.value.open(planCode, planId)
|
|
}
|
|
/** 工序派工 */
|
|
const typePaiFormRef = ref()
|
|
const openTypePaiForm = (planCode: string, planId: number) => {
|
|
typePaiFormRef.value.open(planCode, planId)
|
|
}
|
|
|
|
/** 工序派工 */
|
|
const baogongFormRef = ref()
|
|
const openBaogongForm = (planCode: string, planId: number) => {
|
|
baogongFormRef.value.open(planCode, planId)
|
|
}
|
|
|
|
/** 开工 */
|
|
const handleStatus = async (planCode:string, id: number,
|
|
type:string, status:number, tip:string, isZj: number) => {
|
|
try {
|
|
// if((isZj === 0 || isZj === null) && tip === "量产") {
|
|
// // message.alertError("请先完成检验")
|
|
// // 二次确认
|
|
// await message.confirm("计划:"+planCode+"确定"+tip+"吗?",planCode)
|
|
// }
|
|
// 二次确认
|
|
await message.confirm("计划:"+planCode+"确定"+tip+"吗?",planCode)
|
|
// 发起
|
|
const data ={
|
|
id: id,
|
|
code: type,
|
|
status: status // 状态
|
|
}
|
|
await PlanApi.updatePlanStatus(data)
|
|
message.success(t('common.success'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
|
|
/** 更新质检 */
|
|
const handleZjStatus = async (planCode:string, id: number) => {
|
|
try {
|
|
// 二次确认
|
|
await message.confirm("计划:"+planCode+"确定质检吗?",planCode)
|
|
// 发起
|
|
const data ={
|
|
id: id
|
|
}
|
|
await PlanApi.updatePlanZjStatus(data)
|
|
message.success(t('common.success'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
|
|
/** tab 切换 */
|
|
const handleTabClick = (tab: TabsPaneContext) => {
|
|
queryParams.status = tab.paneName
|
|
handleQuery()
|
|
}
|
|
</script>
|