@extends('layouts.admin') @section('title', 'Transaction Detail Report') @section('content-header', 'Transaction Detail Report') @section('content')
@if($toDate)
POS Transactions {{ $title }} || {{ $fromDate }} to {{ $toDate }}@elsePOS Transactions {{ $title }} || {{ $fromDate }}@endif |
|||||||||||||||||
Type | Counter Register No. | Date || Time | SKU Code || Description | Sub Total | Total Voucher | Overall Receipt Price | Overall Item Price | Sell Price | Tax Amount | Quantity | Amount | Rounding Amount | Pay Amount | Discount Amount | Media Type | Status | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{$receipt[0]->receipt_no}} || {{$order}} | @if($receipt[0]->cancel_flag == 1)CANCELLED | @php $cancel_count++; @endphp @elseSUCCESS | @endif{{ $type }} | {{ $detail->reg }} | {{ $detail->c_dd }} | {{ $detail->sku_id }} {{$detail->sku_desc}} | {{ $detail->sub_total }} | {{ $detail->voucheramt ?? 0}} | {{ $detail->sub_total + $detail->voucheramt}} | {{ number_format($detail->sell_price,2)}} | {{ number_format($detail->sell_price - $detail->tax_amt,2)}} | {{ number_format($detail->tax_amt,2) }} | {{ $detail->quantity }} | {{ $detail->amt }} | {{ $detail->rounding }} | {{ $detail->pay_amt }} | {{ $detail->disc_amt }} | {{ $detail->media_type }} | @endforeach @endforeach
Branch Net Sale (RM) | {{ number_format( $net_sales, 2) }} | ||||||||||||||||
Total Discount (RM) | {{ $receipt_data2->disc }} | ||||||||||||||||
Total Tissue (RM) | {{ number_format( $tissue, 2) }} | ||||||||||||||||
Total Cutlery (RM) | {{ number_format( $cutlery, 2) }} | ||||||||||||||||
Total Plastic (RM) | {{ number_format( $plastic, 2) }} | ||||||||||||||||
Total Tax (RM) | {{ number_format( $taxdata->tax, 2) }} | ||||||||||||||||
Grand Total (RM) | {{ number_format( $net_sales + $taxdata->tax + $plastic + $cutlery + $tissue,2) }} | ||||||||||||||||
Total Item Quantity | {{ $receipt_data2->quantity}} | ||||||||||||||||
Total Tissue (Quantity) | {{ $receipt_data2->tissue ?? 0 }} | ||||||||||||||||
Total Cutlery (Quantity) | {{ $receipt_data2->cutlery ?? 0 }} | ||||||||||||||||
Total Plastic (Quantity) | {{ $receipt_data2->plastic ?? 0 }} | ||||||||||||||||
Total Receipt | {{ $count}} | ||||||||||||||||
Total Cancelled Receipt | {{ $cancel_count }} |