Report Summary |
Start Date | : | @if(isset($data->startDate)) {{$Controller::dateFormatter($data->startDate)}} @endif | End Date | : | @if(isset($data->endDate)) {{$Controller::dateFormatter($data->endDate)}} @endif |
Total Sale | : | @if(isset($data->totalSaleSum)) {{number_format($data->totalSaleSum, 2)}} @endif |
Total Discount | : | @if(isset($data->totalDiscountAmountSum)) {{number_format((-1 * $data->totalDiscountAmountSum), 2)}} @endif |
Total Refund | : | @if(isset($data->totalRefundAmount)) {{number_format($data->totalRefundAmount, 2)}} @endif |
Total Net Amount | : | @if(isset($data->totalNetSaleSum)) {{number_format(($data->totalNetSaleSum - $data->totalRefundAmount), 2)}} @endif |
@if($data->type != null) {{(optional($data)->type)}} @if($data->investigationCategoryName != null) ({{optional($data)->investigationCategoryName}}) @else @if($data->investigationDepartmentName != null) ({{$data->investigationDepartmentName}}) @endif @endif Sales Report @endif |
SL | Service Name | Total Qty | Free Qty | Net Qty | Unit Price | Total Sale | Discount | Total Net Sale |
{{$index + 1}} | {{$req->name}} | {{$req->totalQuantity}} | {{$req->freeQuantity}} | {{$req->netQuantity}} | {{number_format($req->unitPrice, 2), 2}} | {{number_format($req->totalSale, 2), 2}} | {{number_format($req->discountAmount, 2), 2}} | {{number_format($req->totalNetSale, 2), 2}} |
Total = | {{$totalQuantity}} | {{$freeQuantity}} | {{$netQuantity}} | {{number_format($unitPrice, 2), 2}} | {{number_format($totalSale, 2), 2}} | {{number_format($discountAmount, 2), 2}} | {{number_format($totalNetSale, 2), 2}} |