From e383f522e87b06e60d4cf1c3329bfd86c6b98bac Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期四, 14 十二月 2023 15:37:03 +0800 Subject: [PATCH] 出库、入库、调拨编辑的时候入库类型不显示的问题 --- src/views/operate/scrap/AddScrapDialog.vue | 147 +++++++++++++++++++++++++++++++++++-------------- 1 files changed, 105 insertions(+), 42 deletions(-) diff --git a/src/views/operate/scrap/AddScrapDialog.vue b/src/views/operate/scrap/AddScrapDialog.vue index a2fd3e4..3bc1094 100644 --- a/src/views/operate/scrap/AddScrapDialog.vue +++ b/src/views/operate/scrap/AddScrapDialog.vue @@ -44,23 +44,36 @@ <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-form-item label="鎶ュ簾鍗曞彿" prop="number"> + <el-input + style="width: 85%" + v-if=" + editConfig.title == '缂栬緫' || + editConfig.title == '鏌ョ湅' || + (editConfig.title == '鏂板缓' && codenumer && (explain != '' || isIdDisabled)) + " + :disabled="editConfig.title != '鏂板缓'" + v-model="editConfig.infomation.number" + placeholder="璇疯緭鍏ョ紪鐮�" > - <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-input> + <span v-else-if="editConfig.title == '鏂板缓'" style="color: #f56c6c; width: 85%" + >璇蜂紭鍏堥厤缃紪鐮佽鑼� <el-button type="text" @click="numberClick"> 閰嶇疆瑙勮寖 </el-button></span + > + </el-form-item> + </el-col> + <el-col :span="12"> + <el-form-item label="浜у搧" prop="productName"> + <SimpleSearchInput + :echoValue="editConfig.infomation.productName" + :echoName="editConfig.infomation.productName" + checkedNum="1" + :clearable="true" + @select-user="selProductChange" + :disabled="!showFooter" + style="width: 90%" + > + </SimpleSearchInput> </el-form-item> </el-col> <el-col :span="12"> @@ -85,7 +98,7 @@ :min="0" :precision="2" :controls="false" - style="width: 85%" + style="width: 90%" :disabled="!showFooter" ></el-input-number> <span>{{ " " + unit }}</span> @@ -131,9 +144,12 @@ <script> import { getProductList } from "@/api/product/product" import { getLocationList } from "@/api/overview/overview" -import { addDisuse, finishDisuse } from "@/api/operate/scrap" +import { addDisuse, finishDisuse, updateScrap } from "@/api/operate/scrap" +import SimpleSearchInput from "@/components/makepager/SimpleSearchInput" +import codeMixin from "@/views/overview/mixin/codeMixin" export default { name: "AddScrapDialog", + mixins: [codeMixin], props: { editCommonConfig: { type: Object, @@ -146,7 +162,7 @@ } } }, - components: {}, + components: { SimpleSearchInput }, computed: {}, data() { return { @@ -154,11 +170,12 @@ editConfig: this.editCommonConfig, rules: { // 浜у搧锛屾暟閲忓繀濉� - productName: [{ required: true, message: "璇烽�夋嫨浜у搧", trigger: "change" }], + productName: [{ required: true, validator: this.validatorProduct, 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" }] + sourceNumber: [{ required: true, message: "璇疯緭鍏ユ潵婧愬崟鎹�", trigger: "blur" }], + number: [{ required: true, validator: this.validateCheckCode, trigger: ["change", "blur"] }] }, memberOptions: [], productOptions: [], @@ -181,8 +198,17 @@ this.getProductList() this.getLocationList() this.unit = this.editConfig.infomation.unit || "" + this.formInfo() }, methods: { + formInfo() { + this.objCode.type = "浠撳簱鎶ュ簾缂栫爜" + this.objCode.codeStandID = "" + if (this.editConfig.infomation.codeStandardID) { + this.objCode.codeStandID = this.editConfig.infomation.codeStandardID + } + this.getRCodeStandardList() + }, // 浜у搧 async getProductList() { await getProductList({ @@ -200,7 +226,7 @@ // 鑾峰彇浠撳簱浣嶇疆鍒楄〃 async getLocationList() { await getLocationList({ - keyWord: "", + isScrapLocation: true, page: 0, pageSize: 0 }).then((res) => { @@ -212,7 +238,7 @@ }, // 璁剧疆鍒犻櫎/鎵撳嵃/缂栬緫鏄惁鏄剧ず setBottonView() { - if (this.editConfig.title === "鏂板缓") { + if (this.editConfig.title === "鏂板缓" || this.editConfig.title === "缂栬緫") { this.showButton = false this.showEdit = false this.showFooter = true @@ -224,7 +250,7 @@ this.isValidateClick = false } else { this.showButton = true - this.showEdit = true + this.showEdit = false this.showFooter = false this.isValidateClick = true } @@ -251,32 +277,61 @@ }, // 淇濆瓨 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() + if (this.editCommonConfig.title === "鏂板缓") { + 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() + } + }) + } + }) + } else if (this.editCommonConfig.title === "缂栬緫") { + this.$refs[formName].validate((valid) => { + if (valid) { + let params = { + amount: this.editConfig.infomation.amount, + baseOperationType: this.editConfig.infomation.baseOperationType, + fromLocationId: this.editConfig.infomation.fromLocationId, + id: this.editConfig.infomation.id, + number: this.editConfig.infomation.number, + operationDate: this.editConfig.infomation.operationDate, + productId: this.editConfig.infomation.productId, + sourceNumber: this.editConfig.infomation.sourceNumber, + status: this.editConfig.infomation.status, + toLocationId: this.editConfig.infomation.toLocationId } - }) - } - }) + updateScrap(params).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 + this.productName = val.name + this.productId = val.id + this.editConfig.infomation.productName = val.name }, // 楠岃瘉 async validateClick() { + console.log(this.editConfig.infomation.id, "xxx") await finishDisuse(this.editConfig.infomation.id).then((res) => { console.log(res) this.editConfig.visible = false @@ -285,6 +340,14 @@ this.$parent.getData() } }) + }, + // 浜у搧鍗曠嫭鏍¢獙 + validatorProduct(rule, value, callback) { + if (this.editConfig.infomation.productName && this.editConfig.infomation.productName.length > 0) { + callback() + } else { + callback(new Error("璇烽�夋嫨浜у搧")) + } } } } -- Gitblit v1.8.0