Commit a88d7be8 authored by 吴春's avatar 吴春

发票下载

parent 7d8a5b3a
......@@ -167,6 +167,11 @@
class="hollowFixedBtn"
@click="resetPageIndex()"
>{{$t('pub.searchBtn')}}</button>
<button
class="hollowFixedBtn"
@click="exportExcel()"
>{{$t('visa.v_daochu')}}</button>
<!-- <button
class="normalBtn"
@click="goUrlAdd('invoicesManagerAdd')"
......@@ -358,6 +363,21 @@ export default {
}).catch(() => {
});
},
exportExcel: function () {
if (this.msg.OrderId === '') {
this.msg.OrderId = 0
}
let msgInfo =this.msg;
msgInfo.EmployeeId=this.getLocalStorage().EmployeeId
console.log("msgInfo",msgInfo);
this.GetLocalFile(
"InvoiceApply_get_OutTravelInvoiceApplyExport",
msgInfo,
"发票申请信息.xls"
);
},
UpdateInvoiceApplyMoney: function () {
if (this.UpdateApplyMoney.ApplyMoney==''||this.UpdateApplyMoney.ApplyMoney<=0) {
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