Commit 8305891a authored by liudong1993's avatar liudong1993

1报账支持多币种

parent 4aab8746
......@@ -66,7 +66,7 @@
<div v-show="tableShow1" class="sanjiao-box _padding_20_15">
<div v-if="IsFinancePermission">
<span class="cd_btn" @click="sureAccount()">对账确认 &nbsp;&nbsp;</span>
<span class="cd_btn" @click="advanceToExcel()">导出Excel</span>
<!-- <span class="cd_btn" @click="advanceToExcel()">导出Excel</span> -->
</div>
<table border="1" class="czBillModule _border_color_b Receipt_table" bordercolor="#c94052" style="border-collapse:collapse;width: 100%;" v-loading='loading'>
<tr>
......
......@@ -1218,7 +1218,8 @@
<td colspan="12">暂无数据</td>
</tr>
</table>
<div slot="footer" class="dialog-footer">
<input type="checkbox" v-model="isNotCurrency"><span style="color:dodgerblue; font-size: 10px;">使用其他币种(将使用系统实时汇率)</span>
<div slot="footer" class="dialog-footer">
<button class="hollowFixedBtn" @click="cdState1=false">{{$t('pub.cancelBtn')}}</button>
<button class="normalBtn" type="primary" @click="goUrlfk">{{$t('pub.sureBtn')}}</button>
</div>
......@@ -1359,6 +1360,7 @@
noEditRate: true
},
checkList1: [],
isNotCurrency: false,
cdState1: false,
fzMsg: {
FinanceId: '',
......@@ -1464,7 +1466,13 @@
let arr = [];
that.fkZDmsg.ReFinanceId = this.checkList1[0].FinanceId;
that.fkZDmsg.Rate = this.checkList1[0].Rate;
if(this.isNotCurrency)
{
that.fkZDmsg.Rate=0;
}
else {
that.fkZDmsg.Rate = this.checkList1[0].Rate;
}
var msg = JSON.stringify(that.fkZDmsg);
let 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