Commit 84412a3b authored by youjie's avatar youjie

no message

parent 03217780
......@@ -144,7 +144,7 @@
</li>
</ul>
</div>
<div class="cm_content _scrollbar" style="position: absolute;top:117px;bottom: 50px;left: 15px;right:15px;overflow-y: scroll;">
<div class="cm_content _scrollbar" style="position: absolute;top:117px;bottom: 100px;left: 15px;right:15px;overflow-y: scroll;">
<table class="po_content singeRowTable"
style="border:1px solid #E6E6E6;" cellspacing="0"
......
......@@ -487,7 +487,23 @@
<div class="page_fnDm page_RecPayQuery page-body" @keyup.enter="resetPageIndex(),getPageList()">
<div class="query-box">
<el-form class="_info_box clearfix" label-width="110px">
<el-row style="padding:15px 20px 0 0;">
<el-col :span="4">
<el-form-item label="公司:">
<el-select filterable v-model='msg.KingdeeBranchId' placeholder="请选择公司" @keyup.native="checkInteger(msg,'RB_Branch_Id')">
<!-- <el-option label="不限" value=0></el-option> -->
<el-option v-for="(item,index) in TheAliasList" :label="item.Name" :value='item.Id' :key="index">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="4">
<el-form-item label="凭证字:">
<el-input placeholder="" class="" v-model="msg.FinanceName" @keyup.native="checkInteger(msg,'FinanceName')"
maxlength="8"></el-input>
</el-form-item>
</el-col>
<el-col :span="4">
<el-form-item label="单号:">
<el-input placeholder="" class="" v-model="msg.FrID" @keyup.native="checkInteger(msg,'FrID')"
......@@ -832,6 +848,8 @@
EmployeeId:'',// 是 [string] 查看
TCID:'',// 是 [string] 查看
OrderID:'',//
KingdeeBranchId:'1',
FinanceName:'记',
},
getCompanyMsg: { // 校区
RB_Group_Id: '0',
......@@ -915,6 +933,7 @@
getInvoiceList:[],
costmode:false,//费用类型的修改弹窗
trabeList:[],//修改费用类型的下啦数据
TheAliasList:[],
}
},
created() {
......@@ -931,6 +950,7 @@
this.DepartIDs = userInfo.RB_Department_Id;
this.userId = userInfo.EmployeeId;
this.msg.EmployeeId = userInfo.EmployeeId;
this.Financial_post_GetEduBranchEnumList()
this.financeinfo_post_GetList();
this.financeinfo_post_GetCostTypeList();
this.FinancialFlowTemplate_post_GetList();
......@@ -944,6 +964,7 @@
this.getPageList();
this.AccountType_post_GetList();
this.get_GetInvoiceTypeEnumList()
var that = this;
that.MsgBus.$on('getRecQuery', function (FrID) {
that.zhuanjiaoMsg.CreateBy = '';
......@@ -955,6 +976,16 @@
},
methods: {
Financial_post_GetEduBranchEnumList() {
this.apipost('Financial_post_GetEduBranchEnumList', {}, res => {
if (res.data.resultCode == 1) {
this.TheAliasList = res.data.data;
// this.msg.KingdeeBranchId = this.TheAliasList[0].Id
} else {
this.Error(res.data.message);
}
}, err => {})
},
get_GetInvoiceTypeEnumList(){
this.apipost('Financial_get_GetInvoiceTypeEnumList', {}, res => {
......@@ -1086,6 +1117,7 @@
}, err => {})
},
method5: function () {
if (!this.msg.FinanceName) return this.Error(this.$t('请输入凭证字'));
if (!this.msg.ClientID) this.msg.ClientID = 0;
if (!this.msg.ClientType) this.msg.ClientType = 0;
if (!this.msg.CurrencyId) this.msg.CurrencyId = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment