1.单据类型列表增加备注展示

purchase
x_z 3 years ago
parent 99f2c2bc49
commit c5d68799c7

@ -55,6 +55,7 @@
<span>{{ enableMap[scope.row.spUse] }}</span> <span>{{ enableMap[scope.row.spUse] }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="备注" prop="remark" fixed></el-table-column>
<el-table-column label="操作" fixed="right"> <el-table-column label="操作" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button

@ -303,7 +303,9 @@
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button @click.native="hideForm">取消</el-button> <el-button @click.native="hideForm">取消</el-button>
<el-button type="primary" @click.native="formSubmit()" :loading="formLoading" :disabled="!configParms.basicCorp">提交</el-button> <el-button type="primary" @click.native="formSubmit()" :loading="formLoading"
:disabled="!configParms.basicCorp">提交
</el-button>
</div> </div>
</el-dialog> </el-dialog>
</div> </div>
@ -464,29 +466,18 @@ export default {
this.editQuery = row; this.editQuery = row;
} else { } else {
this.editQuery = this.editQuery = {
{
id: "", id: "",
thirdId: thirdId: "",
"", erpId: "",
erpId: name: "",
"", spell: "",
name: addr: "",
"", status: "",
spell: type: "",
"", creditNo: "",
addr: contact: "",
"", mobile: ""
status:
"",
type:
"",
creditNo:
"",
contact:
"",
mobile:
""
}; };
} }

@ -77,6 +77,7 @@
</el-form-item> </el-form-item>
<el-form-item style="display: flex"> <el-form-item style="display: flex">
<el-button-group> <el-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="searchList"></el-button> <el-button type="primary" icon="search" @click="searchList"></el-button>
<el-button type="primary" size="mini" icon="search" @click="combine" <el-button type="primary" size="mini" icon="search" @click="combine"
:loading="combineLoading" :loading="combineLoading"
@ -177,6 +178,16 @@ export default {
this.unitQuery.page = 1; this.unitQuery.page = 1;
this.getList(); this.getList();
}, },
onReset() {
this.unitQuery = {
page: 1,
limit: 10,
key: "",
thirdSys: null,
}
this.total = 0;
this.getList();
},
getList() { getList() {
this.loading = true; this.loading = true;
this.unitQuery.thirdSys = this.thirdSysFk; this.unitQuery.thirdSys = this.thirdSysFk;
@ -235,7 +246,7 @@ export default {
this.$message.warning("未选择往来单位!"); this.$message.warning("未选择往来单位!");
return; return;
} }
if( this.combineQuery.erpUnitsResponse.checked == true){ if (this.combineQuery.erpUnitsResponse.checked == true) {
this.$message.warning("该往来单位已被关联,不能重复选入!"); this.$message.warning("该往来单位已被关联,不能重复选入!");
return; return;
} }

@ -67,7 +67,7 @@
<el-form-item> <el-form-item>
<el-button-group> <el-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="getList"></el-button> <el-button type="primary" icon="search" @click="search"></el-button>
<el-button <el-button
type="primary" type="primary"
icon="search" icon="search"
@ -850,6 +850,10 @@ export default {
limit: 20, limit: 20,
addType: 1, addType: 1,
}; };
this.total = 0;
},
search() {
this.filterQuery.page = 1;
this.getList(); this.getList();
}, },
getList() { getList() {

@ -424,6 +424,8 @@
<el-dialog <el-dialog
:title="editTitle" :title="editTitle"
:visible.sync="editCodeVisible" :visible.sync="editCodeVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
append-to-body width="70%" append-to-body width="70%"
v-if="editCodeVisible" v-if="editCodeVisible"
> >
@ -462,13 +464,12 @@ import {filterSubByInv} from "../../api/basic/invSubWarehouse";
import draggable from "vuedraggable"; import draggable from "vuedraggable";
import {parseTime} from "../../filtres/index"; import {parseTime} from "../../filtres/index";
import {getBasicUnitMaintains} from "../../api/basic/basicUnitMaintain" import {getBasicUnitMaintains} from "../../api/basic/basicUnitMaintain"
import {deleteWarehouse, filterAllByLoc, filterAllByUser} from "@/api/basic/invWarehouse"; import {filterAllByLoc, filterAllByUser} from "@/api/basic/invWarehouse";
import {getLocalBusType, getLocalJoinBusType, getLocalJoinByUser} from "../../api/basic/busLocalType"; import {getLocalJoinByUser} from "../../api/basic/busLocalType";
import DialogSelectUnit from "./DialogSelectUnit"; import DialogSelectUnit from "./DialogSelectUnit";
import selectRlDialog from "./DialogSelectRl"; import selectRlDialog from "./DialogSelectRl";
import editCodeDialog from "./editCode"; import editCodeDialog from "./editCode";
import A from "../../plugin/KeyScaner" import A from "../../plugin/KeyScaner"
import {deleteLog} from "@/api/basic/udiinfolog";
import {isBlank} from "@/utils/strUtil"; import {isBlank} from "@/utils/strUtil";

Loading…
Cancel
Save