This commit is contained in:
王思川 2024-05-10 16:59:57 +08:00
parent f3d3c648d7
commit 8778d37c31
1 changed files with 35 additions and 1 deletions

View File

@ -534,7 +534,7 @@
<td>8%</td> <!-- 成本费率 --> <td>8%</td> <!-- 成本费率 -->
<td>40,000.00</td> <!-- 成本 --> <td>40,000.00</td> <!-- 成本 -->
<td>10,000.00</td> <!-- 净收入 --> <td>10,000.00</td> <!-- 净收入 -->
<td>500,000.00</td> <!-- 价税合计金额 --> <td><a href="#" data-bs-toggle="modal" data-bs-target="#invoiceModal">500,000.00</a></td> <!-- 价税合计金额 -->
<td>250,000.00</td> <!-- 回款金额 --> <td>250,000.00</td> <!-- 回款金额 -->
<td>50,000.00</td> <!-- 应收净收入 --> <td>50,000.00</td> <!-- 应收净收入 -->
<td>25,000.00</td> <!-- 实收净收入 --> <td>25,000.00</td> <!-- 实收净收入 -->
@ -720,6 +720,40 @@
</section> </section>
<!-- [ 主内容页 ] 结束 --> <!-- [ 主内容页 ] 结束 -->
<!-- [ 价税合计金额 模态框 ] 开始 -->
<div class="modal fade" id="invoiceModal" tabindex="-1" role="dialog" aria-labelledby="invoiceModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="invoiceModalLabel">开票记录</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<!-- 这里放置表格内容 -->
<table class="table">
<thead>
<tr>
<th>性质</th>
<th>发票号码</th>
<th>开票时间</th>
<th>价税合计金额</th>
</tr>
</thead>
<tbody>
<!-- 表格数据填充位置 -->
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">关闭</button>
</div>
</div>
</div>
</div>
<!-- [ 价税合计金额 模态框 ] 结束 -->
</body> </body>
<!-- 必备 Js --> <!-- 必备 Js -->