Files
OMS/app/finance/view/settlement/verification_relation_detail.html
2026-01-04 19:08:31 +08:00

51 lines
1.6 KiB
HTML

<!--
Copyright 2012-2026 ShopeX (https://www.shopex.cn)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<div class="tableform">
<div class="division">
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td > 单据编号 </td>
<td > 业务订单号 </td>
<td > 关联应收/应退单据号 </td>
<td > 核销费用金额 </td>
<td > 核销方式 </td>
<td > 核销类型 </td>
<td > 备注 </td>
</tr>
<{foreach from=$list item=item}>
<tr>
<td><{$item.bill_bn}></td>
<td><{$item.order_bn}></td>
<td><{$item.ar_bn}></td>
<td><{$item.money|cur}></td>
<td><{if $item.auto_flag}> 自动 <{else}> 人工核销 <{/if}> </td>
<td><{if $item.verification_status == 1}> 正常核销 <{elseif $item.verification_status == 2}> 差异核销 <{else}> 强制核销 <{/if}> </td>
<td><{$item.memo}></td>
</tr>
<{/foreach}>
</tbody>
</table>
</div> </div>