门店对账单
对账单号:{{ $statement->statement_no }} 门店:{{ $storeName }}
对账周期:{{ $statement->period_start?->format('Y-m-d') }} 至 {{ $statement->period_end?->format('Y-m-d') }} 回款周期:{{ $statement->payment_cycle_days }} 天 应结算日期:{{ $statement->settlement_date?->format('Y-m-d') }}
品名
单价
数量
重量
金额
对账状态
备注
@foreach ($items as $item)
{{ $item->product_name }}
{{ $item->price }}
{{ $item->quantity }}
{{ $item->weight }}
{{ $item->amount }}
{{ $item->is_reconciled ? '已对账' : '未对账' }}
{{ $item->store_remark }}
@endforeach
合计金额
¥{{ $statement->total_amount }}