Commit 01a35de3 authored by 华国豪's avatar 华国豪 🙄

1

parent d5f3e0c3
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
</table> </table>
<table class="leaderReimbursementTable" border="0" cellspacing="1" cellpadding="0"> <table class="leaderReimbursementTable" border="0" cellspacing="1" cellpadding="0">
<tr> <tr>
<th colspan="15" class="bgwhite">车辆使用</th> <th colspan="16" class="bgwhite">车辆使用</th>
</tr> </tr>
<tr class="title"> <tr class="title">
<th width="100">使用时间</th> <th width="100">使用时间</th>
...@@ -55,6 +55,7 @@ ...@@ -55,6 +55,7 @@
<th width="60">总金额</th> <th width="60">总金额</th>
<th width="100">备注</th> <th width="100">备注</th>
<th width="60">凭证</th> <th width="60">凭证</th>
<th width="60">供应商</th>
</tr> </tr>
<tr v-for='(item,index) in list.BusList'> <tr v-for='(item,index) in list.BusList'>
<td>{{item.PlanDateStr}}</td> <td>{{item.PlanDateStr}}</td>
...@@ -115,11 +116,16 @@ ...@@ -115,11 +116,16 @@
</p> </p>
</div> </div>
</td> </td>
<td>
<span v-if="item.SupplierPayType !== 0">
<span>{{item.SupplierName}} <span :style="{'color': item.SupplierPayType == 2 ? '#E95252': '#111111'}">{{item.SupplierPayType == 2 ? '签单' : '现付'}}</span></span>
</span>
</td>
</tr> </tr>
<tr v-if="TotalNav.reimburseTotalPrice"> <tr v-if="TotalNav.reimburseTotalPrice">
<td>总金额</td> <td>总金额</td>
<td colspan="14"> <td colspan="15">
{{moneyFormat(TotalNav.reimburseTotalPrice.SelfPayingExpendTotalPrice)}} <span v-for="item in TotalNav.busPrice">{{item.Str + ':' +item.TotalPrice}} &nbsp;&nbsp;&nbsp;&nbsp;</span>
</td> </td>
<!-- <td>签单/预付/抵扣总金额</td> <!-- <td>签单/预付/抵扣总金额</td>
<td colspan="7"> <td colspan="7">
...@@ -129,7 +135,7 @@ ...@@ -129,7 +135,7 @@
</table> </table>
<table class="leaderReimbursementTable" border="0" cellspacing="1" cellpadding="0"> <table class="leaderReimbursementTable" border="0" cellspacing="1" cellpadding="0">
<tr> <tr>
<th colspan="15" class="bgwhite">酒店使用</th> <th colspan="16" class="bgwhite">酒店使用</th>
</tr> </tr>
<tr class="title"> <tr class="title">
<th width="100">使用时间</th> <th width="100">使用时间</th>
...@@ -147,6 +153,7 @@ ...@@ -147,6 +153,7 @@
<th width="">总金额</th> <th width="">总金额</th>
<th width="">付款方式</th> <th width="">付款方式</th>
<th width="100">备注</th> <th width="100">备注</th>
<th width="100">供应商</th>
</tr> </tr>
<template v-for='(outItem,outIndex) in list.HotelOrderListReport'> <template v-for='(outItem,outIndex) in list.HotelOrderListReport'>
<template v-for="(subItem,subIndex) in outItem.HotelOrderList"> <template v-for="(subItem,subIndex) in outItem.HotelOrderList">
...@@ -216,6 +223,11 @@ ...@@ -216,6 +223,11 @@
<td v-if="childIndex==0" :rowspan="5"> <td v-if="childIndex==0" :rowspan="5">
{{subItem.Remarks}} {{subItem.Remarks}}
</td> </td>
<td>
<span v-if="subItem.SupplierPayType !== 0">
<span>{{subItem.SupplierName}} <span :style="{'color': subItem.SupplierPayType == 2 ? '#E95252': '#111111'}">{{subItem.SupplierPayType == 2 ? '签单' : '现付'}}</span></span>
</span>
</td>
</tr> </tr>
</template> </template>
</template> </template>
......
...@@ -141,7 +141,7 @@ ...@@ -141,7 +141,7 @@
<!-- style="display:none;" --> <!-- style="display:none;" -->
<div > <div >
<p style="cursor: pointer;color:blue;" @click="CreateBill(item.ShopDetailsList)">生成单据</p> <p style="cursor: pointer;color:blue;" @click="CreateBill(item.ShopDetailsList)">生成单据</p>
<p style="cursor: pointer;color:blue;" @click="CreateHandBill(outItem)">手动生成单据</p> <p style="cursor: pointer;color:blue;margin-top:10px;" @click="CreateHandBill(outItem)">手动生成单据</p>
</div> </div>
</td> </td>
......
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