LARAVEL:税额未出现在退货发票收据中,但出现在销售发票中

问题描述

税额未出现在退回发票收据中,但出现在销售发票中。这是发票文件中我的税额代码

@if(!empty($receipt_details->group_tax_details))
@foreach($receipt_details->group_tax_details as $key => $value)
<tr class="color-555">
<td>
{!! $key !!}
</td>
<td class="text-right">
(+) {{$value}}
</td>
</tr>
@endforeach
@else
@if( !empty($receipt_details->tax) )
<tr class="color-555">
<td>
{!! $receipt_details->tax_label !!}
</td>
<td class="text-right">
(+) {{$receipt_details->tax}}
</td>
</tr>
@endif
@endif

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)