@if($ref->issued || $ref->shipped) {{-- 出荷指示書発行済 #C28 / 出荷済 #C18 --}}
@else
@endif
{{-- 得意先データの保管|荷送人・同封伝票のデフォルト値として使用 --}}
@if($ref->issued) {{-- 出荷指示書発行済 #C28 --}}
@else
@endif
@php($disabled = (old('delivery_id', $order->delivery_id) == ''))
@php($hidden = Enum::match('SenderType.Specified', old('sender_type', $order->sender_type))? '': 'hidden')
@if($ref->shipped) {{-- 出荷済 #C18 --}}
@else
@endif
| 小計 | @php($value = (old('subtotal_standard', $order->subtotal_standard) ?? 0) + (old('subtotal_reduced', $order->subtotal_reduced) ?? 0) + (old('subtotal_exempt', $order->subtotal_exempt) ?? 0)) {{num_format($value)}} |
|---|---|
| 消費税(8%) | @php($value = old('tax_amount_reduced', $order->tax_amount_reduced) ?? 0) {{num_format($value)}} |
| 消費税(10%) | @php($value = old('tax_amount_standard', $order->tax_amount_standard) ?? 0) {{num_format($value)}} |
| 合計 | @php($value = (old('total_standard', $order->total_standard) ?? 0) + (old('total_reduced', $order->total_reduced) ?? 0) + (old('total_exempt', $order->total_exempt) ?? 0)) {{num_format($value)}} |