Path : /var/www/html/jewelry-pos/storage/framework/views/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/jewelry-pos/storage/framework/views/0cd812c6550dceeb8ce1483656f35822.php |
<?php $__env->startSection('content'); ?> <div class="col-lg-12"> <div class="card-body shadow-1"> <form method="GET" action="<?php echo e(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="<?php echo e(__('message.select')); ?>" id="datepicker" name="date" readonly> <input type="hidden" name="paginate" value="<?php echo e($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="<?php echo e(route('adjustment-report.index')); ?>?start_date=<?php echo e($start_date); ?>&end_date=<?php echo e($end_date); ?>&paginate=<?php echo e($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="<?php echo e(__('message.search')); ?> ..." value="<?php echo e($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"><?php echo e(__('message.selected all')); ?></option> <?php $__currentLoopData = $main_categories; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $main): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($main->id); ?>" style="font-weight: bold;font-size: 14px" <?php if($main->id == $product_category_id): ?> selected <?php endif; ?>><?php echo e($main->name); ?></option> <?php $__currentLoopData = $main->children; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $child): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($child->id); ?>" <?php if($child->id == $product_category_id): ?> selected <?php endif; ?>> <?php echo e($child->name); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <option value="-100" <?php if($product_category_id == -100): ?> selected <?php endif; ?> style="font-weight: bold;font-size: 14px"><?php echo e(__('message.not for sale')); ?></option> </select> <a href="<?php echo e(route('adjustment-report.print')); ?>?start_date=<?php echo e($start_date); ?>&end_date=<?php echo e($end_date); ?>&search=<?php echo e($search); ?>&product_category_id=<?php echo e($product_category_id); ?>&check_fixed_price=<?php echo e($check_fixed_price); ?>" type="submit" class="btn btn-info bg-info-800 float-center rounded-0 ml-2" style="width: 30%;" title="<?php echo e(__('message.print')); ?>" name=""> <i class="fal fa-print"></i> <?php echo e(__('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><?php echo e(__('message.grn')); ?></th> <th><?php echo e(__('message.part number')); ?></th> <th><?php echo e(__('message.product category')); ?></th> <th class="text-center"><?php echo e(__('message.product name')); ?></th> <th><?php echo e(__('message.sales price')); ?></th> <th><?php echo e(__('message.qty')); ?></th> <th><?php echo e(__('message.gold weight')); ?></th> <th><?php echo e(__('message.date')); ?></th> </tr> </thead> <tbody id="accordionExample"> <?php $__currentLoopData = $productQtyHistories; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index => $productQtyHistory): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr class="text-center border-bottom <?php if($productQtyHistory->qty<0): ?> inactive <?php endif; ?> <?php echo e(+$loop->index%2!=$productQtyHistory->count()?'border-top':''); ?>" data-toggle="collapse" href="#row<?php echo e($loop->index); ?>" role="button" aria-expanded="false" aria-controls="row<?php echo e($loop->index); ?>"> <td> <?php echo e($index+1); ?> </td> <td> <?php echo e($productQtyHistory->grn??''); ?> </td> <td> <?php echo e($productQtyHistory->product->part_number??''); ?> </td> <td> <?php echo e($productQtyHistory->product->productCategory->name??''); ?> </td> <td> <?php echo e($productQtyHistory->product->name??''); ?> </td> <td class="credit"> <?php echo e(number_format($productQtyHistory->product?->sellingPrice($productQtyHistory->goldWeight())??0 , 2)); ?> <?php echo e($currency_->currency_symbol); ?> </td> <td class="credit"> <?php echo e($productQtyHistory->qty); ?> </td> <td> <?php if($productQtyHistory->weight): ?> <?php echo e(number_format($productQtyHistory->goldWeight()??0 ,2)); ?> <?php else: ?> <?php echo e(number_format($productQtyHistory->product?->goldWeight()??0 ,2)); ?> <?php endif; ?> </td> <td> <?php echo e($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<?php echo e($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<?php echo e($loop->index); ?>" role="tab"><?php echo e(__('message.detail')); ?></a> </li> <?php if($productQtyHistory->product->diamond_size??''): ?> <li class="nav-item"><a class="nav-link" data-toggle="tab" href="#diamond_size<?php echo e($loop->index); ?>" role="tab"><?php echo e(__('message.diamond size')); ?></a></li> <?php 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<?php echo e($loop->index); ?>" role="tabpanel"> <div class=""> <div class="card-body"> <div class="row"> <div class="col-3"> <?php if($productQtyHistory->product->image??''): ?> <img class="rounded" id="myImg<?php echo e($index); ?>" src="<?php echo e(asset($productQtyHistory->product->image)); ?>" style="width:200px;max-width:300px;cursor:pointer;"> <?php else: ?> <img class="rounded" id="myImg<?php echo e($index); ?>" src="<?php echo e(asset('no_image.png')); ?>" style="width:200px;max-width:300px;cursor:pointer;"> <?php 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"> <?php echo e(__('message.cost')); ?> </p> </div> <div class="col-6 text-left">: <?php if($productQtyHistory->for_sale == 0 && $productQtyHistory->product_cost): ?> <?php echo e(number_format($productQtyHistory->product_cost??0 , 2)); ?> <?php echo e($currency_->currency_symbol); ?> <?php else: ?> <?php echo e(number_format($productQtyHistory->product?->sellingCost()??0 , 2)); ?> <?php echo e($currency_->currency_symbol); ?> <?php endif; ?> </div> </div> <div class="row mb-3"> <div class="col-6"> <p class="fw-bolder credit text-left"> <?php echo e(__('message.wages')); ?> <?php echo e($productQtyHistory->product?->productCategory?->fixed_price??''||$productQtyHistory->product?->fixed_price?'':'(គិតជាលី)'); ?> </p> </div> <div class="col-6 text-left credit">: <?php echo e(number_format($productQtyHistory->product?->selling_wagesInWeight()??0 , 2)); ?> <?php echo e($currency_->currency_symbol); ?> </div> </div> <div class="row mb-3"> <div class="col-6"> <p class="fw-bolder credit text-left"> <?php echo e(__('message.original wages')); ?> <?php echo e($productQtyHistory->product?->productCategory?->fixed_price??''||$productQtyHistory->product?->fixed_price??''?'':'(គិតជាលី)'); ?> </p> </div> <div class="col-6 text-left credit">: <?php echo e(number_format($productQtyHistory->product?->cost_wagesInWeight()??0 , 2)); ?> <?php echo e($currency_->currency_symbol); ?> </div> </div> <div class="row mb-3"> <div class="col-6"> <p class="fw-bolder credit text-left"> <?php echo e(__('message.weight')); ?> </p> </div> <div class="col-6 text-left">: <?php if($productQtyHistory->weight): ?> <?php echo e(number_format($productQtyHistory->weight??0 ,2)); ?> <?php else: ?> <?php echo e(number_format($productQtyHistory->product?->weight??0 ,2)); ?> <?php 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"> <?php echo e(__('message.note')); ?> </p> </div> <div class="col-6 text-left">: <?php echo e($productQtyHistory->note??''); ?> </div> </div> <div class="row mb-3"> <div class="col-6"> <p class="fw-bolder credit text-left"> <?php echo e(__('message.user')); ?> </p> </div> <div class="col-6 text-left">: <a href="<?php echo e(route('users.show' , $productQtyHistory->user_id)); ?>" class="text-dark" title="<?php echo e(__('message.show user')); ?>"> <?php echo e($productQtyHistory->user->name??''); ?> </a> </div> </div> <div class="row mb-3"> <div class="col-6"> <p class="fw-bolder credit text-left"> <?php echo e(__('message.original invoice')); ?> </p> </div> <div class="col-6 text-left">: <?php echo e($productQtyHistory->product?->original_invoice??''); ?> </div> </div> </div> </div> </div> </div> </div> <div class="tab-pane fade text-left" id="diamond_size<?php echo e($loop->index); ?>" role="tabpanel"> <?php echo $productQtyHistory->product->diamond_size??''; ?> </div> </div> </div> </div> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> <?php 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"><?php echo e($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=""> <?php echo e($productQtyHistories->appends($_GET)->links()); ?> </div> </div> <?php 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;"> </thead> <tbody> </tbody> </table> </div> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('scripts'); ?> <?php echo $__env->make('app.datepicker-js-config', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <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> <?php $__env->stopSection(); ?> <?php $__env->startSection('meta'); ?> <title><?php echo e(__('message.adjustment report')); ?> - <?php echo e($settings_->shop_name); ?></title> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.admin-main', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/jewelry-pos/resources/views/reports/adjustment-report.blade.php ENDPATH**/ ?>