生产领料前端
This commit is contained in:
parent
362a8b1a4d
commit
0ed5a3843e
52
src/api/mes/wm/issueheader.js
Normal file
52
src/api/mes/wm/issueheader.js
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 查询生产领料单头列表
|
||||||
|
export function listIssueheader(query) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/wm/issueheader/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询生产领料单头详细
|
||||||
|
export function getIssueheader(issueId) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/wm/issueheader/' + issueId,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 新增生产领料单头
|
||||||
|
export function addIssueheader(data) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/wm/issueheader',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 修改生产领料单头
|
||||||
|
export function updateIssueheader(data) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/wm/issueheader',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除生产领料单头
|
||||||
|
export function delIssueheader(issueId) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/wm/issueheader/' + issueId,
|
||||||
|
method: 'delete'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
//执行出库
|
||||||
|
export function execute(issueId) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/wm/issueheader/' + issueId,
|
||||||
|
method: 'put'
|
||||||
|
})
|
||||||
|
}
|
44
src/api/mes/wm/issueline.js
Normal file
44
src/api/mes/wm/issueline.js
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 查询生产领料单行列表
|
||||||
|
export function listIssueline(query) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/wm/issueline/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询生产领料单行详细
|
||||||
|
export function getIssueline(lineId) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/wm/issueline/' + lineId,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 新增生产领料单行
|
||||||
|
export function addIssueline(data) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/wm/issueline',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 修改生产领料单行
|
||||||
|
export function updateIssueline(data) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/wm/issueline',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除生产领料单行
|
||||||
|
export function delIssueline(lineId) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/wm/issueline/' + lineId,
|
||||||
|
method: 'delete'
|
||||||
|
})
|
||||||
|
}
|
536
src/views/mes/wm/issue/index.vue
Normal file
536
src/views/mes/wm/issue/index.vue
Normal file
@ -0,0 +1,536 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
|
||||||
|
<el-form-item label="领料单编号" prop="issueCode">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.issueCode"
|
||||||
|
placeholder="请输入领料单编号"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="领料单名称" prop="issueName">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.issueName"
|
||||||
|
placeholder="请输入领料单名称"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="仓库名称" prop="warehouseName">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.warehouseName"
|
||||||
|
placeholder="请输入仓库名称"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="领料日期" prop="issueDate">
|
||||||
|
<el-date-picker clearable
|
||||||
|
v-model="queryParams.issueDate"
|
||||||
|
type="date"
|
||||||
|
value-format="yyyy-MM-dd"
|
||||||
|
placeholder="请选择领料日期">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="单据状态" prop="status">
|
||||||
|
<el-select v-model="queryParams.status" placeholder="请选择单据状态" clearable>
|
||||||
|
<el-option
|
||||||
|
v-for="dict in dict.type.mes_order_status"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</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-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="['mes:wm:issueheader: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="['mes:wm:issueheader: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="['mes:wm:issueheader: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="['mes:wm:issueheader:export']"
|
||||||
|
>导出</el-button>
|
||||||
|
</el-col>
|
||||||
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="issueheaderList" @selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
|
<el-table-column label="领料单编号" align="center" width="150px" prop="issueCode" >
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button
|
||||||
|
type="text"
|
||||||
|
@click="handleView(scope.row)"
|
||||||
|
v-hasPermi="['mes:wm:issueheader:query']"
|
||||||
|
>{{scope.row.issueCode}}</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="领料单名称" align="center" prop="issueName" :show-overflow-tooltip="true"/>
|
||||||
|
<el-table-column label="仓库名称" align="center" prop="warehouseName" />
|
||||||
|
<el-table-column label="库区名称" align="center" prop="locationName" />
|
||||||
|
<el-table-column label="库位名称" align="center" prop="areaName" />
|
||||||
|
<el-table-column label="领料日期" align="center" prop="issueDate" width="180">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ parseTime(scope.row.issueDate, '{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="操作" align="center" class-name="small-padding fixed-width">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-delete"
|
||||||
|
v-if="scope.row.status =='PREPARE'"
|
||||||
|
@click="handleExecute(scope.row)"
|
||||||
|
v-hasPermi="['mes:wm:issueheader:edit']"
|
||||||
|
>执行领出</el-button>
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-edit"
|
||||||
|
@click="handleUpdate(scope.row)"
|
||||||
|
v-hasPermi="['mes:wm:issueheader:edit']"
|
||||||
|
>修改</el-button>
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-delete"
|
||||||
|
@click="handleDelete(scope.row)"
|
||||||
|
v-hasPermi="['mes:wm:issueheader: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="960px" append-to-body>
|
||||||
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="领料单编号" prop="issueCode">
|
||||||
|
<el-input v-model="form.issueCode" placeholder="请输入领料单编号" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="4">
|
||||||
|
<el-form-item label-width="80">
|
||||||
|
<el-switch v-model="autoGenFlag"
|
||||||
|
active-color="#13ce66"
|
||||||
|
active-text="自动生成"
|
||||||
|
@change="handleAutoGenChange(autoGenFlag)" v-if="optType != 'view' && form.status =='PREPARE'">
|
||||||
|
</el-switch>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="领料单名称" prop="issueName">
|
||||||
|
<el-input v-model="form.issueName" placeholder="请输入领料单名称" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="工作站" prop="workstationName">
|
||||||
|
<el-input v-model="form.workstationName" placeholder="请选择工作站" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<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="workorderCode">
|
||||||
|
<el-input v-model="form.workorderCode" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="生产工单名称" prop="workorderName">
|
||||||
|
<el-input v-model="form.workorderName" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="生产任务编码" prop="taskCode">
|
||||||
|
<el-input v-model="form.taskCode" placeholder="请输入生产任务编码" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="生产任务名称" prop="taskName">
|
||||||
|
<el-input v-model="form.taskName" placeholder="请输入生产任务名称" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="领料仓库">
|
||||||
|
<el-cascader v-model="warehouseInfo"
|
||||||
|
:options="warehouseOptions"
|
||||||
|
:props="warehouseProps"
|
||||||
|
@change="handleWarehouseChanged"
|
||||||
|
>
|
||||||
|
</el-cascader>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="领料日期" prop="issueDate">
|
||||||
|
<el-date-picker clearable
|
||||||
|
v-model="form.issueDate"
|
||||||
|
type="date"
|
||||||
|
value-format="yyyy-MM-dd"
|
||||||
|
placeholder="请选择领料日期">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
<el-divider v-if="form.issueId !=null" content-position="center">物料信息</el-divider>
|
||||||
|
<el-card shadow="always" v-if="form.issueId !=null" class="box-card">
|
||||||
|
<Issueline ref="line" :issueId="form.issueId" :warehouseId="form.warehouseId" :locationId="form.locationId" :areaId="form.areaId" :optType="optType"></Issueline>
|
||||||
|
</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 @click="cancel">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { listIssueheader, getIssueheader, delIssueheader, addIssueheader, updateIssueheader, execute } from "@/api/mes/wm/issueheader";
|
||||||
|
import {getTreeList} from "@/api/mes/wm/warehouse"
|
||||||
|
import {genCode} from "@/api/system/autocode/rule"
|
||||||
|
import Issueline from "./line.vue";
|
||||||
|
export default {
|
||||||
|
name: "Issueheader",
|
||||||
|
dicts: ['mes_order_status'],
|
||||||
|
components: {Issueline},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
autoGenFlag:false,
|
||||||
|
optType: undefined,
|
||||||
|
warehouseInfo:[],
|
||||||
|
warehouseOptions:[],
|
||||||
|
warehouseProps:{
|
||||||
|
multiple: false,
|
||||||
|
value: 'pId',
|
||||||
|
label: 'pName',
|
||||||
|
},
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
// 选中数组
|
||||||
|
ids: [],
|
||||||
|
// 非单个禁用
|
||||||
|
single: true,
|
||||||
|
// 非多个禁用
|
||||||
|
multiple: true,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// 生产领料单头表格数据
|
||||||
|
issueheaderList: [],
|
||||||
|
// 弹出层标题
|
||||||
|
title: "",
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
issueCode: null,
|
||||||
|
issueName: null,
|
||||||
|
workstationId: null,
|
||||||
|
workstationCode: null,
|
||||||
|
workorderId: null,
|
||||||
|
workorderCode: null,
|
||||||
|
taskId: null,
|
||||||
|
taskCode: null,
|
||||||
|
warehouseId: null,
|
||||||
|
warehouseCode: null,
|
||||||
|
warehouseName: null,
|
||||||
|
locationId: null,
|
||||||
|
locationCode: null,
|
||||||
|
locationName: null,
|
||||||
|
areaId: null,
|
||||||
|
areaCode: null,
|
||||||
|
areaName: null,
|
||||||
|
issueDate: null,
|
||||||
|
status: null,
|
||||||
|
},
|
||||||
|
// 表单参数
|
||||||
|
form: {},
|
||||||
|
// 表单校验
|
||||||
|
rules: {
|
||||||
|
issueCode: [
|
||||||
|
{ required: true, message: "领料单编号不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
issueName: [
|
||||||
|
{ required: true, message: "领料单名称不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
issueDate: [
|
||||||
|
{ required: true, message: "请指定领出日期", trigger: "blur" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getList();
|
||||||
|
this.getWarehouseList();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 查询生产领料单头列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
listIssueheader(this.queryParams).then(response => {
|
||||||
|
this.issueheaderList = response.rows;
|
||||||
|
this.total = response.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
getWarehouseList(){
|
||||||
|
getTreeList().then( response =>{
|
||||||
|
this.warehouseOptions = response.data;
|
||||||
|
this.warehouseOptions.map(w =>{
|
||||||
|
w.children.map(l =>{
|
||||||
|
let lstr =JSON.stringify(l.children).replace(/locationId/g,'lId').replace(/areaId/g, 'pId').replace(/areaName/g,'pName');
|
||||||
|
l.children = JSON.parse(lstr);
|
||||||
|
});
|
||||||
|
|
||||||
|
let wstr = JSON.stringify(w.children).replace(/warehouseId/g,'wId').replace(/locationId/g, 'pId').replace(/locationName/g,'pName');
|
||||||
|
w.children = JSON.parse(wstr);
|
||||||
|
|
||||||
|
});
|
||||||
|
let ostr=JSON.stringify(this.warehouseOptions).replace(/warehouseId/g,'pId').replace(/warehouseName/g, 'pName');
|
||||||
|
this.warehouseOptions = JSON.parse(ostr);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
issueId: null,
|
||||||
|
issueCode: null,
|
||||||
|
issueName: null,
|
||||||
|
workstationId: null,
|
||||||
|
workstationCode: null,
|
||||||
|
workorderId: null,
|
||||||
|
workorderCode: null,
|
||||||
|
taskId: null,
|
||||||
|
taskCode: null,
|
||||||
|
warehouseId: null,
|
||||||
|
warehouseCode: null,
|
||||||
|
warehouseName: null,
|
||||||
|
locationId: null,
|
||||||
|
locationCode: null,
|
||||||
|
locationName: null,
|
||||||
|
areaId: null,
|
||||||
|
areaCode: null,
|
||||||
|
areaName: null,
|
||||||
|
issueDate: new Date(),
|
||||||
|
status: 'PREPARE',
|
||||||
|
remark: null,
|
||||||
|
attr1: null,
|
||||||
|
attr2: null,
|
||||||
|
attr3: null,
|
||||||
|
attr4: null,
|
||||||
|
createBy: null,
|
||||||
|
createTime: null,
|
||||||
|
updateBy: null,
|
||||||
|
updateTime: null
|
||||||
|
};
|
||||||
|
this.autoGenFlag = false;
|
||||||
|
this.resetForm("form");
|
||||||
|
},
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.queryParams.pageNum = 1;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm("queryForm");
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
// 多选框选中数据
|
||||||
|
handleSelectionChange(selection) {
|
||||||
|
this.ids = selection.map(item => item.issueId)
|
||||||
|
this.single = selection.length!==1
|
||||||
|
this.multiple = !selection.length
|
||||||
|
},
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
handleAdd() {
|
||||||
|
this.reset();
|
||||||
|
this.open = true;
|
||||||
|
this.title = "添加生产领料单头";
|
||||||
|
this.optType = "add";
|
||||||
|
},
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
handleUpdate(row) {
|
||||||
|
this.reset();
|
||||||
|
const issueId = row.issueId || this.ids
|
||||||
|
getIssueheader(issueId).then(response => {
|
||||||
|
this.form = response.data;
|
||||||
|
this.warehouseInfo[0] = response.data.warehouseId;
|
||||||
|
this.warehouseInfo[1] = response.data.locationId;
|
||||||
|
this.warehouseInfo[2] = response.data.areaId;
|
||||||
|
this.open = true;
|
||||||
|
this.title = "修改生产领料单头";
|
||||||
|
this.optType = "edit";
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 查询明细按钮操作
|
||||||
|
handleView(row){
|
||||||
|
this.reset();
|
||||||
|
const issueIds = row.issueId
|
||||||
|
getIssueheader(issueIds).then(response => {
|
||||||
|
this.form = response.data;
|
||||||
|
this.warehouseInfo[0] = response.data.warehouseId;
|
||||||
|
this.warehouseInfo[1] = response.data.locationId;
|
||||||
|
this.warehouseInfo[2] = response.data.areaId;
|
||||||
|
this.open = true;
|
||||||
|
this.title = "查看领料单信息";
|
||||||
|
this.optType = "view";
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 提交按钮 */
|
||||||
|
submitForm() {
|
||||||
|
this.$refs["form"].validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
if (this.form.issueId != null) {
|
||||||
|
updateIssueheader(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
addIssueheader(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("新增成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
//执行出库
|
||||||
|
handleExecute(row){
|
||||||
|
const issueIds = row.issueId || this.ids;
|
||||||
|
this.$modal.confirm('确认执行出库?').then(function() {
|
||||||
|
return execute(issueIds)//执行入库
|
||||||
|
}).then(() => {
|
||||||
|
this.getList();
|
||||||
|
this.$modal.msgSuccess("出库成功");
|
||||||
|
}).catch(() => {});
|
||||||
|
},
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
handleDelete(row) {
|
||||||
|
const issueIds = row.issueId || this.ids;
|
||||||
|
this.$modal.confirm('是否确认删除生产领料单头编号为"' + issueIds + '"的数据项?').then(function() {
|
||||||
|
return delIssueheader(issueIds);
|
||||||
|
}).then(() => {
|
||||||
|
this.getList();
|
||||||
|
this.$modal.msgSuccess("删除成功");
|
||||||
|
}).catch(() => {});
|
||||||
|
},
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
handleExport() {
|
||||||
|
this.download('wm/issueheader/export', {
|
||||||
|
...this.queryParams
|
||||||
|
}, `issueheader_${new Date().getTime()}.xlsx`)
|
||||||
|
},
|
||||||
|
//选择默认的仓库、库区、库位
|
||||||
|
handleWarehouseChanged(obj){
|
||||||
|
if(obj !=null){
|
||||||
|
this.form.warehouseId = obj[0];
|
||||||
|
this.form.locationId = obj[1];
|
||||||
|
this.form.areaId = obj[2];
|
||||||
|
}
|
||||||
|
},
|
||||||
|
//自动生成编码
|
||||||
|
handleAutoGenChange(autoGenFlag){
|
||||||
|
if(autoGenFlag){
|
||||||
|
genCode('ISSUE_CODE').then(response =>{
|
||||||
|
this.form.issueCode = response;
|
||||||
|
});
|
||||||
|
}else{
|
||||||
|
this.form.issueCode = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
372
src/views/mes/wm/issue/line.vue
Normal file
372
src/views/mes/wm/issue/line.vue
Normal file
@ -0,0 +1,372 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-row v-if="optType != 'view'" :gutter="10" class="mb8">
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
plain
|
||||||
|
icon="el-icon-plus"
|
||||||
|
size="mini"
|
||||||
|
@click="handleAdd"
|
||||||
|
v-hasPermi="['mes:wm:issueheader: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="['mes:wm:issueheader: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="['mes:wm:issueheader:remove']"
|
||||||
|
>删除</el-button>
|
||||||
|
</el-col>
|
||||||
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="issuelineList" @selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
|
<el-table-column label="产品物料编码" width="120px" align="center" prop="itemCode" />
|
||||||
|
<el-table-column label="产品物料名称" width="120px" align="center" prop="itemName" :show-overflow-tooltip="true"/>
|
||||||
|
<el-table-column label="规格型号" align="center" prop="specification" :show-overflow-tooltip="true"/>
|
||||||
|
<el-table-column label="单位" align="center" prop="unitOfMeasure" />
|
||||||
|
<el-table-column label="领料数量" align="center" prop="quantityIssued" />
|
||||||
|
<el-table-column label="批次号" align="center" prop="batchCode" />
|
||||||
|
<el-table-column label="仓库名称" align="center" prop="warehouseName" />
|
||||||
|
<el-table-column label="库区名称" align="center" prop="locationName" />
|
||||||
|
<el-table-column label="库位名称" align="center" prop="areaName" />
|
||||||
|
<el-table-column label="备注" align="center" prop="remark" :show-overflow-tooltip="true"/>
|
||||||
|
<el-table-column label="操作" align="center" v-if="optType != 'view'" 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="['mes:wm:issueheader:edit']"
|
||||||
|
>修改</el-button>
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-delete"
|
||||||
|
@click="handleDelete(scope.row)"
|
||||||
|
v-hasPermi="['mes:wm:issueheader: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="960px" append-to-body>
|
||||||
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="产品物料编码" prop="itemCode">
|
||||||
|
<el-input v-model="form.itemCode" readonly="readonly" placeholder="请选择产品物料编码" >
|
||||||
|
<el-button slot="append" @click="handleSelectStock" icon="el-icon-search"></el-button>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<StockSelect ref="stockSelect" :batchCode="batchCdoe" :vendorId="vendorId" @onSelected="onStockSelected"></StockSelect>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="产品物料名称" prop="itemName">
|
||||||
|
<el-input v-model="form.itemName" readonly="readonly" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="领料数量" prop="quantityIssued">
|
||||||
|
<el-input-number :max="form.quantityMax" v-model="form.quantityIssued" placeholder="请输入领料数量" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="规格型号" prop="specification">
|
||||||
|
<el-input v-model="form.specification" readonly="readonly" type="textarea" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="单位" prop="unitOfMeasure">
|
||||||
|
<el-input v-model="form.unitOfMeasure" readonly="readonly" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="批次号" prop="batchCode">
|
||||||
|
<el-input v-model="form.batchCode" readonly="readonly" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="仓库" prop="warehouseName">
|
||||||
|
<el-input v-model="form.warehouseName" readonly="readonly" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="库区" prop="locationName">
|
||||||
|
<el-input v-model="form.locationName" readonly="readonly" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="库位" prop="areaName">
|
||||||
|
<el-input v-model="form.areaName" readonly="readonly" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
||||||
|
</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 { listIssueline, getIssueline, delIssueline, addIssueline, updateIssueline } from "@/api/mes/wm/issueline";
|
||||||
|
import StockSelect from "@/components/stockSelect/single.vue"
|
||||||
|
export default {
|
||||||
|
name: "Issueline",
|
||||||
|
components:{StockSelect},
|
||||||
|
props:{
|
||||||
|
optType: null,
|
||||||
|
issueId: null,
|
||||||
|
warehouseId: null,
|
||||||
|
locationId: null,
|
||||||
|
areaId: null
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
// 选中数组
|
||||||
|
ids: [],
|
||||||
|
// 非单个禁用
|
||||||
|
single: true,
|
||||||
|
// 非多个禁用
|
||||||
|
multiple: true,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// 生产领料单行表格数据
|
||||||
|
issuelineList: [],
|
||||||
|
// 弹出层标题
|
||||||
|
title: "",
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
issueId: null,
|
||||||
|
itemId: null,
|
||||||
|
itemCode: null,
|
||||||
|
itemName: null,
|
||||||
|
specification: null,
|
||||||
|
unitOfMeasure: null,
|
||||||
|
quantityIssued: null,
|
||||||
|
batchCode: null,
|
||||||
|
warehouseId: null,
|
||||||
|
warehouseCode: null,
|
||||||
|
warehouseName: null,
|
||||||
|
locationId: null,
|
||||||
|
locationCode: null,
|
||||||
|
locationName: null,
|
||||||
|
areaId: null,
|
||||||
|
areaCode: null,
|
||||||
|
areaName: null,
|
||||||
|
},
|
||||||
|
// 表单参数
|
||||||
|
form: {},
|
||||||
|
// 表单校验
|
||||||
|
rules: {
|
||||||
|
itemId: [
|
||||||
|
{ required: true, message: "产品物料不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
quantityIssued: [
|
||||||
|
{ required: true, message: "领料数量不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 查询生产领料单行列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
listIssueline(this.queryParams).then(response => {
|
||||||
|
this.issuelineList = response.rows;
|
||||||
|
this.total = response.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
lineId: null,
|
||||||
|
issueId: this.issueId,
|
||||||
|
itemId: null,
|
||||||
|
itemCode: null,
|
||||||
|
itemName: null,
|
||||||
|
specification: null,
|
||||||
|
unitOfMeasure: null,
|
||||||
|
quantityIssued: null,
|
||||||
|
batchCode: null,
|
||||||
|
warehouseId: null,
|
||||||
|
warehouseCode: null,
|
||||||
|
warehouseName: null,
|
||||||
|
locationId: null,
|
||||||
|
locationCode: null,
|
||||||
|
locationName: null,
|
||||||
|
areaId: null,
|
||||||
|
areaCode: null,
|
||||||
|
areaName: 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.lineId)
|
||||||
|
this.single = selection.length!==1
|
||||||
|
this.multiple = !selection.length
|
||||||
|
},
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
handleAdd() {
|
||||||
|
this.reset();
|
||||||
|
this.open = true;
|
||||||
|
this.title = "添加生产领料单行";
|
||||||
|
},
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
handleUpdate(row) {
|
||||||
|
this.reset();
|
||||||
|
const lineId = row.lineId || this.ids
|
||||||
|
getIssueline(lineId).then(response => {
|
||||||
|
this.form = response.data;
|
||||||
|
this.open = true;
|
||||||
|
this.title = "修改生产领料单行";
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 提交按钮 */
|
||||||
|
submitForm() {
|
||||||
|
this.$refs["form"].validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
if (this.form.lineId != null) {
|
||||||
|
updateIssueline(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
addIssueline(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("新增成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
handleDelete(row) {
|
||||||
|
const lineIds = row.lineId || this.ids;
|
||||||
|
this.$modal.confirm('是否确认删除生产领料单行编号为"' + lineIds + '"的数据项?').then(function() {
|
||||||
|
return delIssueline(lineIds);
|
||||||
|
}).then(() => {
|
||||||
|
this.getList();
|
||||||
|
this.$modal.msgSuccess("删除成功");
|
||||||
|
}).catch(() => {});
|
||||||
|
},
|
||||||
|
handleSelectStock(){
|
||||||
|
this.$refs.stockSelect.showFlag = true;
|
||||||
|
this.$refs.stockSelect.getList();
|
||||||
|
},
|
||||||
|
//物料选择弹出框
|
||||||
|
onStockSelected(obj){
|
||||||
|
if(obj != undefined && obj != null){
|
||||||
|
this.form.materialStockId = obj.materialStockId;
|
||||||
|
this.form.itemId = obj.itemId;
|
||||||
|
this.form.itemCode = obj.itemCode;
|
||||||
|
this.form.itemName = obj.itemName;
|
||||||
|
this.form.specification = obj.specification;
|
||||||
|
this.form.unitOfMeasure = obj.unitOfMeasure;
|
||||||
|
this.form.warehouseId = obj.warehouseId;
|
||||||
|
this.form.warehouseCode = obj.warehouseCode;
|
||||||
|
this.form.warehouseName = obj.warehouseName;
|
||||||
|
this.form.locationId = obj.locationId;
|
||||||
|
this.form.locationCode = obj.locationCode;
|
||||||
|
this.form.locationName = obj.locationName;
|
||||||
|
this.form.areaId = obj.areaId;
|
||||||
|
this.form.areaCode = obj.areaCode;
|
||||||
|
this.form.areaName = obj.areaName;
|
||||||
|
this.form.quantityIssued = obj.quantityOnhand;
|
||||||
|
this.form.quantityMax = obj.quantityOnhand;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
handleExport() {
|
||||||
|
this.download('wm/issueline/export', {
|
||||||
|
...this.queryParams
|
||||||
|
}, `issueline_${new Date().getTime()}.xlsx`)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -204,7 +204,7 @@ export default {
|
|||||||
// 表单校验
|
// 表单校验
|
||||||
rules: {
|
rules: {
|
||||||
itemId: [
|
itemId: [
|
||||||
{ required: true, message: "产品物料ID不能为空", trigger: "blur" }
|
{ required: true, message: "产品物料不能为空", trigger: "blur" }
|
||||||
],
|
],
|
||||||
quantityRted: [
|
quantityRted: [
|
||||||
{ required: true, message: "退货数量不能为空", trigger: "blur" }
|
{ required: true, message: "退货数量不能为空", trigger: "blur" }
|
||||||
|
Loading…
Reference in New Issue
Block a user