Path : /var/www/html/jewelry-pos/resources/views/reports/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/jewelry-pos/resources/views/reports/adjustment-report.blade.php |
@extends('layouts.admin-main') @section('content') <div class="col-lg-12"> <div class="card-body shadow-1"> <form method="GET" action="{{ route('adjustment-report.index') }}" id="search-form" onsubmit=""> <div class="row" style=""> <div class="col-md-4 col-xs-12 col-sm-4 col-xl-3 mb-4"> <div class="input-group"> <input type="text" class="form-control rounded-0" placeholder="{{ __('message.select') }}" id="datepicker" name="date" readonly> <input type="hidden" name="paginate" value="{{$paginate}}"> <div class="input-group-append"> <span class="input-group-text fs-xl"> <i class="fal fa-calendar text-info "></i> </span> </div> </div> </div> <div class="col-xs-12 col-sm-8 col-md-8 col-xl-8 d-flex mb-4"> <form method="GET" class="" action="{{route('adjustment-report.index')}}?start_date={{$start_date}}&end_date={{$end_date}}&paginate={{$paginate}}" style="display: flex;justify-content: space-between;align-items: center;width: 100%"> <div class="input-group" style="width: 100%;height: fit-content;"> <input type="text" class="form-control rounded-0" placeholder="{{ __('message.search') }} ..." value="{{$search}}" name="search" id="search"> <div class="input-group-append"> <button type="submit" id="searches" class="input-group-text fs-xl "> <i class="fal fa-search text-success"></i> </button> </div> </div> <select class="select2 form-control w-100 ml-4" id="product_category_id" name="product_category_id" onchange="submit()"> <option value="0">{{__('message.selected all')}}</option> @foreach($main_categories as $main) <option value="{{$main->id}}" style="font-weight: bold;font-size: 14px" @if($main->id == $product_category_id) selected @endif>{{$main->name}}</option> @foreach($main->children as $child) <option value="{{$child->id}}" @if($child->id == $product_category_id) selected @endif> {{$child->name}}</option> @endforeach @endforeach <option value="-100" @if($product_category_id == -100) selected @endif style="font-weight: bold;font-size: 14px">{{__('message.not for sale')}}</option> </select> {{-- @if($product_category_id)--}} {{-- @if($productCategory->name == $platinume_Category->name || $productCategory->parent?->name == $platinume_Category->name)--}} {{-- <div class="ml-2" style="width: 60%;">--}} {{-- <select class="form-control" name="check_fixed_price" onchange="this.form.submit();">--}} {{-- <option value="-1">{{__('message.selected all')}}</option>--}} {{-- <option value="1" @if($check_fixed_price==1) selected @endif>{{__('message.fixed price')}}</option>--}} {{-- <option value="2" @if($check_fixed_price==2) selected @endif>{{__('message.not fixed price')}}</option>--}} {{-- </select>--}} {{-- </div>--}} {{-- @endif--}} {{-- @endif--}} <a href="{{route('adjustment-report.print')}}?start_date={{$start_date}}&end_date={{$end_date}}&search={{$search}}&product_category_id={{$product_category_id}}&check_fixed_price={{$check_fixed_price}}" type="submit" class="btn btn-info bg-info-800 float-center rounded-0 ml-2" style="width: 30%;" title="{{ __('message.print') }}" name=""> <i class="fal fa-print"></i> {{ __('message.print') }} </a> </form> </div> </div> </form> <div class="panel-container show table-responsive"> <div class="d-flex flex-column h-100"> <div class="h-auto"> <table id="example" class="table table-striped w-100"> <thead class="bg-fusion-400 text-center"> <tr> <th>#</th> <th>{{__('message.grn')}}</th> <th>{{__('message.part number')}}</th> <th>{{__('message.product category')}}</th> <th class="text-center">{{ __('message.product name') }}</th> <th>{{__('message.sales price')}}</th> <th>{{__('message.qty')}}</th> <th>{{__('message.gold weight')}}</th> <th>{{__('message.date')}}</th> </tr> </thead> <tbody id="accordionExample"> @foreach($productQtyHistories as $index => $productQtyHistory) <tr class="text-center border-bottom @if($productQtyHistory->qty<0) inactive @endif {{+$loop->index%2!=$productQtyHistory->count()?'border-top':''}}" data-toggle="collapse" href="#row{{$loop->index}}" role="button" aria-expanded="false" aria-controls="row{{$loop->index}}"> <td> {{$index+1}} </td> <td> {{$productQtyHistory->grn??''}} </td> <td> {{$productQtyHistory->product->part_number??''}} </td> <td> {{$productQtyHistory->product->productCategory->name??''}} </td> <td> {{$productQtyHistory->product->name??''}} </td> <td class="credit"> {{number_format($productQtyHistory->product?->sellingPrice($productQtyHistory->goldWeight())??0 , 2)}} {{$currency_->currency_symbol}} </td> <td class="credit"> {{$productQtyHistory->qty}} </td> <td> @if($productQtyHistory->weight) {{number_format($productQtyHistory->goldWeight()??0 ,2)}} @else {{number_format($productQtyHistory->product?->goldWeight()??0 ,2)}} @endif </td> <td> {{$productQtyHistory->created_at->format('d-m-Y H:i')}} </td> </tr> <tr class="bg-white"> <td colspan="11"> <div class="collapse multi-collapse" id="row{{$loop->index}}" data-parent="#accordionExample"> <div class="panel-content"> <ul class="nav nav-tabs" role="tablist"> <li class="nav-item"> <a class="nav-link active" data-toggle="tab" href="#detail{{$loop->index}}" role="tab">{{__('message.detail')}}</a> </li> @if($productQtyHistory->product->diamond_size??'') <li class="nav-item"><a class="nav-link" data-toggle="tab" href="#diamond_size{{$loop->index}}" role="tab">{{__('message.diamond size')}}</a></li> @endif </ul> <div class="tab-content border-top-0 p-3" style="border:1px solid #dee2e6!important; border-top:none !important;"> <div class="tab-pane fade show active" id="detail{{$loop->index}}" role="tabpanel"> <div class=""> <div class="card-body"> <div class="row"> <div class="col-3"> @if($productQtyHistory->product->image??'') <img class="rounded" id="myImg{{$index}}" src="{{asset($productQtyHistory->product->image)}}" style="width:200px;max-width:300px;cursor:pointer;"> @else <img class="rounded" id="myImg{{$index}}" src="{{asset('no_image.png')}}" style="width:200px;max-width:300px;cursor:pointer;"> @endif </div> <div class="col-xs-4 col-sm-6 col-md-6 col-xl-3"> <div class="row mb-3"> <div class="col-6"> <p class="fw-bolder credit text-left"> {{__('message.cost')}} </p> </div> <div class="col-6 text-left">: @if($productQtyHistory->for_sale == 0 && $productQtyHistory->product_cost) {{number_format($productQtyHistory->product_cost??0 , 2)}} {{$currency_->currency_symbol}} @else {{number_format($productQtyHistory->product?->sellingCost()??0 , 2)}} {{$currency_->currency_symbol}} @endif </div> </div> <div class="row mb-3"> <div class="col-6"> <p class="fw-bolder credit text-left"> {{__('message.wages')}} {{$productQtyHistory->product?->productCategory?->fixed_price??''||$productQtyHistory->product?->fixed_price?'':'(គិតជាលី)'}} </p> </div> <div class="col-6 text-left credit">: {{number_format($productQtyHistory->product?->selling_wagesInWeight()??0 , 2)}} {{$currency_->currency_symbol}} </div> </div> <div class="row mb-3"> <div class="col-6"> <p class="fw-bolder credit text-left"> {{__('message.original wages')}} {{$productQtyHistory->product?->productCategory?->fixed_price??''||$productQtyHistory->product?->fixed_price??''?'':'(គិតជាលី)'}} </p> </div> <div class="col-6 text-left credit">: {{number_format($productQtyHistory->product?->cost_wagesInWeight()??0 , 2)}} {{$currency_->currency_symbol}} </div> </div> <div class="row mb-3"> <div class="col-6"> <p class="fw-bolder credit text-left"> {{__('message.weight')}} </p> </div> <div class="col-6 text-left">: @if($productQtyHistory->weight) {{number_format($productQtyHistory->weight??0 ,2)}} @else {{number_format($productQtyHistory->product?->weight??0 ,2)}} @endif </div> </div> </div> <div class="col-xs-8 col-sm-6 col-md-6 col-xl-4"> <div class="row mb-3"> <div class="col-6"> <p class="fw-bolder credit text-left"> {{__('message.note')}} </p> </div> <div class="col-6 text-left">: {{$productQtyHistory->note??''}} </div> </div> <div class="row mb-3"> <div class="col-6"> <p class="fw-bolder credit text-left"> {{__('message.user')}} </p> </div> <div class="col-6 text-left">: <a href="{{route('users.show' , $productQtyHistory->user_id)}}" class="text-dark" title="{{__('message.show user')}}"> {{$productQtyHistory->user->name??''}} </a> </div> </div> <div class="row mb-3"> <div class="col-6"> <p class="fw-bolder credit text-left"> {{__('message.original invoice')}} </p> </div> <div class="col-6 text-left">: {{$productQtyHistory->product?->original_invoice??''}} </div> </div> </div> </div> </div> </div> </div> <div class="tab-pane fade text-left" id="diamond_size{{$loop->index}}" role="tabpanel"> {!!$productQtyHistory->product->diamond_size??''!!} </div> </div> </div> </div> </td> </tr> @endforeach </tbody> </table> </div> </div> </div> @if($productQtyHistories->hasPages()) <div class="d-flex m-2 p-2" style="justify-content: space-between;align-items: start;width: 20%"> <select id="paginate" name="paginate" class="form-select text-center rounded mr-2 mt-1" aria-label="Default select example" style="width: 90px;font-size: 12px;border: 1px solid rebeccapurple"> <option selected hidden="hidden">{{$paginate}}</option> <option value="25">25</option> <option value="50">50</option> <option value="100">100</option> <option value="250">250</option> <option value="500">500</option> <option value="1000">1000</option> </select> <div class=""> {{ $productQtyHistories->appends($_GET)->links() }} </div> </div> @endif </div> <div class="col-lg-12 fixed-bottom" style="position: relative;margin-bottom: 0;padding: 0;z-index: 0"> <div class="card-body shadow-lg" style="display: flex;justify-content: end;align-items: center"> <div class="panel-container show table-responsive" style="width: 100%;"> <div class="d-flex flex-column h-100"> <div class="h-auto"> <table class="table table-striped w-100" style="font-size: 14px !important;"> <thead class="bg-fusion-50 text-center" style="background-color: rgba(119,136,153,0.62) !important;"> {{-- <tr class="">--}} {{-- <th style="font-weight: bold;background-color: #035860">{{__('message.total sale price')}}</th>--}} {{-- <th style="font-weight: bold;background-color: #534605">{{__('message.total cost')}}</th>--}} {{-- <th style="font-weight: bold;background-color: #2d5703">{{__('message.total cost of sale')}}</th>--}} {{-- <th style="font-weight: bold;background-color: #025340">{{__('message.total wages sale')}}</th>--}} {{-- <th style="font-weight: bold;background-color: #420d65">{{__('message.total original wage')}}</th>--}} {{-- <th style="font-weight: bold;background-color: #5a023e">{{__('message.total discount')}}</th>--}} {{-- <th style="font-weight: bold;background-color: #602e02">{{__('message.total price')}}</th>--}} {{-- <th style="font-weight: bold;background-color: #3c5903">{{__('message.total sale product')}}</th>--}} {{-- <th style="font-weight: bold;background-color: #063168">{{__('message.total profit')}}</th>--}} {{-- </tr>--}} </thead> <tbody> {{-- <tr class="border-bottom text-center" style="background-color: #efe9e9 !important;">--}} {{-- <td class="credit">--}} {{-- {{$currency_->currency_symbol}} {{number_format($total_sale_price+$total_sale_discount , 2)}}--}} {{-- </td>--}} {{-- <td class="credit">{{$currency_->currency_symbol}} {{number_format($total_sale_cost,2)}}</td>--}} {{-- <td class="credit">{{$currency_->currency_symbol}} {{number_format($total_cost_of_sale,2)}}</td>--}} {{-- <td class="credit">{{$currency_->currency_symbol}} {{number_format($total_sale_wage,2)}}</td>--}} {{-- <td class="credit">{{$currency_->currency_symbol}} {{number_format($total_sale_original_wage,2)}}</td>--}} {{-- <td class="credit">{{$currency_->currency_symbol}} {{number_format($total_sale_discount, 2)}}</td>--}} {{-- <td class="credit">--}} {{-- {{$currency_->currency_symbol}} {{number_format($total_sale_price, 2)}}--}} {{-- </td>--}} {{-- <td class="credit">--}} {{-- {{$currency_->currency_symbol}} {{number_format(($total_sale_price+$total_sale_discount)-$total_sale_wage , 2)}}--}} {{-- </td>--}} {{-- <td class="credit">{{$currency_->currency_symbol}} {{ number_format($total_sale_profit, 2) }}</td>--}} {{-- </tr>--}} </tbody> </table> </div> </div> </div> </div> </div> </div> @endsection @section('scripts') @include('app.datepicker-js-config') <script> $(document).ready(function() { $(".ranges > ul > li").click(function() { setTimeout(function() { $('#search-form').submit(); }, 100); }); $("#datepicker").on("change.dp" , function (){ $("#search-form").submit(); }); }); var runDatePicker = function() { $('#datepicker').datepicker({ todayBtn: "linked", clearBtn: true, todayHighlight: true, templates: controls }); } </script> <script> $(document).ready(function() { $("#js-nav-menu").removeClass('active'); $("#js-nav-menu li ul li").removeClass('active'); $("#menu_report_list").addClass('active open'); $("#collapse_report").addClass('collapse in') $("#menu_adjustment_report").addClass('active') }) </script> @endsection @section('meta') <title>{{ __('message.adjustment report') }} - {{$settings_->shop_name}}</title> @endsection