Report Summary |
Start Date | : | @if(isset($data->response->startDate)) {{$Controller::dateFormatter($data->response->startDate)}} @endif | End Date | : | @if(isset($data->response->endDate)) {{$Controller::dateFormatter($data->response->startDate)}} @endif |
Total Sale | : | @if(isset($data->response->totalSaleSum)) {{number_format($data->response->totalSaleSum, 2)}} @endif |
Total Discount | : | @if(isset($data->response->totalDiscountAmountSum)) {{number_format((-1 * $data->response->totalDiscountAmountSum), 2)}} @endif |
Total Refund | : | @if(isset($data->response->totalRefundAmount)) {{number_format($data->response->totalRefundAmount, 2)}} @endif |
Total Net Amount | : | @if(isset($data->response->totalNetSaleSum)) {{number_format(($data->response->totalNetSaleSum - $data->response->totalRefundAmount), 2)}} @endif |
{{-- {{$data->type}} Wise Report- {{$data->heading}} --}} @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- {{$data->heading}}--}} Sales Report @endif |
{{$data->type}} Wise Report- {{$data->heading}} | --}} {{--||||||||
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}} |