Commit e2e711c5 authored by youjie's avatar youjie

no message

parent 108bc2d9
......@@ -963,7 +963,11 @@ input[type="number"] {
</el-tooltip>
<el-tooltip class="item" content="手续费设置" placement="top" v-if="active==2 && istransaction == true && item.Type==1">
<i class="iconfont icon-zhifupeizhiguanli"
@click="showTranTax(item.FrID)"></i>
@click="showTranTax(item.FrID,'1')"></i>
</el-tooltip>
<el-tooltip class="item" content="付款对象设置" placement="top" v-if="active==2 && istransaction == true && item.Type==1">
<i class="iconfont icon-zhifupeizhiguanli"
@click="showTranTax(item.FrID,'2')"></i>
</el-tooltip>
</td>
</tr>
......@@ -1150,6 +1154,42 @@ input[type="number"] {
<el-button class="hollowFixedBtn" @click="transactionTax=false">{{$t('pub.cancelBtn')}}</el-button>
<el-button class="normalBtn" type="primary" @click="saveTransTaxMoney" :loading="transTax.loading">{{$t('pub.sureBtn')}}</el-button>
</div>
</el-dialog>
<el-dialog title="修改付款对象" width="300px"
:visible.sync="PaymentSync" center :before-close="closeChangeMachie">
<el-form class="cdForm" label-width="90px">
<el-form-item label="客户类型" prop="ClientType">
<el-select filterable v-model='transTax.ClientType' :placeholder="$t('fnc.khleixing')"
@change="GetClientAccountList(transTax.ClientType)" class="w135 _border_b_1">
<el-option v-for='item in ClientTypeList' :label='item.Name' :value='item.ID' :key='item.ID'>
</el-option>
</el-select>
</el-form-item>
<el-form-item label="客户名称" prop="ClientID">
<template v-if="msg.ClientType==7&&msg.IsPublic!=2&&msg.IsPublic!=3">
<el-select v-if="msg.IsLeader==1" filterable v-model='transTax.ClientID' :placeholder="$t('fnc.khmingcheng')"
class="w135 _border_b_1">
<el-option v-for='item in ClientAccountList' :label='item.Name' :value='item.ID' :key='item.ID'>
</el-option>
</el-select>
</template>
<template v-if="msg.ClientType!=7&&msg.IsPublic!=2&&msg.IsPublic!=3">
<el-select filterable v-model='transTax.ClientID' :placeholder="$t('fnc.khmingcheng')"
class="w135 _border_b_1">
<el-option v-for='item in ClientAccountList' :label='item.Name' :value='item.ID' :key='item.ID'>
</el-option>
</el-select>
</template>
<!-- <template v-if="(msg.IsPublic==2||msg.IsPublic==3)&&msg.IsLeader==1">
<el-input v-model='msg.RemitterName' :placeholder="$t('system.ph_name')" class="w135 _border_b_1">
</el-input>
</template> -->
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button class="hollowFixedBtn" @click="PaymentSync=false">{{$t('pub.cancelBtn')}}</el-button>
<el-button class="normalBtn" type="primary" @click="handlingSurePayment" :loading="transTax.loading">{{$t('pub.sureBtn')}}</el-button>
</div>
</el-dialog>
<el-dialog title="预付款冲抵" width="860px" :visible.sync="yfcdState" center>
<el-form class="cdForm" label-width="90px">
......@@ -1410,8 +1450,11 @@ export default {
transTax: {
FrId: 0,
Fee: "0.0",
loading: false
}
loading: false,
ClientType:'',
ClientID:''
},
PaymentSync: false
};
},
created() {
......@@ -2124,6 +2167,16 @@ export default {
err => {}
);
},
GetClientAccountList(i) { //获取客户名称并且根据费用类型和付款对象获取客户账号
this.msg.AccountNumber = '';
this.transTax.ClientID = ''
this.ClientTypeList.forEach(x => {
if (x.ID == i) {
this.msg.RemitterName = x.Name;
this.financeinfo_post_GetClientAccountList(this.transTax.ClientType);
}
})
},
financeinfo_post_GetClientAccountList(t) {
// 获取对象类型
let msg = {
......@@ -2572,12 +2625,47 @@ export default {
err => {}
);
},
showTranTax(fid) {
console.log(fid);
// 确定付款对象
handlingSurePayment(){
if (this.transTax.loading) return;
this.transTax.loading = true;
if (this.transTax.ClientType && this.transTax.ClientType != "" && this.transTax.ClientID && this.transTax.ClientID != "") {
this.apipost(
"Financial_post_UpdateFinancePayClient",
{ FrId: this.transTax.FrId, ClientType: this.transTax.ClientType, ClientID: this.transTax.ClientID},
res => {
if (res.data.resultCode == 1) {
this.Success("修改成功");
this.msg.RemitterName = ''
this.getPageList();
this.PaymentSync = false;
this.transTax.FrId = ''
this.transTax.ClientType = ''
this.transTax.ClientID = ''
}
this.transTax.loading = false;
},
err => {
this.transTax.loading = false;
}
);
} else {
this.transTax.loading = false;
this.Error("请选择付款对象");
}
},
showTranTax(fid,type) {
this.transTax.FrId = fid;
this.transTax.Fee = "0.00";
this.transTax.loading = false;
this.transactionTax = true;
if(type==1){
this.transTax.Fee = "0.00";
this.transactionTax = true;
}else{
this.transTax.ClientType = ''
this.transTax.ClientID = ''
this.PaymentSync = true
}
},
saveTransTaxMoney() {
if (this.transTax.loading) return;
......
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