| 日期 | 司機 | 營業員 |
{{ $sales->name }}
{{ $sales->phone_no }} |
付款方式 | {{ $invoice->payment_method }} |
| 貨品編號 | 貨品名稱 | 單位 | 價格($) | 數量 | 合計($) | @foreach ($invoiceItem as $item)
|---|---|---|---|---|---|
| {{ $item->inventory_no }} | {{ $item->name }} {{ $item->spec }} | {{ $item->unit }} | ${{ $item->selling_price }} | {{ $item->quantity }} | {{ $item->total_price }} |
| 原價 | ${{ number_format($invoice->all_items_total_price,2)}} | ||||
| 折扣 | {{ $invoice->discount }}% | ||||
| {{ $invoice->deduct_reason }} | -${{ number_format($invoice->deduct,2) }} | ||||
| {{ $invoice->add_reason }} | ${{ number_format($invoice->add_lump_sum,2) }} | ||||
| 總共 | ${{ $invoice->lump_sum }} | ||||