创建单据,单据流转修改

prod
anthonywj 2 years ago
parent 13e9db24ed
commit 26a370d32c

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

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

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

Loading…
Cancel
Save