|
@@ -11,12 +11,12 @@
|
|
|
<div style="text-align: center; font-size: 18px; padding-bottom: 8px">( 对账时间: {{ rowData.createTime }} )</div> -->
|
|
|
<table class="tableOne" border="0" cellpadding="0" cellspacing="0">
|
|
|
<tr>
|
|
|
- <th colspan="20" style="border-right: 0; border-top: 0">
|
|
|
+ <th colspan="21" style="border-right: 0; border-top: 0">
|
|
|
<div style="text-align: center; font-size: 30px; padding: 8px">{{ rowData.subsidiaryName }}-胜德体育对账单</div>
|
|
|
</th>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
- <th colspan="20" style="border-bottom: 1px solid black; border-right: 0">
|
|
|
+ <th colspan="21" style="border-bottom: 1px solid black; border-right: 0">
|
|
|
<div style="text-align: center; font-size: 18px; padding-bottom: 8px">
|
|
|
( 对账时间: {{ rowData.reconciliationStartTime }} - {{ rowData.reconciliationEndTime }} )
|
|
|
</div>
|
|
@@ -38,6 +38,7 @@
|
|
|
<th style="width: 65px">代发费</th>
|
|
|
<th style="width: 70px">快递包材费</th>
|
|
|
<th style="width: 70px">包装人工费</th>
|
|
|
+ <th style="width: 70px">管理费</th>
|
|
|
<th style="width: 80px">SKU单价</th>
|
|
|
<th style="width: 80px">小计</th>
|
|
|
<th style="width: 80px">售后数量</th>
|
|
@@ -83,6 +84,11 @@
|
|
|
<td>
|
|
|
<span v-if="itemBom.dataResource === 1 && item.expensePrice && Number(item.expensePrice) !== 0">{{ item.expensePrice }}</span>
|
|
|
</td>
|
|
|
+ <td>
|
|
|
+ <span v-if="itemBom.dataResource === 1 && item.managementFeesPrice && Number(item.managementFeesPrice) !== 0">
|
|
|
+ {{ item.managementFeesPrice }}
|
|
|
+ </span>
|
|
|
+ </td>
|
|
|
<td v-if="indexBom === 0" :rowspan="item.bomDetails.length">
|
|
|
<span>{{ item.skuPrice }}</span>
|
|
|
</td>
|
|
@@ -104,23 +110,23 @@
|
|
|
</tbody>
|
|
|
<tr>
|
|
|
<td>总计:</td>
|
|
|
- <td colspan="18"></td>
|
|
|
+ <td colspan="19"></td>
|
|
|
<td style="border-right: 0">
|
|
|
<span>{{ getAggregate() }}</span>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>备注:</td>
|
|
|
- <td colspan="19" style="border-right: 0"></td>
|
|
|
+ <td colspan="20" style="border-right: 0"></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>交货地点:</td>
|
|
|
- <td colspan="19" style="border-right: 0"></td>
|
|
|
+ <td colspan="20" style="border-right: 0"></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td colspan="3" style="padding: 8px 4px; font-size: 16px; font-weight: 700; text-align: left; border-right: 0">申请人:</td>
|
|
|
<td colspan="5" style="padding: 8px 4px; font-size: 16px; font-weight: 700; text-align: left; border-right: 0">胜德体育总经理:</td>
|
|
|
- <td colspan="12" style="padding: 8px 4px; font-size: 16px; font-weight: 700; text-align: left; border-right: 0">申请日期:</td>
|
|
|
+ <td colspan="13" style="padding: 8px 4px; font-size: 16px; font-weight: 700; text-align: left; border-right: 0">申请日期:</td>
|
|
|
</tr>
|
|
|
</table>
|
|
|
</div>
|
|
@@ -200,6 +206,9 @@ export default {
|
|
|
if (item.expensePrice) {
|
|
|
money = parseFloat(Number(money) + Number(item.expensePrice)).toFixed(2)
|
|
|
}
|
|
|
+ if (item.managementFeesPrice) {
|
|
|
+ money = parseFloat(Number(money) + Number(item.managementFeesPrice)).toFixed(2)
|
|
|
+ }
|
|
|
} else {
|
|
|
if (itemBom.price) {
|
|
|
money = parseFloat(Number(money) + Number(itemBom.price)).toFixed(2)
|