<template>
|
<div class="add-common">
|
<el-dialog
|
:title="editCommonConfig.title + '报废单'"
|
:visible.sync="editConfig.visible"
|
:width="dialogWidth"
|
:before-close="handleClose"
|
>
|
<!-- 头 -->
|
<div slot="title" class="dialog-header">
|
<span>{{ editCommonConfig.title + "报废单" }}</span>
|
<div class="header_btns">
|
<span class="btn">
|
<i class="el-icon-printer"></i>
|
<span>打印</span>
|
</span>
|
<span class="btn" style="margin-left: 15px">
|
<i class="el-icon-s-tools"></i>
|
<span>动作</span>
|
</span>
|
<el-button v-if="showEdit" plain size="mini" style="margin-left: 15px" @click="editClick">编辑</el-button>
|
</div>
|
</div>
|
<!-- 内容 -->
|
<el-form
|
ref="form"
|
:model="editConfig.infomation"
|
:rules="rules"
|
label-position="right"
|
label-width="120px"
|
size="mini"
|
>
|
<div>
|
<!-- <div>aaa</div> -->
|
<StatusCommonView
|
:list="list"
|
:showButton="showButton"
|
:showOther="false"
|
:isValidateClick="isValidateClick"
|
@validateClick="validateClick"
|
/>
|
</div>
|
<div class="basic-info">
|
<div class="basic-info-view">
|
<el-row>
|
<el-col :span="12">
|
<el-form-item label="产品" prop="productName">
|
<el-select
|
v-model="editConfig.infomation.productName"
|
placeholder="请选择"
|
size="mini"
|
style="width: 90%"
|
:disabled="!showFooter"
|
@change="selProductChange"
|
>
|
<el-option
|
v-for="item in productOptions"
|
:key="item.id"
|
:label="item.name"
|
:value="{ value: item.id, label: item.name, unit: item.unit }"
|
>
|
</el-option>
|
</el-select>
|
</el-form-item>
|
</el-col>
|
<el-col :span="12">
|
<el-form-item label="源位置" prop="fromLocationId">
|
<el-select
|
v-model="editConfig.infomation.fromLocationId"
|
placeholder="请选择"
|
size="mini"
|
style="width: 90%"
|
:disabled="!showFooter"
|
>
|
<el-option v-for="item in toLocationOptions" :key="item.id" :label="item.name" :value="item.id">
|
</el-option>
|
</el-select>
|
</el-form-item>
|
</el-col>
|
<el-col :span="12">
|
<el-form-item label="数量" prop="amount">
|
<el-input-number
|
v-model="editConfig.infomation.amount"
|
placeholder=""
|
:min="0"
|
:precision="2"
|
:controls="false"
|
style="width: 85%"
|
:disabled="!showFooter"
|
></el-input-number>
|
<span>{{ " " + unit }}</span>
|
</el-form-item>
|
</el-col>
|
<el-col :span="12">
|
<el-form-item label="报废位置" prop="toLocationId">
|
<el-select
|
v-model="editConfig.infomation.toLocationId"
|
placeholder="请选择"
|
size="mini"
|
style="width: 90%"
|
:disabled="!showFooter"
|
>
|
<el-option v-for="item in toLocationOptions" :key="item.id" :label="item.name" :value="item.id">
|
</el-option>
|
</el-select>
|
</el-form-item>
|
</el-col>
|
<el-col :span="12">
|
<el-form-item label="来源单据" prop="sourceNumber">
|
<el-input
|
v-model="editConfig.infomation.sourceNumber"
|
placeholder="例如:PO0032"
|
style="width: 90%"
|
:disabled="!showFooter"
|
></el-input>
|
</el-form-item>
|
</el-col>
|
</el-row>
|
</div>
|
</div>
|
</el-form>
|
<!-- 尾 -->
|
<div slot="footer" class="dialog-footer">
|
<el-button type="primary" size="small" @click="saveClick('form')" :disabled="!showFooter">保存</el-button>
|
<el-button size="small" @click="editConfig.visible = false">取消</el-button>
|
</div>
|
</el-dialog>
|
</div>
|
</template>
|
|
<script>
|
import { getProductList } from "@/api/product/product"
|
import { getLocationList } from "@/api/overview/overview"
|
import { addDisuse, finishDisuse } from "@/api/operate/scrap"
|
export default {
|
name: "AddScrapDialog",
|
props: {
|
editCommonConfig: {
|
type: Object,
|
default: () => {
|
return {
|
visible: false,
|
title: "新建",
|
infomation: {}
|
}
|
}
|
}
|
},
|
components: {},
|
computed: {},
|
data() {
|
return {
|
dialogWidth: "50%",
|
editConfig: this.editCommonConfig,
|
rules: {
|
// 产品,数量必填
|
productName: [{ required: true, message: "请选择产品", trigger: "change" }],
|
amount: [{ required: true, message: "请输入数量", trigger: "blur" }],
|
fromLocationId: [{ required: true, message: "请选择源位置", trigger: "change" }],
|
toLocationId: [{ required: true, message: "请选择报废位置", trigger: "change" }],
|
sourceNumber: [{ required: true, message: "请输入来源单据", trigger: "blur" }]
|
},
|
memberOptions: [],
|
productOptions: [],
|
toLocationOptions: [],
|
list: [
|
{ label: "草稿", status: "todo", value: 1 },
|
{ label: "就绪", status: "todo", value: 3 },
|
{ label: "完成", status: "todo", value: 4 }
|
],
|
showEdit: false, // 是否显示编辑按钮
|
showFooter: false, // 是否显示取消保存
|
currentState: "todo", // 当前状态
|
unit: "",
|
showButton: true,
|
isValidateClick: false // 验证是否显示
|
}
|
},
|
created() {
|
this.setBottonView()
|
this.getProductList()
|
this.getLocationList()
|
this.unit = this.editConfig.infomation.unit || ""
|
},
|
methods: {
|
// 产品
|
async getProductList() {
|
await getProductList({
|
page: 1,
|
pageSize: 100
|
}).then((res) => {
|
// console.log(res.data)
|
if (res.code === 200) {
|
if (res.data && res.data.length > 0) {
|
this.productOptions = res.data
|
}
|
}
|
})
|
},
|
// 获取仓库位置列表
|
async getLocationList() {
|
await getLocationList({
|
keyWord: "",
|
page: 0,
|
pageSize: 0
|
}).then((res) => {
|
console.log(res)
|
if (res.code === 200) {
|
this.toLocationOptions = res.data
|
}
|
})
|
},
|
// 设置删除/打印/编辑是否显示
|
setBottonView() {
|
if (this.editConfig.title === "新建") {
|
this.showButton = false
|
this.showEdit = false
|
this.showFooter = true
|
this.isValidateClick = false
|
} else if (this.editConfig.infomation.status === 4) {
|
this.showButton = false
|
this.showEdit = false
|
this.showFooter = false
|
this.isValidateClick = false
|
} else {
|
this.showButton = true
|
this.showEdit = true
|
this.showFooter = false
|
this.isValidateClick = true
|
}
|
if (this.editConfig.title === "新建") {
|
this.list[0].status = "active"
|
} else {
|
this.list.map((item) => {
|
if (item.value === this.editConfig.infomation.status) {
|
item.status = "active"
|
} else {
|
item.status = "todo"
|
}
|
})
|
}
|
},
|
// 关闭
|
handleClose() {
|
this.editConfig.visible = false
|
},
|
// 编辑
|
editClick() {
|
this.showEdit = false
|
this.showFooter = true
|
},
|
// 保存
|
saveClick(formName) {
|
this.$refs[formName].validate((valid) => {
|
if (valid) {
|
this.editConfig.infomation.productId = this.productId
|
this.editConfig.infomation.productName = this.productName
|
this.editConfig.infomation.unit = this.unit
|
addDisuse({
|
...this.editConfig.infomation
|
}).then((res) => {
|
console.log(res)
|
this.editConfig.visible = false
|
if (res.code === 200) {
|
this.$message.success("添加成功")
|
this.$parent.getData()
|
}
|
})
|
}
|
})
|
},
|
// 选择产品
|
selProductChange(val) {
|
this.unit = val.unit
|
this.productName = val.label
|
this.productId = val.value
|
},
|
// 验证
|
async validateClick() {
|
await finishDisuse(this.editConfig.infomation.id).then((res) => {
|
console.log(res)
|
this.editConfig.visible = false
|
if (res.code === 200) {
|
this.$message.success("验证成功")
|
this.$parent.getData()
|
}
|
})
|
}
|
}
|
}
|
</script>
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
<style lang="scss" scoped>
|
.dialog-header {
|
display: flex;
|
align-items: center;
|
font-size: 14px;
|
color: #333;
|
.header_btns {
|
margin-left: auto;
|
margin-right: 60px;
|
.btn {
|
cursor: no-drop;
|
}
|
}
|
}
|
.content-status {
|
display: flex;
|
}
|
.basic-info {
|
height: calc(100% - 80px);
|
overflow: auto;
|
margin: 20px;
|
// border: 1px solid #dcdfe6;
|
// box-shadow: inset 0 0 2px #dee2e6;
|
// -moz-box-shadow: inset 0 0 2px #dee2e6;
|
// -webkit-box-shadow: inset 0 0 2px #dee2e6;
|
// .basic-info-view {
|
// margin-top: 20px;
|
// }
|
}
|
.purchase-view {
|
display: flex;
|
.left {
|
width: 50%;
|
}
|
.right {
|
width: 50%;
|
}
|
}
|
.second-label {
|
margin-left: 20px;
|
border-bottom: 1px solid #d9d9d9;
|
margin-bottom: 10px;
|
}
|
::v-deep {
|
.el-dialog__headerbtn {
|
position: absolute;
|
top: 18px;
|
}
|
.el-button {
|
&:hover {
|
border: 1px solid #dcdfe6;
|
color: #333;
|
}
|
}
|
.el-tabs--card > .el-tabs__header .el-tabs__nav {
|
margin-left: 20px;
|
}
|
.el-tabs__item {
|
height: 30px;
|
line-height: 30px;
|
font-size: 13px;
|
}
|
.el-input__inner {
|
text-align: left;
|
}
|
}
|
</style>
|