生产排产
This commit is contained in:
parent
f5f79fa16d
commit
6791ae679b
44
src/api/mes/pro/protask.js
Normal file
44
src/api/mes/pro/protask.js
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 查询生产任务列表
|
||||||
|
export function listProtask(query) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/pro/protask/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询生产任务详细
|
||||||
|
export function getProtask(taskId) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/pro/protask/' + taskId,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 新增生产任务
|
||||||
|
export function addProtask(data) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/pro/protask',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 修改生产任务
|
||||||
|
export function updateProtask(data) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/pro/protask',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除生产任务
|
||||||
|
export function delProtask(taskId) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/pro/protask/' + taskId,
|
||||||
|
method: 'delete'
|
||||||
|
})
|
||||||
|
}
|
@ -9,6 +9,17 @@ export function listRouteprocess(query) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// 查询产品的工艺组成列表
|
||||||
|
export function listProductprocess(query) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/pro/routeprocess/listProductProcess',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// 查询工艺组成详细
|
// 查询工艺组成详细
|
||||||
export function getRouteprocess(recordId) {
|
export function getRouteprocess(recordId) {
|
||||||
return request({
|
return request({
|
||||||
|
235
src/components/workstationSelect/simpletableSingle.vue
Normal file
235
src/components/workstationSelect/simpletableSingle.vue
Normal file
@ -0,0 +1,235 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog title="设备选择"
|
||||||
|
v-if="showFlag"
|
||||||
|
:visible.sync="showFlag"
|
||||||
|
:modal= false
|
||||||
|
width="80%"
|
||||||
|
center
|
||||||
|
>
|
||||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="工作站编码" prop="workstationCode">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.workstationCode"
|
||||||
|
placeholder="请输入工作站编码"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="工作站名称" prop="workstationName">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.workstationName"
|
||||||
|
placeholder="请输入工作站名称"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="所在车间名称" prop="workshopName">
|
||||||
|
<el-select v-model="queryParams.workshopId" placeholder="请选择车间">
|
||||||
|
<el-option
|
||||||
|
v-for="item in workshopOptions"
|
||||||
|
:key="item.workshopId"
|
||||||
|
:label="item.workshopName"
|
||||||
|
:value="item.workshopId"
|
||||||
|
></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="workstationList" @current-change="handleCurrent" @row-dblclick="handleRowDbClick">
|
||||||
|
<el-table-column width="55" align="center" >
|
||||||
|
<template v-slot="scope">
|
||||||
|
<el-radio v-model="selectedWorkstationId" :label="scope.row.workstationId" @change="handleRowChange(scope.row)">{{""}}</el-radio>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="工作站编号" align="center" prop="workstationCode" >
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="工作站名称" align="center" prop="workstationName" />
|
||||||
|
<el-table-column label="工作站地点" align="center" prop="workstationAddress" />
|
||||||
|
<el-table-column label="所在车间名称" align="center" prop="workshopName" />
|
||||||
|
<el-table-column label="所属工序" align="center" prop="processName" />
|
||||||
|
<el-table-column label="备注" align="center" prop="remark" />
|
||||||
|
</el-table>
|
||||||
|
<pagination
|
||||||
|
v-show="total>0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="queryParams.pageNum"
|
||||||
|
:limit.sync="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button type="primary" @click="confirmSelect">确 定</el-button>
|
||||||
|
<el-button @click="showFlag=false">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { listWorkstation, getWorkstation, delWorkstation, addWorkstation, updateWorkstation } from "@/api/mes/md/workstation";
|
||||||
|
import {listAllProcess} from "@/api/mes/pro/process";
|
||||||
|
import { listAllWorkshop } from "@/api/mes/md/workshop";
|
||||||
|
export default {
|
||||||
|
name: "WorkstationSelect",
|
||||||
|
dicts: ['sys_yes_no'],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
showFlag:false,
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
// 选中数组
|
||||||
|
selectedWorkstationId: undefined,
|
||||||
|
selectedRows: [],
|
||||||
|
// 非单个禁用
|
||||||
|
single: true,
|
||||||
|
// 非多个禁用
|
||||||
|
multiple: true,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// 工作站表格数据
|
||||||
|
workstationList: [],
|
||||||
|
//车间选项
|
||||||
|
workshopOptions:[],
|
||||||
|
//工序选项
|
||||||
|
processOptions:[],
|
||||||
|
// 弹出层标题
|
||||||
|
title: "",
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
workstationCode: null,
|
||||||
|
workstationName: null,
|
||||||
|
workstationAddress: null,
|
||||||
|
workshopId: null,
|
||||||
|
workshopCode: null,
|
||||||
|
workshopName: null,
|
||||||
|
processId: this.processId,
|
||||||
|
processCode: null,
|
||||||
|
processName: null,
|
||||||
|
enableFlag: null,
|
||||||
|
},
|
||||||
|
// 表单参数
|
||||||
|
form: {},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
props:{
|
||||||
|
processId: undefined //外部传入的工序过滤条件
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getList();
|
||||||
|
this.getWorkshops();
|
||||||
|
this.getProcess();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 查询工作站列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
listWorkstation(this.queryParams).then(response => {
|
||||||
|
this.workstationList = response.rows;
|
||||||
|
this.total = response.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
//查询车间信息
|
||||||
|
getWorkshops(){
|
||||||
|
listAllWorkshop().then( response => {
|
||||||
|
this.workshopOptions = response.data;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
//查询工序信息
|
||||||
|
getProcess(){
|
||||||
|
listAllProcess().then( response =>{
|
||||||
|
this.processOptions = response.data;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
workstationId: null,
|
||||||
|
workstationCode: null,
|
||||||
|
workstationName: null,
|
||||||
|
workstationAddress: null,
|
||||||
|
workshopId: null,
|
||||||
|
workshopCode: null,
|
||||||
|
workshopName: null,
|
||||||
|
processId: null,
|
||||||
|
processCode: null,
|
||||||
|
processName: null,
|
||||||
|
enableFlag: 'Y',
|
||||||
|
remark: null,
|
||||||
|
createBy: null,
|
||||||
|
createTime: null,
|
||||||
|
updateBy: null,
|
||||||
|
updateTime: null
|
||||||
|
};
|
||||||
|
this.resetForm("form");
|
||||||
|
},
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.queryParams.pageNum = 1;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm("queryForm");
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
handleCurrent(row){
|
||||||
|
if(row){
|
||||||
|
this.selectedRows = row;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 单选选中数据
|
||||||
|
handleRowChange(row) {
|
||||||
|
if(row){
|
||||||
|
this.selectedRows = row;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
//双击选中
|
||||||
|
handleRowDbClick(row){
|
||||||
|
if(row){
|
||||||
|
this.selectedRows = row;
|
||||||
|
this.$emit('onSelected',this.selectedRows);
|
||||||
|
this.showFlag = false;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
//确定选中
|
||||||
|
confirmSelect(){
|
||||||
|
if(this.selectedWorkstationId == null || this.selectedWorkstationId == 0){
|
||||||
|
this.$notify({
|
||||||
|
title:'提示',
|
||||||
|
type:'warning',
|
||||||
|
message: '请至少选择一条数据!'
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.$emit('onSelected',this.selectedRows);
|
||||||
|
this.showFlag = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
560
src/views/mes/pro/schedule/index.vue
Normal file
560
src/views/mes/pro/schedule/index.vue
Normal file
@ -0,0 +1,560 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||||
|
<el-form-item label="工单编码" prop="workorderCode">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.workorderCode"
|
||||||
|
placeholder="请输入工单编码"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="工单名称" prop="workorderName">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.workorderName"
|
||||||
|
placeholder="请输入工单名称"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="来源单据" prop="sourceCode">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.sourceCode"
|
||||||
|
placeholder="请输入来源单据"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="产品编号" prop="productCode">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.productCode"
|
||||||
|
placeholder="请输入产品编号"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="产品名称" prop="productName">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.productName"
|
||||||
|
placeholder="请输入产品名称"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="客户编码" prop="clientCode">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.clientCode"
|
||||||
|
placeholder="请输入客户编码"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="客户名称" prop="clientName">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.clientName"
|
||||||
|
placeholder="请输入客户名称"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="需求日期" prop="requestDate">
|
||||||
|
<el-date-picker clearable
|
||||||
|
v-model="queryParams.requestDate"
|
||||||
|
type="date"
|
||||||
|
value-format="yyyy-MM-dd"
|
||||||
|
placeholder="请选择需求日期">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<el-table
|
||||||
|
v-loading="loading"
|
||||||
|
:data="workorderList"
|
||||||
|
row-key="workorderId"
|
||||||
|
default-expand-all
|
||||||
|
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
|
||||||
|
>
|
||||||
|
<el-table-column label="工单编码" width="180" prop="workorderCode" >
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
@click="handleView(scope.row)"
|
||||||
|
v-hasPermi="['mes:pro:workorder:query']"
|
||||||
|
>{{scope.row.workorderCode}}</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="工单名称" width="200" align="center" prop="workorderName" :show-overflow-tooltip="true"/>
|
||||||
|
<el-table-column label="工单来源" align="center" prop="orderSource" >
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<dict-tag :options="dict.type.mes_workorder_sourcetype" :value="scope.row.orderSource"/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="订单编号" width="140" align="center" prop="sourceCode" />
|
||||||
|
<el-table-column label="产品编号" width="120" align="center" prop="productCode" />
|
||||||
|
<el-table-column label="产品名称" width="200" align="center" prop="productName" :show-overflow-tooltip="true"/>
|
||||||
|
<el-table-column label="规格型号" align="center" prop="productSpc" :show-overflow-tooltip="true"/>
|
||||||
|
<el-table-column label="单位" align="center" prop="unitOfMeasure" />
|
||||||
|
<el-table-column label="工单数量" align="center" prop="quantity" />
|
||||||
|
<el-table-column label="调整数量" align="center" prop="quantityChanged" />
|
||||||
|
<el-table-column label="已排产数量" align="center" width="100px" prop="quantityScheduled" />
|
||||||
|
<el-table-column label="已生产数量" align="center" width="100px" prop="quantityProduced" />
|
||||||
|
<el-table-column label="客户编码" align="center" prop="clientCode" />
|
||||||
|
<el-table-column label="客户名称" align="center" prop="clientName" :show-overflow-tooltip="true"/>
|
||||||
|
<el-table-column label="需求日期" align="center" prop="requestDate" width="180">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ parseTime(scope.row.requestDate, '{y}-{m}-{d}') }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="排产状态" align="center" prop="status">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<dict-tag :options="dict.type.mes_order_status" :value="scope.row.status"/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="操作" width="150px" align="center" class-name="small-padding fixed-width">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-edit"
|
||||||
|
v-if="scope.row.status =='CONFIRMED'"
|
||||||
|
@click="handleUpdate(scope.row)"
|
||||||
|
v-hasPermi="['mes:pro:workorder:edit']"
|
||||||
|
>排产</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<!-- 添加或修改生产工单对话框 -->
|
||||||
|
<el-dialog :title="title" :visible.sync="open" width="960px" append-to-body>
|
||||||
|
<el-form ref="form" :model="form" label-width="80px">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="工单编号" prop="workorderCode">
|
||||||
|
<el-input v-model="form.workorderCode" readonly="readonly" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="工单名称" prop="workorderName">
|
||||||
|
<el-input v-model="form.workorderName" readonly="readonly" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="来源类型" prop="orderSource">
|
||||||
|
<el-radio-group v-model="form.orderSource" disabled>
|
||||||
|
<el-radio
|
||||||
|
v-for="dict in dict.type.mes_workorder_sourcetype"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.value"
|
||||||
|
>{{dict.label}}</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8" v-if="form.orderSource == 'ORDER'">
|
||||||
|
<el-form-item label="订单编号" prop="sourceCode">
|
||||||
|
<el-input v-model="form.sourceCode" readonly="readonly" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="排产状态" prop="status">
|
||||||
|
<el-select v-model="form.status" disabled>
|
||||||
|
<el-option
|
||||||
|
v-for="dict in dict.type.mes_order_status"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value"
|
||||||
|
></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="产品编号" prop="productCode">
|
||||||
|
<el-input v-model="form.productCode" readonly="readonly" >
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="产品名称" prop="productName">
|
||||||
|
<el-input v-model="form.productName" readonly="readonly" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="规格型号" prop="productSpc">
|
||||||
|
<el-input v-model="form.productSpc" readonly="readonly" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="单位" prop="unitOfMeasure">
|
||||||
|
<el-input v-model="form.unitOfMeasure" readonly="readonly" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="工单数量" prop="quantity">
|
||||||
|
<el-input v-model="form.quantity" readonly="readonly" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="需求日期" prop="requestDate">
|
||||||
|
<el-date-picker disabled
|
||||||
|
v-model="form.requestDate"
|
||||||
|
type="date"
|
||||||
|
value-format="yyyy-MM-dd"
|
||||||
|
placeholder="请选择需求日期">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row v-if="form.orderSource == 'ORDER'">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="客户编号" prop="clientCode">
|
||||||
|
<el-input v-model="form.clientCode" readonly="readonly" >
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="客户名称" prop="clientName">
|
||||||
|
<el-input v-model="form.clientName" readonly="readonly" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col></el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="form.remark" type="textarea" readonly="readonly" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
<el-steps :active="activeProcess" align-center simple>
|
||||||
|
<el-step v-for="(item,index) in processOptions"
|
||||||
|
:title="item.processName" @click.native="handleStepClick(index)">
|
||||||
|
</el-step>
|
||||||
|
</el-steps>
|
||||||
|
<el-card v-for=" (item,index) in processOptions " :key="index" v-if="activeProcess == index">
|
||||||
|
<ProTask :workorderId="form.workorderId" :processId="item.processId" :colorCode="item.colorCode" :optType="optType"></ProTask>
|
||||||
|
</el-card>
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button type="primary" @click="cancel" v-if="optType =='view' || form.status !='PREPARE' ">返回</el-button>
|
||||||
|
<el-button type="primary" @click="submitForm" v-if="form.status =='PREPARE' && optType !='view' ">确 定</el-button>
|
||||||
|
<el-button type="success" @click="handleFinish" v-if="form.status =='PREPARE' && optType !='view' && form.workorderId !=null">完成</el-button>
|
||||||
|
<el-button @click="cancel">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { listWorkorder, getWorkorder, delWorkorder, addWorkorder, updateWorkorder } from "@/api/mes/pro/workorder";
|
||||||
|
import { listProductprocess } from "@/api/mes/pro/routeprocess";
|
||||||
|
import ProTask from "./proTask.vue";
|
||||||
|
import Treeselect from "@riophae/vue-treeselect";
|
||||||
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "Workorder",
|
||||||
|
dicts: ['mes_order_status','mes_workorder_sourcetype'],
|
||||||
|
components: {
|
||||||
|
Treeselect,
|
||||||
|
ProTask
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
//自动生成编码
|
||||||
|
autoGenFlag:false,
|
||||||
|
optType: undefined,
|
||||||
|
activeProcess: 0,
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 非单个禁用
|
||||||
|
single: true,
|
||||||
|
// 非多个禁用
|
||||||
|
multiple: true,
|
||||||
|
// 生产工单表格数据
|
||||||
|
workorderList: [],
|
||||||
|
// 生产工单树选项
|
||||||
|
workorderOptions: [],
|
||||||
|
//当前生产工单中产品对应的工序列表
|
||||||
|
processOptions: [],
|
||||||
|
// 弹出层标题
|
||||||
|
title: "",
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
workorderCode: null,
|
||||||
|
workorderName: null,
|
||||||
|
orderSource: null,
|
||||||
|
sourceCode: null,
|
||||||
|
productId: null,
|
||||||
|
productCode: null,
|
||||||
|
productName: null,
|
||||||
|
productSpc: null,
|
||||||
|
unitOfMeasure: null,
|
||||||
|
quantity: null,
|
||||||
|
quantityProduced: null,
|
||||||
|
quantityChanged: null,
|
||||||
|
quantityScheduled: null,
|
||||||
|
clientId: null,
|
||||||
|
clientCode: null,
|
||||||
|
clientName: null,
|
||||||
|
requestDate: null,
|
||||||
|
parentId: null,
|
||||||
|
ancestors: null,
|
||||||
|
status: null,
|
||||||
|
},
|
||||||
|
// 表单参数
|
||||||
|
form: {},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 查询生产工单列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
listWorkorder(this.queryParams).then(response => {
|
||||||
|
this.workorderList = this.handleTree(response.data, "workorderId", "parentId");
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
getProcess(){
|
||||||
|
listProductprocess(this.form.productId).then(response =>{
|
||||||
|
this.processOptions = response.data;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 转换生产工单数据结构 */
|
||||||
|
normalizer(node) {
|
||||||
|
if (node.children && !node.children.length) {
|
||||||
|
delete node.children;
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
id: node.workorderId,
|
||||||
|
label: node.workorderName,
|
||||||
|
children: node.children
|
||||||
|
};
|
||||||
|
},
|
||||||
|
/** 查询生产工单下拉树结构 */
|
||||||
|
getTreeselect() {
|
||||||
|
listWorkorder().then(response => {
|
||||||
|
this.workorderOptions = [];
|
||||||
|
const data = { workorderId: 0, workorderName: '顶级节点', children: [] };
|
||||||
|
data.children = this.handleTree(response.data, "workorderId", "parentId");
|
||||||
|
this.workorderOptions.push(data);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
workorderId: null,
|
||||||
|
workorderCode: null,
|
||||||
|
workorderName: null,
|
||||||
|
orderSource: null,
|
||||||
|
sourceCode: null,
|
||||||
|
productId: null,
|
||||||
|
productCode: null,
|
||||||
|
productName: null,
|
||||||
|
productSpc: null,
|
||||||
|
unitOfMeasure: null,
|
||||||
|
quantity: null,
|
||||||
|
quantityProduced: null,
|
||||||
|
quantityChanged: null,
|
||||||
|
quantityScheduled: null,
|
||||||
|
clientId: null,
|
||||||
|
clientCode: null,
|
||||||
|
clientName: null,
|
||||||
|
requestDate: null,
|
||||||
|
parentId: null,
|
||||||
|
status: "PREPARE",
|
||||||
|
remark: null,
|
||||||
|
createBy: null,
|
||||||
|
createTime: null,
|
||||||
|
updateBy: null,
|
||||||
|
updateTime: null
|
||||||
|
};
|
||||||
|
this.autoGenFlag = false;
|
||||||
|
this.resetForm("form");
|
||||||
|
},
|
||||||
|
//Step点击
|
||||||
|
handleStepClick(index){
|
||||||
|
this.activeProcess =index;
|
||||||
|
},
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm("queryForm");
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
//从BOM行中直接新增
|
||||||
|
handleSubAdd(row){
|
||||||
|
debugger;
|
||||||
|
this.open = false;
|
||||||
|
this.reset();
|
||||||
|
this.getTreeselect();
|
||||||
|
if (row != null && row.workorderId) {
|
||||||
|
this.form = row;
|
||||||
|
this.form.parentId = row.workorderId;
|
||||||
|
this.form.workorderId = null;
|
||||||
|
this.form.workorderCode = null;
|
||||||
|
} else {
|
||||||
|
this.form.parentId = 0;
|
||||||
|
}
|
||||||
|
this.open = true;
|
||||||
|
this.title = "添加生产工单";
|
||||||
|
this.optType="add";
|
||||||
|
},
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
handleAdd(row) {
|
||||||
|
this.reset();
|
||||||
|
this.getProcess();
|
||||||
|
this.getTreeselect();
|
||||||
|
if (row != null && row.workorderId) {
|
||||||
|
this.form.parentId = row.workorderId;
|
||||||
|
this.form.orderSource = row.orderSource;
|
||||||
|
this.form.sourceCode = row.sourceCode;
|
||||||
|
this.form.clientId = row.clientId;
|
||||||
|
this.form.clientCode = row.clientCode;
|
||||||
|
this.form.clientName = row.clientName;
|
||||||
|
} else {
|
||||||
|
this.form.parentId = 0;
|
||||||
|
}
|
||||||
|
this.open = true;
|
||||||
|
this.title = "添加生产工单";
|
||||||
|
this.optType="add";
|
||||||
|
},
|
||||||
|
// 查询明细按钮操作
|
||||||
|
handleView(row){
|
||||||
|
this.reset();
|
||||||
|
this.getProcess();
|
||||||
|
this.getTreeselect();
|
||||||
|
const workorderId = row.workorderId || this.ids;
|
||||||
|
getWorkorder(workorderId).then(response => {
|
||||||
|
this.form = response.data;
|
||||||
|
this.open = true;
|
||||||
|
this.title = "查看工单信息";
|
||||||
|
this.optType = "view";
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
handleUpdate(row) {
|
||||||
|
this.reset();
|
||||||
|
this.getProcess();
|
||||||
|
this.getTreeselect();
|
||||||
|
if (row != null) {
|
||||||
|
this.form.parentId = row.workorderId;
|
||||||
|
}
|
||||||
|
getWorkorder(row.workorderId).then(response => {
|
||||||
|
this.form = response.data;
|
||||||
|
this.open = true;
|
||||||
|
this.title = "修改生产工单";
|
||||||
|
this.optType="edit";
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 提交按钮 */
|
||||||
|
submitForm() {
|
||||||
|
this.$refs["form"].validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
if (this.form.workorderId != null) {
|
||||||
|
updateWorkorder(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
//this.open = false;
|
||||||
|
this.$refs["bomlist"].getList();
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
addWorkorder(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("新增成功");
|
||||||
|
//this.open = false;
|
||||||
|
this.form.workorderId = response.data;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
handleDelete(row) {
|
||||||
|
this.$modal.confirm('是否确认删除生产工单编号为"' + row.workorderId + '"的数据项?').then(function() {
|
||||||
|
return delWorkorder(row.workorderId);
|
||||||
|
}).then(() => {
|
||||||
|
this.getList();
|
||||||
|
this.$modal.msgSuccess("删除成功");
|
||||||
|
}).catch(() => {});
|
||||||
|
},
|
||||||
|
handleSelectProduct(){
|
||||||
|
this.$refs.itemSelect.showFlag = true;
|
||||||
|
},
|
||||||
|
handleSelectClient(){
|
||||||
|
this.$refs.clientSelect.showFlag = true;
|
||||||
|
},
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
handleExport() {
|
||||||
|
this.download('mes/pro/workorder/export', {
|
||||||
|
...this.queryParams
|
||||||
|
}, `workorder_${new Date().getTime()}.xlsx`)
|
||||||
|
},
|
||||||
|
handleFinish(){
|
||||||
|
let that = this;
|
||||||
|
this.$modal.confirm('是否完成工单编制?【完成后将不能更改】').then(function(){
|
||||||
|
that.form.status = 'CONFIRMED';
|
||||||
|
that.submitForm();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
//物料选择弹出框
|
||||||
|
onItemSelected(obj){
|
||||||
|
debugger;
|
||||||
|
if(obj != undefined && obj != null){
|
||||||
|
this.form.productId = obj.itemId;
|
||||||
|
this.form.productCode = obj.itemCode;
|
||||||
|
this.form.productName = obj.itemName;
|
||||||
|
this.form.productSpc = obj.specification;
|
||||||
|
this.form.unitOfMeasure = obj.unitOfMeasure;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
//客户选择弹出框
|
||||||
|
onClientSelected(obj){
|
||||||
|
if(obj != undefined && obj != null){
|
||||||
|
this.form.clientId = obj.clientId;
|
||||||
|
this.form.clientCode = obj.clientCode;
|
||||||
|
this.form.clientName = obj.clientName;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
//自动生成编码
|
||||||
|
handleAutoGenChange(autoGenFlag){
|
||||||
|
debugger;
|
||||||
|
if(autoGenFlag){
|
||||||
|
genCode('WORKORDER_CODE').then(response =>{
|
||||||
|
this.form.workorderCode = response;
|
||||||
|
});
|
||||||
|
}else{
|
||||||
|
this.form.workorderCode = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
386
src/views/mes/pro/schedule/proTask.vue
Normal file
386
src/views/mes/pro/schedule/proTask.vue
Normal file
@ -0,0 +1,386 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-row :gutter="10" class="mb8">
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
plain
|
||||||
|
icon="el-icon-plus"
|
||||||
|
size="mini"
|
||||||
|
@click="handleAdd"
|
||||||
|
v-hasPermi="['pro:protask:add']"
|
||||||
|
>新增</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="success"
|
||||||
|
plain
|
||||||
|
icon="el-icon-edit"
|
||||||
|
size="mini"
|
||||||
|
:disabled="single"
|
||||||
|
@click="handleUpdate"
|
||||||
|
v-hasPermi="['pro:protask:edit']"
|
||||||
|
>修改</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="danger"
|
||||||
|
plain
|
||||||
|
icon="el-icon-delete"
|
||||||
|
size="mini"
|
||||||
|
:disabled="multiple"
|
||||||
|
@click="handleDelete"
|
||||||
|
v-hasPermi="['pro:protask:remove']"
|
||||||
|
>删除</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="warning"
|
||||||
|
plain
|
||||||
|
icon="el-icon-download"
|
||||||
|
size="mini"
|
||||||
|
@click="handleExport"
|
||||||
|
v-hasPermi="['pro:protask:export']"
|
||||||
|
>导出</el-button>
|
||||||
|
</el-col>
|
||||||
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="protaskList" @selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
|
<el-table-column label="任务编号" align="center" width="100px" prop="taskCode" :show-overflow-tooltip="true"/>
|
||||||
|
<el-table-column label="任务名称" align="center" width="120px" prop="taskName" :show-overflow-tooltip="true"/>
|
||||||
|
<el-table-column label="工作站编号" align="center" width="150px" prop="workstationCode" :show-overflow-tooltip="true"/>
|
||||||
|
<el-table-column label="工作站名称" align="center" width="150px" prop="workstationName" :show-overflow-tooltip="true"/>
|
||||||
|
<el-table-column label="排产数量" align="center" prop="quantity" />
|
||||||
|
<el-table-column label="已生产数量" align="center" width="100px" prop="quantityProduced" />
|
||||||
|
<el-table-column label="开始生产时间" align="center" prop="startTime" width="180">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ parseTime(scope.row.startTime, '{y}-{m}-{d}') }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="生产时长" align="center" prop="duration" />
|
||||||
|
<el-table-column label="完成生产时间" align="center" prop="endTime" width="180">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ parseTime(scope.row.endTime, '{y}-{m}-{d}') }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="显示颜色" align="center" prop="colorCode" >
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-color-picker v-model="scope.row.colorCode" disabled></el-color-picker>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="操作" align="center" width="100px" class-name="small-padding fixed-width">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-edit"
|
||||||
|
@click="handleUpdate(scope.row)"
|
||||||
|
v-hasPermi="['pro:protask:edit']"
|
||||||
|
>修改</el-button>
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-delete"
|
||||||
|
@click="handleDelete(scope.row)"
|
||||||
|
v-hasPermi="['pro:protask:remove']"
|
||||||
|
>删除</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<pagination
|
||||||
|
v-show="total>0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="queryParams.pageNum"
|
||||||
|
:limit.sync="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<!-- 添加或修改生产任务对话框 -->
|
||||||
|
<el-dialog :title="title" :visible.sync="open" width="1080px" append-to-body>
|
||||||
|
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="工作站" prop="workstationName">
|
||||||
|
<el-input v-model="form.workstationName" placeholder="请选择工作站" >
|
||||||
|
<el-button slot="append" icon="el-icon-search" @click="handleWorkstationSelect"></el-button>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<WorkstationSelect ref="wsSelect" :processId="processId" @onSelected="onWorkstationSelected"> </WorkstationSelect>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="5">
|
||||||
|
<el-form-item label="甘特图显示颜色" prop="colorCode">
|
||||||
|
<el-color-picker v-model="form.colorCode"></el-color-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="7">
|
||||||
|
<el-input v-model="form.colorCode" maxlength="7" placeholder="请输入颜色编码在左侧选择颜色" />
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="排产数量" prop="quantity">
|
||||||
|
<el-input-number :min="1" v-model="form.quantity" placeholder="请输入排产数量" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="开始时间" prop="startTime">
|
||||||
|
<el-date-picker clearable
|
||||||
|
v-model="form.startTime"
|
||||||
|
type="datetime"
|
||||||
|
value-format="yyyy-MM-dd HH"
|
||||||
|
placeholder="请选择开始生产时间">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="生产时长" prop="duration">
|
||||||
|
<el-input v-model="form.duration" placeholder="请输入生产时长" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="完成时间" prop="endTime">
|
||||||
|
<el-date-picker clearable
|
||||||
|
v-model="form.endTime"
|
||||||
|
type="datetime"
|
||||||
|
value-format="yyyy-MM-dd HH"
|
||||||
|
placeholder="请选择完成生产时间">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||||
|
<el-button @click="cancel">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { listProtask, getProtask, delProtask, addProtask, updateProtask } from "@/api/mes/pro/protask";
|
||||||
|
import WorkstationSelect from "@/components/workstationSelect/simpletableSingle.vue"
|
||||||
|
export default {
|
||||||
|
name: "Protask",
|
||||||
|
components: {WorkstationSelect},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
// 选中数组
|
||||||
|
ids: [],
|
||||||
|
// 非单个禁用
|
||||||
|
single: true,
|
||||||
|
// 非多个禁用
|
||||||
|
multiple: true,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// 生产任务表格数据
|
||||||
|
protaskList: [],
|
||||||
|
// 弹出层标题
|
||||||
|
title: "",
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
taskCode: null,
|
||||||
|
taskName: null,
|
||||||
|
workorderId: this.workorderId,
|
||||||
|
workorderCode: null,
|
||||||
|
workorderName: null,
|
||||||
|
workstationId: null,
|
||||||
|
workstationCode: null,
|
||||||
|
workstationName: null,
|
||||||
|
processId: this.processId,
|
||||||
|
processCode: null,
|
||||||
|
processName: null,
|
||||||
|
itemId: null,
|
||||||
|
itemCode: null,
|
||||||
|
itemName: null,
|
||||||
|
specification: null,
|
||||||
|
unitOfMeasure: null,
|
||||||
|
quantity: null,
|
||||||
|
quantityProduced: null,
|
||||||
|
quantityChanged: null,
|
||||||
|
clientId: null,
|
||||||
|
clientCode: null,
|
||||||
|
clientName: null,
|
||||||
|
clientNick: null,
|
||||||
|
startTime: null,
|
||||||
|
duration: null,
|
||||||
|
endTime: null,
|
||||||
|
colorCode: null,
|
||||||
|
requestDate: null,
|
||||||
|
},
|
||||||
|
// 表单参数
|
||||||
|
form: {},
|
||||||
|
// 表单校验
|
||||||
|
rules: {
|
||||||
|
workstationId: [
|
||||||
|
{ required: true, message: "工作站不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
quantity: [
|
||||||
|
{ required: true, message: "排产数量不能为空", trigger: "blur" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
props:{
|
||||||
|
workorderId: null,
|
||||||
|
colorCode: null,
|
||||||
|
processId: null,
|
||||||
|
optType: null
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 查询生产任务列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
listProtask(this.queryParams).then(response => {
|
||||||
|
this.protaskList = response.rows;
|
||||||
|
this.total = response.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
taskId: null,
|
||||||
|
taskCode: null,
|
||||||
|
taskName: null,
|
||||||
|
workorderId: this.workorderId,
|
||||||
|
workorderCode: null,
|
||||||
|
workorderName: null,
|
||||||
|
workstationId: null,
|
||||||
|
workstationCode: null,
|
||||||
|
workstationName: null,
|
||||||
|
processId: this.processId,
|
||||||
|
processCode: null,
|
||||||
|
processName: null,
|
||||||
|
itemId: null,
|
||||||
|
itemCode: null,
|
||||||
|
itemName: null,
|
||||||
|
specification: null,
|
||||||
|
unitOfMeasure: null,
|
||||||
|
quantity: null,
|
||||||
|
quantityProduced: null,
|
||||||
|
quantityChanged: null,
|
||||||
|
clientId: null,
|
||||||
|
clientCode: null,
|
||||||
|
clientName: null,
|
||||||
|
clientNick: null,
|
||||||
|
startTime: null,
|
||||||
|
duration: null,
|
||||||
|
endTime: null,
|
||||||
|
colorCode: this.colorCode,
|
||||||
|
requestDate: null,
|
||||||
|
remark: null,
|
||||||
|
attr1: null,
|
||||||
|
attr2: null,
|
||||||
|
attr3: null,
|
||||||
|
attr4: null,
|
||||||
|
createBy: null,
|
||||||
|
createTime: null,
|
||||||
|
updateBy: null,
|
||||||
|
updateTime: null
|
||||||
|
};
|
||||||
|
this.resetForm("form");
|
||||||
|
},
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.queryParams.pageNum = 1;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm("queryForm");
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
// 多选框选中数据
|
||||||
|
handleSelectionChange(selection) {
|
||||||
|
this.ids = selection.map(item => item.taskId)
|
||||||
|
this.single = selection.length!==1
|
||||||
|
this.multiple = !selection.length
|
||||||
|
},
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
handleAdd() {
|
||||||
|
this.reset();
|
||||||
|
this.open = true;
|
||||||
|
this.title = "添加生产任务";
|
||||||
|
},
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
handleUpdate(row) {
|
||||||
|
this.reset();
|
||||||
|
const taskId = row.taskId || this.ids
|
||||||
|
getProtask(taskId).then(response => {
|
||||||
|
this.form = response.data;
|
||||||
|
this.open = true;
|
||||||
|
this.title = "修改生产任务";
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 提交按钮 */
|
||||||
|
submitForm() {
|
||||||
|
this.$refs["form"].validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
debugger;
|
||||||
|
if (this.form.taskId != null) {
|
||||||
|
updateProtask(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
addProtask(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("新增成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
handleDelete(row) {
|
||||||
|
const taskIds = row.taskId || this.ids;
|
||||||
|
this.$modal.confirm('是否确认删除生产任务编号为"' + taskIds + '"的数据项?').then(function() {
|
||||||
|
return delProtask(taskIds);
|
||||||
|
}).then(() => {
|
||||||
|
this.getList();
|
||||||
|
this.$modal.msgSuccess("删除成功");
|
||||||
|
}).catch(() => {});
|
||||||
|
},
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
handleExport() {
|
||||||
|
this.download('mes/pro/protask/export', {
|
||||||
|
...this.queryParams
|
||||||
|
}, `protask_${new Date().getTime()}.xlsx`)
|
||||||
|
},
|
||||||
|
handleWorkstationSelect(){
|
||||||
|
this.$refs.wsSelect.showFlag = true;
|
||||||
|
},
|
||||||
|
onWorkstationSelected(row){
|
||||||
|
debugger;
|
||||||
|
if(row != undefined && row != null){
|
||||||
|
this.form.workstationId = row.workstationId;
|
||||||
|
this.form.workstationCode = row.workstationCode;
|
||||||
|
this.form.workstationName = row.workstationName;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -142,12 +142,15 @@
|
|||||||
<dict-tag :options="dict.type.mes_workorder_sourcetype" :value="scope.row.orderSource"/>
|
<dict-tag :options="dict.type.mes_workorder_sourcetype" :value="scope.row.orderSource"/>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="订单编号" width="120" align="center" prop="sourceCode" />
|
<el-table-column label="订单编号" width="140" align="center" prop="sourceCode" />
|
||||||
<el-table-column label="产品编号" width="120" align="center" prop="productCode" />
|
<el-table-column label="产品编号" width="120" align="center" prop="productCode" />
|
||||||
<el-table-column label="产品名称" width="200" align="center" prop="productName" :show-overflow-tooltip="true"/>
|
<el-table-column label="产品名称" width="200" align="center" prop="productName" :show-overflow-tooltip="true"/>
|
||||||
<el-table-column label="规格型号" align="center" prop="productSpc" :show-overflow-tooltip="true"/>
|
<el-table-column label="规格型号" align="center" prop="productSpc" :show-overflow-tooltip="true"/>
|
||||||
<el-table-column label="单位" align="center" prop="unitOfMeasure" />
|
<el-table-column label="单位" align="center" prop="unitOfMeasure" />
|
||||||
<el-table-column label="生产数量" align="center" prop="quantity" />
|
<el-table-column label="工单数量" align="center" prop="quantity" />
|
||||||
|
<el-table-column label="调整数量" align="center" prop="quantityChanged" />
|
||||||
|
<el-table-column label="已排产数量" align="center" width="100px" prop="quantityScheduled" />
|
||||||
|
<el-table-column label="已生产数量" align="center" width="100px" prop="quantityProduced" />
|
||||||
<el-table-column label="客户编码" align="center" prop="clientCode" />
|
<el-table-column label="客户编码" align="center" prop="clientCode" />
|
||||||
<el-table-column label="客户名称" align="center" prop="clientName" :show-overflow-tooltip="true"/>
|
<el-table-column label="客户名称" align="center" prop="clientName" :show-overflow-tooltip="true"/>
|
||||||
<el-table-column label="需求日期" align="center" prop="requestDate" width="180">
|
<el-table-column label="需求日期" align="center" prop="requestDate" width="180">
|
||||||
@ -280,7 +283,7 @@
|
|||||||
</el-row>
|
</el-row>
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="生产数量" prop="quantity">
|
<el-form-item label="工单数量" prop="quantity">
|
||||||
<el-input-number :min="1" v-model="form.quantity" placeholder="请输入生产数量" />
|
<el-input-number :min="1" v-model="form.quantity" placeholder="请输入生产数量" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@ -391,6 +394,9 @@ export default {
|
|||||||
productSpc: null,
|
productSpc: null,
|
||||||
unitOfMeasure: null,
|
unitOfMeasure: null,
|
||||||
quantity: null,
|
quantity: null,
|
||||||
|
quantityProduced: null,
|
||||||
|
quantityChanged: null,
|
||||||
|
quantityScheduled: null,
|
||||||
clientId: null,
|
clientId: null,
|
||||||
clientCode: null,
|
clientCode: null,
|
||||||
clientName: null,
|
clientName: null,
|
||||||
@ -484,6 +490,9 @@ export default {
|
|||||||
productSpc: null,
|
productSpc: null,
|
||||||
unitOfMeasure: null,
|
unitOfMeasure: null,
|
||||||
quantity: null,
|
quantity: null,
|
||||||
|
quantityProduced: null,
|
||||||
|
quantityChanged: null,
|
||||||
|
quantityScheduled: null,
|
||||||
clientId: null,
|
clientId: null,
|
||||||
clientCode: null,
|
clientCode: null,
|
||||||
clientName: null,
|
clientName: null,
|
||||||
|
Loading…
Reference in New Issue
Block a user