Commit 18e260d6 authored by 吴春's avatar 吴春

审核可以修改代收代付公司

parent 8d460333
......@@ -1345,6 +1345,17 @@
<el-radio v-model="AuditOrRefundMsg.KingdeeInvoice" label="1">有票</el-radio>
<el-radio v-model="AuditOrRefundMsg.KingdeeInvoice" label="2">无票</el-radio>
</span>
<span v-if="(GetDetail.Type==1||GetDetail.Type==2)&&is_financeShow&&item.AuditDescription.indexOf('会计')!=-1" style="font-size: 12px;margin-left:30px;">{{GetDetail.Type==1?"帮代收公司":"帮代付公司"}}:
<el-select filterable v-model='AuditOrRefundMsg.HelpBranchId' placeholder="非代收代付"
class="w135 _border_b_1">
<el-option label="非代收代付" :value='-1' :key='-1' >
</el-option>
<el-option v-for='item in CompanyList' :label='item.BName' :value='item.Id' :key='item.Id' :disabled="item.Id===GetDetail.RB_Branch_Id">
</el-option>
</el-select>
</span>
</div>
<div style="float:right" v-if="isShowChoice&&AuditOrRefundMsg.Status=='5'">
<el-radio v-model="choiceMsg.Status" label="1">常规</el-radio>
......@@ -1672,6 +1683,18 @@
<el-radio v-model="AuditOrRefundMsg.KingdeeInvoice" label="1">有票</el-radio>
<el-radio v-model="AuditOrRefundMsg.KingdeeInvoice" label="2">无票</el-radio>
</span>
<span v-if="(GetDetail.Type==1||GetDetail.Type==2)&&is_financeShow&&item.AuditDescription.indexOf('会计')!=-1" style="font-size: 12px;margin-left:30px;">{{GetDetail.Type==1?"帮代收公司":"帮代付公司"}}:
<el-select filterable v-model='AuditOrRefundMsg.HelpBranchId' placeholder="非代收代付"
class="w135 _border_b_1">
<el-option label="非代收代付" :value='-1' :key='-1' >
</el-option>
<el-option v-for='item in CompanyList' :label='item.BName' :value='item.Id' :key='item.Id' :disabled="item.Id===GetDetail.RB_Branch_Id">
</el-option>
</el-select>
</span>
</div>
<div style="float:right" v-if="isShowChoice&&AuditOrRefundMsg.Status=='5'">
<el-radio v-model="choiceMsg.Status" label="1">常规</el-radio>
......@@ -2163,6 +2186,7 @@
},
AuditOrRefundMsg: {
WorkFlowId: '',
HelpBranchId:-1,
SpecialNode: 1,
Description: '',
Status: '5',
......@@ -3730,6 +3754,7 @@ else if (Type==2) {
HelpBranchName:data.HelpBranchName,
}
this.benMoney = 0
this.AuditOrRefundMsg.HelpBranchId=data.HelpBranchId;
this.AuditOrRefundMsg.KingdeeInvoice=data.KingdeeInvoice+"";
data.DetailList.forEach(x => {
x.UnitPrice = this.$commonUtils.addCommas(Math.round(x.UnitPrice * 100) / 100)
......@@ -3894,6 +3919,13 @@ else if (Type==2) {
}
});
},
getCompanyList() { //获取公司列表
this.apipost('admin_get_BranchGetList', this.getCompanyMsg, res => {
if (res.data.resultCode == 1) {
this.CompanyList = res.data.data;
} else {}
}, err => {})
},
AccountType_post_GetList() { //获取账户类型下拉
this.apipost('AccountType_post_GetList', this.queryAccMsg, res => {
if (res.data.resultCode == 1) {
......@@ -4070,7 +4102,7 @@ else if (Type==2) {
this.qjGroupId = this.QjGroupId();
this.userId = userInfo.EmployeeId;
this.RB_Post_Id = userInfo.RB_Post_Id;
this.getCompanyList();
this.queryMsg.FinanceId = this.$route.query.id;
this.financeinfo_post_GetClientTypeList();
this.Financial_post_GetDetail(this.ID);
......
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