创建单据,单据流转修改

prod
anthonywj 2 years ago
parent 13e9db24ed
commit 26a370d32c

@ -130,7 +130,7 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item prop="fromCorp" <el-form-item prop="fromCorp" label="往来信息:"
v-if="curAction.corpType ==1 && curAction.genUnit"> v-if="curAction.corpType ==1 && curAction.genUnit">
<el-input v-model="orderFormData.fromCorp" auto-complete="off" <el-input v-model="orderFormData.fromCorp" auto-complete="off"
clearable clearable

@ -192,10 +192,10 @@ export default {
this.$message.error("目标所在仓库不能为空!") this.$message.error("目标所在仓库不能为空!")
return; return;
} }
if (isBlank(this.inputQuery.defaultInvCode)) { // if (isBlank(this.inputQuery.defaultInvCode)) {
this.$message.error("目标往来仓库不能为空"); // this.$message.error("");
return; // return;
} // }
if (this.formName === "add") { if (this.formName === "add") {
let numRegExp = '^[0-9]*$'; let numRegExp = '^[0-9]*$';

@ -107,7 +107,7 @@
<script> <script>
import {getBusTypeList, getBusTypeListByUser} from "@/api/basic/busType"; import {getBusTypeList, getBusTypeListByUser} from "@/api/basic/busType";
import {filterSubByInv, filterSubAll} from "@/api/system/invSubWarehouse"; import {filterSubByInv, filterSubAll, findByFrom} from "@/api/system/invSubWarehouse";
export default { export default {
name: "BusTypePreModify", name: "BusTypePreModify",
@ -151,13 +151,13 @@ export default {
trigger: "blur" trigger: "blur"
} }
], ],
defaultInvCode: [ // defaultInvCode: [
{ // {
required: true, // required: true,
message: "目标往来仓库不能为空", // message: "",
trigger: "blur" // trigger: "blur"
} // }
], // ],
}, },
} }
}, },
@ -206,10 +206,10 @@ export default {
getFromInv() { getFromInv() {
let params = { let params = {
code: this.inputQuery.invCode, locInvCode: this.inputQuery.invCode,
filter: 2 filter: 2
}; };
filterSubByInv(params).then((res) => { findByFrom(params).then((res) => {
if (res.code === 20000) { if (res.code === 20000) {
this.fromInvs = res.data; this.fromInvs = res.data;
} }

Loading…
Cancel
Save