You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					390 lines
				
				19 KiB
			
		
		
			
		
	
	
					390 lines
				
				19 KiB
			| 
								 
											2 years ago
										 
									 | 
							
								@extends('layouts.admin.app')
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@section('title',translate('messages.subscription_preview'))
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@push('css_or_js')
							 | 
						||
| 
								 | 
							
								<style>
							 | 
						||
| 
								 | 
							
								    .select2-container--open {
							 | 
						||
| 
								 | 
							
								    z-index: 99999999999999;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								.daterangepicker::before {
							 | 
						||
| 
								 | 
							
								    display: none;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								.daterangepicker {
							 | 
						||
| 
								 | 
							
								    top: 50% !important;
							 | 
						||
| 
								 | 
							
								    left: 50% !important;
							 | 
						||
| 
								 | 
							
								    right: unset !important;
							 | 
						||
| 
								 | 
							
								    transform: translate(-50%, -50%) !important;
							 | 
						||
| 
								 | 
							
								    width: 100%;
							 | 
						||
| 
								 | 
							
								    max-width: 595px;
							 | 
						||
| 
								 | 
							
								    overflow-y: auto;
							 | 
						||
| 
								 | 
							
								    position:fixed;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								@media (max-width: 767px) {
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    .daterangepicker {
							 | 
						||
| 
								 | 
							
								    top: 0 !important;
							 | 
						||
| 
								 | 
							
								    left: 0 !important;
							 | 
						||
| 
								 | 
							
								    width: 100%;
							 | 
						||
| 
								 | 
							
								    max-height: 100vh;
							 | 
						||
| 
								 | 
							
								    transform: translate(0, 0) !important;
							 | 
						||
| 
								 | 
							
								    overflow-y: auto
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								.drp-calendar {
							 | 
						||
| 
								 | 
							
								    margin: 0 auto
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								</style>
							 | 
						||
| 
								 | 
							
								@endpush
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@section('content')
							 | 
						||
| 
								 | 
							
								@php
							 | 
						||
| 
								 | 
							
								    $reasons=\App\Models\OrderCancelReason::where('status', 1)->where('user_type' ,'admin' )->get();
							 | 
						||
| 
								 | 
							
								@endphp
							 | 
						||
| 
								 | 
							
								    <div class="content container-fluid">
							 | 
						||
| 
								 | 
							
								        <!-- Page Header -->
							 | 
						||
| 
								 | 
							
								        <div class="d-print-none pb-2">
							 | 
						||
| 
								 | 
							
								            <div class="row align-items-center">
							 | 
						||
| 
								 | 
							
								                <div class="col-sm mb-2 mb-sm-0">
							 | 
						||
| 
								 | 
							
								                    <nav aria-label="breadcrumb">
							 | 
						||
| 
								 | 
							
								                        <ol class="breadcrumb breadcrumb-no-gutter">
							 | 
						||
| 
								 | 
							
								                            <li class="breadcrumb-item">
							 | 
						||
| 
								 | 
							
								                                <a class="breadcrumb-link"
							 | 
						||
| 
								 | 
							
								                                   href="{{route('admin.order.subscription.index')}}">
							 | 
						||
| 
								 | 
							
								                                    {{translate('messages.subscription')}} {{ translate('messages.order') }}
							 | 
						||
| 
								 | 
							
								                                </a>
							 | 
						||
| 
								 | 
							
								                            </li>
							 | 
						||
| 
								 | 
							
								                            <li class="breadcrumb-item active" aria-current="page"> {{translate('messages.subscription')}} {{ translate('messages.order') }} {{translate('messages.preview')}}</li>
							 | 
						||
| 
								 | 
							
								                        </ol>
							 | 
						||
| 
								 | 
							
								                    </nav>
							 | 
						||
| 
								 | 
							
								                    <div class="d-sm-flex align-items-sm-center">
							 | 
						||
| 
								 | 
							
								                        <h1 class="page-header-title">{{translate('messages.subscription')}} {{ translate('messages.order') }} {{translate('messages.id')}} #
							 | 
						||
| 
								 | 
							
								                            <a href="{{route('admin.order.details',['id'=>$subscription->order->id])}}">{{$subscription->order->id}}</a></h1>
							 | 
						||
| 
								 | 
							
								                        <span class="badge badge-primary ml-sm-3 p-1">
							 | 
						||
| 
								 | 
							
								                            {{ translate('messages.'.$subscription->type) }}
							 | 
						||
| 
								 | 
							
								                        </span>
							 | 
						||
| 
								 | 
							
								                        <span class="ml-2 ml-sm-3">
							 | 
						||
| 
								 | 
							
								                            <i class="tio-date-range">
							 | 
						||
| 
								 | 
							
								                            </i> {{translate('messages.subscription_period')}} : <strong>{{date('d F Y' ,strtotime($subscription->start_at))}} - {{date('d F Y', strtotime($subscription->end_at))}}</strong>
							 | 
						||
| 
								 | 
							
								                        </span>
							 | 
						||
| 
								 | 
							
								                        @if (in_array($subscription->status, ['paused', 'canceled']))
							 | 
						||
| 
								 | 
							
								                            <span class="badge badge-{{$subscription->status=='canceled'?'danger':'warning'}} ml-sm-3 p-1">
							 | 
						||
| 
								 | 
							
								                                {{ translate('messages.'.$subscription->status) }}
							 | 
						||
| 
								 | 
							
								                            </span>
							 | 
						||
| 
								 | 
							
								                        @endif
							 | 
						||
| 
								 | 
							
								                    </div>
							 | 
						||
| 
								 | 
							
								                </div>
							 | 
						||
| 
								 | 
							
								            </div>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								        <div class="page-header mb-3 border-bottom">
							 | 
						||
| 
								 | 
							
								            <!-- Nav Scroller -->
							 | 
						||
| 
								 | 
							
								            <div class="js-nav-scroller hs-nav-scroller-horizontal">
							 | 
						||
| 
								 | 
							
								                <span class="hs-nav-scroller-arrow-prev" style="display: none;">
							 | 
						||
| 
								 | 
							
								                    <a class="hs-nav-scroller-arrow-link" href="javascript:;">
							 | 
						||
| 
								 | 
							
								                        <i class="tio-chevron-left"></i>
							 | 
						||
| 
								 | 
							
								                    </a>
							 | 
						||
| 
								 | 
							
								                </span>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                <span class="hs-nav-scroller-arrow-next" style="display: none;">
							 | 
						||
| 
								 | 
							
								                    <a class="hs-nav-scroller-arrow-link" href="javascript:;">
							 | 
						||
| 
								 | 
							
								                        <i class="tio-chevron-right"></i>
							 | 
						||
| 
								 | 
							
								                    </a>
							 | 
						||
| 
								 | 
							
								                </span>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                <!-- Nav -->
							 | 
						||
| 
								 | 
							
								                <ul class="nav nav-tabs page-header-tabs">
							 | 
						||
| 
								 | 
							
								                    <li class="nav-item">
							 | 
						||
| 
								 | 
							
								                        <a class="nav-link {{$tab=='info'?'active':''}}" href="{{route('admin.order.subscription.show', ['subscription'=>$subscription->id])}}">{{translate('messages.subscription')}} {{ translate('messages.order') }} {{ translate('messages.info') }}</a>
							 | 
						||
| 
								 | 
							
								                    </li>
							 | 
						||
| 
								 | 
							
								                    <li class="nav-item">
							 | 
						||
| 
								 | 
							
								                        <a class="nav-link {{$tab=='delivery-log'?'active':''}}" href="{{route('admin.order.subscription.show', ['subscription'=>$subscription->id])}}?tab=delivery-log"  aria-disabled="true">{{translate('messages.delivery_log')}}</a>
							 | 
						||
| 
								 | 
							
								                    </li>
							 | 
						||
| 
								 | 
							
								                    <li class="nav-item">
							 | 
						||
| 
								 | 
							
								                        <a class="nav-link {{$tab=='pause-log'?'active':''}}" href="{{route('admin.order.subscription.show', ['subscription'=>$subscription->id])}}?tab=pause-log"  aria-disabled="true">{{translate('messages.pause_log')}}</a>
							 | 
						||
| 
								 | 
							
								                    </li>
							 | 
						||
| 
								 | 
							
								                </ul>
							 | 
						||
| 
								 | 
							
								                <!-- End Nav -->
							 | 
						||
| 
								 | 
							
								            </div>
							 | 
						||
| 
								 | 
							
								            <!-- End Nav Scroller -->
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								        <!-- End Page Header -->
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <div class="row">
							 | 
						||
| 
								 | 
							
								            <div class="col-lg-8 mb-3 mb-lg-0">
							 | 
						||
| 
								 | 
							
								                @include("admin-views.order-subscription.partials._{$tab}")
							 | 
						||
| 
								 | 
							
								            </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            <div class="col-lg-4">
							 | 
						||
| 
								 | 
							
								                <div class="card mb-2">
							 | 
						||
| 
								 | 
							
								                    <!-- Header -->
							 | 
						||
| 
								 | 
							
								                    <div class="card-header border-0 justify-content-center pt-4 pb-0">
							 | 
						||
| 
								 | 
							
								                        <h4 class="card-header-title">{{translate('messages.subscription_setup')}}</h4>
							 | 
						||
| 
								 | 
							
								                    </div>
							 | 
						||
| 
								 | 
							
								                    <!-- End Header -->
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                    <!-- Body -->
							 | 
						||
| 
								 | 
							
								                    <div class="card-body">
							 | 
						||
| 
								 | 
							
								                        <!-- Static -->
							 | 
						||
| 
								 | 
							
								                        <label class="form-label">{{translate('change_subscription_status')}}</label>
							 | 
						||
| 
								 | 
							
								                        <!-- Unfold -->
							 | 
						||
| 
								 | 
							
								                        <div>
							 | 
						||
| 
								 | 
							
								                            <div class="dropdown">
							 | 
						||
| 
								 | 
							
								                                <button class="form-control h--45px dropdown-toggle d-flex justify-content-between align-items-center" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">{{translate("messages.{$subscription->status}")}}</button>
							 | 
						||
| 
								 | 
							
								                                <div class="dropdown-menu text-capitalize w-100" aria-labelledby="dropdownMenuButton">
							 | 
						||
| 
								 | 
							
								                                    <button class="dropdown-item {{$subscription->status=='active' ? 'active' : ''}}" type="button" @if($subscription->status=='canceled') onclick="update_subscription_status('active')" @else disabled @endif>{{translate('messages.Active')}}</button>
							 | 
						||
| 
								 | 
							
								                                    <button class="dropdown-item {{$subscription->status=='canceled' ? 'active' : ''}}" type="button" @if($subscription->status=='active') onclick="update_subscription_status('canceled')" @else disabled @endif>{{translate('messages.cancel')}}</button>
							 | 
						||
| 
								 | 
							
								                                </div>
							 | 
						||
| 
								 | 
							
								                            </div>
							 | 
						||
| 
								 | 
							
								                        </div>
							 | 
						||
| 
								 | 
							
								                        <!-- End Unfold -->
							 | 
						||
| 
								 | 
							
								                        @if ($subscription->status != 'expired')
							 | 
						||
| 
								 | 
							
								                        <button class="btn btn-sm btn-outline-danger w-100 text-capitalize mt-3" type="button" @if($subscription->status != 'canceled') onclick="update_subscription_status('paused')" @else disabled @endif>{{translate('messages.add_new_pause_log')}}</button>
							 | 
						||
| 
								 | 
							
								                        @endif
							 | 
						||
| 
								 | 
							
								                        <!-- Static -->
							 | 
						||
| 
								 | 
							
								                    </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                    <!-- End Body -->
							 | 
						||
| 
								 | 
							
								                </div>
							 | 
						||
| 
								 | 
							
								                <!-- Card -->
							 | 
						||
| 
								 | 
							
								                <div class="card">
							 | 
						||
| 
								 | 
							
								                    <!-- Header -->
							 | 
						||
| 
								 | 
							
								                    <div class="card-header">
							 | 
						||
| 
								 | 
							
								                        <h4 class="card-header-title">{{translate('messages.customer')}}</h4>
							 | 
						||
| 
								 | 
							
								                    </div>
							 | 
						||
| 
								 | 
							
								                    <!-- End Header -->
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                    <!-- Body -->
							 | 
						||
| 
								 | 
							
								                    @if($subscription->customer)
							 | 
						||
| 
								 | 
							
								                        <div class="card-body">
							 | 
						||
| 
								 | 
							
								                            <div class="media align-items-center" href="javascript:">
							 | 
						||
| 
								 | 
							
								                                <div class="avatar avatar-circle mr-3">
							 | 
						||
| 
								 | 
							
								                                    <img
							 | 
						||
| 
								 | 
							
								                                        class="avatar-img"
							 | 
						||
| 
								 | 
							
								                                        onerror="this.src='{{asset('public/assets/admin/img/160x160/img1.jpg')}}'"
							 | 
						||
| 
								 | 
							
								                                        src="{{asset('storage/app/public/profile/'.$subscription->customer->image)}}"
							 | 
						||
| 
								 | 
							
								                                        alt="Image Description">
							 | 
						||
| 
								 | 
							
								                                </div>
							 | 
						||
| 
								 | 
							
								                                <div class="media-body">
							 | 
						||
| 
								 | 
							
								                                    <a class="text-body text-capitalize" href="{{route('admin.customer.view',[$subscription['user_id']])}}">{{$subscription->customer['f_name'].' '.$subscription->customer['l_name']}}</a>
							 | 
						||
| 
								 | 
							
								                                </div>
							 | 
						||
| 
								 | 
							
								                                <div class="media-body text-right">
							 | 
						||
| 
								 | 
							
								                                    {{--<i class="tio-chevron-right text-body"></i>--}}
							 | 
						||
| 
								 | 
							
								                                </div>
							 | 
						||
| 
								 | 
							
								                            </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                            <hr>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                            <div class="media align-items-center" href="javascript:">
							 | 
						||
| 
								 | 
							
								                                <div class="icon icon-soft-info icon-circle mr-3">
							 | 
						||
| 
								 | 
							
								                                    <i class="tio-shopping-basket-outlined"></i>
							 | 
						||
| 
								 | 
							
								                                </div>
							 | 
						||
| 
								 | 
							
								                                <div class="media-body">
							 | 
						||
| 
								 | 
							
								                                    <span
							 | 
						||
| 
								 | 
							
								                                        class="text-body text-hover-primary">{{$subscription->customer->order_count}} {{translate('messages.orders')}}</span>
							 | 
						||
| 
								 | 
							
								                                </div>
							 | 
						||
| 
								 | 
							
								                                <div class="media-body text-right">
							 | 
						||
| 
								 | 
							
								                                    {{--<i class="tio-chevron-right text-body"></i>--}}
							 | 
						||
| 
								 | 
							
								                                </div>
							 | 
						||
| 
								 | 
							
								                            </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                            <hr>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                            <div class="d-flex justify-content-between align-items-center">
							 | 
						||
| 
								 | 
							
								                                <h5>{{translate('messages.contact')}} {{translate('messages.info')}}</h5>
							 | 
						||
| 
								 | 
							
								                            </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                            <ul class="list-unstyled list-unstyled-py-2">
							 | 
						||
| 
								 | 
							
								                                <li>
							 | 
						||
| 
								 | 
							
								                                    <i class="tio-online mr-2"></i>
							 | 
						||
| 
								 | 
							
								                                    {{$subscription->customer['email']}}
							 | 
						||
| 
								 | 
							
								                                </li>
							 | 
						||
| 
								 | 
							
								                                <li>
							 | 
						||
| 
								 | 
							
								                                    <i class="tio-android-phone-vs mr-2"></i>
							 | 
						||
| 
								 | 
							
								                                    {{$subscription->customer['phone']}}
							 | 
						||
| 
								 | 
							
								                                </li>
							 | 
						||
| 
								 | 
							
								                            </ul>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                            <div class="d-flex justify-content-between align-items-center">
							 | 
						||
| 
								 | 
							
								                                <h5>{{translate('messages.addresses')}}</h5>
							 | 
						||
| 
								 | 
							
								                            </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                            @foreach($subscription->customer->addresses as $address)
							 | 
						||
| 
								 | 
							
								                                <ul class="list-unstyled list-unstyled-py-2">
							 | 
						||
| 
								 | 
							
								                                    <li>
							 | 
						||
| 
								 | 
							
								                                        <i class="tio-tab mr-2"></i>
							 | 
						||
| 
								 | 
							
								                                        {{$address['address_type']}}
							 | 
						||
| 
								 | 
							
								                                    </li>
							 | 
						||
| 
								 | 
							
								                                    <li>
							 | 
						||
| 
								 | 
							
								                                        <i class="tio-android-phone-vs mr-2"></i>
							 | 
						||
| 
								 | 
							
								                                        {{$address['contact_person_number']}}
							 | 
						||
| 
								 | 
							
								                                    </li>
							 | 
						||
| 
								 | 
							
								                                    <li style="cursor: pointer">
							 | 
						||
| 
								 | 
							
								                                        <a target="_blank" href="http://maps.google.com/maps?z=12&t=m&q=loc:{{$address['latitude']}}+{{$address['longitude']}}">
							 | 
						||
| 
								 | 
							
								                                            <i class="tio-map mr-2"></i>
							 | 
						||
| 
								 | 
							
								                                            {{$address['address']}}
							 | 
						||
| 
								 | 
							
								                                        </a>
							 | 
						||
| 
								 | 
							
								                                    </li>
							 | 
						||
| 
								 | 
							
								                                </ul>
							 | 
						||
| 
								 | 
							
								                                <hr>
							 | 
						||
| 
								 | 
							
								                            @endforeach
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                        </div>
							 | 
						||
| 
								 | 
							
								                @endif
							 | 
						||
| 
								 | 
							
								                <!-- End Body -->
							 | 
						||
| 
								 | 
							
								                </div>
							 | 
						||
| 
								 | 
							
								                <!-- End Card -->
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            </div>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								        <!-- End Row -->
							 | 
						||
| 
								 | 
							
								    </div>
							 | 
						||
| 
								 | 
							
								@endsection
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@push('script_2')
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <script>
							 | 
						||
| 
								 | 
							
								        $(document).on('ready', function () {
							 | 
						||
| 
								 | 
							
								            // INITIALIZATION OF DATERANGEPICKER
							 | 
						||
| 
								 | 
							
								            // =======================================================
							 | 
						||
| 
								 | 
							
								            // $('.js-daterangepicker').daterangepicker(
							 | 
						||
| 
								 | 
							
								            //     {
							 | 
						||
| 
								 | 
							
								            //         zIndex: 1100,
							 | 
						||
| 
								 | 
							
								            //     });
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            // INITIALIZATION OF DATATABLES
							 | 
						||
| 
								 | 
							
								            // =======================================================
							 | 
						||
| 
								 | 
							
								            var datatable = $.HSCore.components.HSDatatables.init($('#columnSearchDatatable'));
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            $('#column1_search').on('keyup', function () {
							 | 
						||
| 
								 | 
							
								                datatable
							 | 
						||
| 
								 | 
							
								                    .columns(1)
							 | 
						||
| 
								 | 
							
								                    .search(this.value)
							 | 
						||
| 
								 | 
							
								                    .draw();
							 | 
						||
| 
								 | 
							
								            });
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            $('#column3_search').on('change', function () {
							 | 
						||
| 
								 | 
							
								                datatable
							 | 
						||
| 
								 | 
							
								                    .columns(2)
							 | 
						||
| 
								 | 
							
								                    .search(this.value)
							 | 
						||
| 
								 | 
							
								                    .draw();
							 | 
						||
| 
								 | 
							
								            });
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            // INITIALIZATION OF SELECT2
							 | 
						||
| 
								 | 
							
								            // =======================================================
							 | 
						||
| 
								 | 
							
								            $('.js-select2-custom').each(function () {
							 | 
						||
| 
								 | 
							
								                var select2 = $.HSCore.components.HSSelect2.init($(this));
							 | 
						||
| 
								 | 
							
								            });
							 | 
						||
| 
								 | 
							
								        });
							 | 
						||
| 
								 | 
							
								        function update_subscription_status(status)
							 | 
						||
| 
								 | 
							
								        {
							 | 
						||
| 
								 | 
							
								            if(status == 'paused'){
							 | 
						||
| 
								 | 
							
								                Swal.fire( {
							 | 
						||
| 
								 | 
							
								                    title: "{{translate('messages.please_select_a_date_range')}}",
							 | 
						||
| 
								 | 
							
								                    html:'<input type="text" placeholder="{{ translate('Select_date')}}" id="swal-input2" class="swal2-input form-control text-center" readonly required/>',
							 | 
						||
| 
								 | 
							
								                    confirmButtonText: "{{translate('messages.Submit')}}",
							 | 
						||
| 
								 | 
							
								                    onOpen: function() {
							 | 
						||
| 
								 | 
							
								                        $('#swal-input2').daterangepicker({
							 | 
						||
| 
								 | 
							
								                            minDate: new Date(),
							 | 
						||
| 
								 | 
							
								                            autoUpdateInput: false,
							 | 
						||
| 
								 | 
							
								                            locale: {
							 | 
						||
| 
								 | 
							
								                                cancelLabel: 'Clear'
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                            }
							 | 
						||
| 
								 | 
							
								                        });
							 | 
						||
| 
								 | 
							
								                        $('.daterangepicker').css('z-index', 9999);
							 | 
						||
| 
								 | 
							
								                        $('#swal-input2').on('apply.daterangepicker', function(ev, picker) {
							 | 
						||
| 
								 | 
							
								                            $(this).val(picker.startDate.format('DD MMM YYYY') + ' - ' + picker.endDate.format('DD MMM YYYY'));
							 | 
						||
| 
								 | 
							
								                        });
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                        $('#swal-input2').on('cancel.daterangepicker', function(ev, picker) {
							 | 
						||
| 
								 | 
							
								                            $(this).val('');
							 | 
						||
| 
								 | 
							
								                        });
							 | 
						||
| 
								 | 
							
								                    },
							 | 
						||
| 
								 | 
							
								                    preConfirm: () => {
							 | 
						||
| 
								 | 
							
								                        if((document.getElementById('swal-input2').value == "") || (document.getElementById('swal-input2').value == '') || ((document.getElementById('swal-input2').value == null)) ){
							 | 
						||
| 
								 | 
							
								                            Swal.showValidationMessage(`{{translate('messages.please_select_a_date_range')}}`)
							 | 
						||
| 
								 | 
							
								                        }
							 | 
						||
| 
								 | 
							
								                    }
							 | 
						||
| 
								 | 
							
								                }).then((result) => {
							 | 
						||
| 
								 | 
							
								                    if(result.value){
							 | 
						||
| 
								 | 
							
								                        let startDate = $('#swal-input2').data('daterangepicker').startDate.format('YYYY-MM-DD');
							 | 
						||
| 
								 | 
							
								                        let endDate = $('#swal-input2').data('daterangepicker').endDate.format('YYYY-MM-DD')
							 | 
						||
| 
								 | 
							
								                        $(`<form action="{{route('admin.order.subscription.update',['subscription'=>$subscription->id])}}" method="POST">
							 | 
						||
| 
								 | 
							
								                        @csrf
							 | 
						||
| 
								 | 
							
								                        @method('PUT')
							 | 
						||
| 
								 | 
							
								                        <input type="hidden" name="status" value="` + status + `" >
							 | 
						||
| 
								 | 
							
								                        <input type="hidden" name="start_date" value="` + startDate + `" >
							 | 
						||
| 
								 | 
							
								                        <input type="hidden" name="end_date" value="` + endDate + `" >
							 | 
						||
| 
								 | 
							
								                        </form>`).appendTo('body').submit();
							 | 
						||
| 
								 | 
							
								                    }
							 | 
						||
| 
								 | 
							
								                });
							 | 
						||
| 
								 | 
							
								            }
							 | 
						||
| 
								 | 
							
								            else if(status == 'canceled'){
							 | 
						||
| 
								 | 
							
								                Swal.fire( {
							 | 
						||
| 
								 | 
							
								                    title: "{{translate('messages.please_select_reason_for_cancellation')}}",
							 | 
						||
| 
								 | 
							
								                    html:`
							 | 
						||
| 
								 | 
							
								                    <select class="form-control js-select2-custom mx-1 swal2-input"  name="reason" id="reason">
							 | 
						||
| 
								 | 
							
								                    <option value="">
							 | 
						||
| 
								 | 
							
								                            {{  translate('select_cancellation_reason') }}
							 | 
						||
| 
								 | 
							
								                        </option>
							 | 
						||
| 
								 | 
							
								                    @foreach ($reasons as $r)
							 | 
						||
| 
								 | 
							
								                        <option value="{{ $r->reason }}">
							 | 
						||
| 
								 | 
							
								                            {{ $r->reason }}
							 | 
						||
| 
								 | 
							
								                        </option>
							 | 
						||
| 
								 | 
							
								                    @endforeach
							 | 
						||
| 
								 | 
							
								                    </select>
							 | 
						||
| 
								 | 
							
								                    <textarea name="note" id="note" class="swal2-input form-control  text-center" placeholder="{{ translate('Add_a_note') }}"></textarea>
							 | 
						||
| 
								 | 
							
								                    `,
							 | 
						||
| 
								 | 
							
								                    confirmButtonText: "{{translate('messages.Submit')}}",
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                    preConfirm: () => {
							 | 
						||
| 
								 | 
							
								                        if(document.getElementById('reason').value == "" ){
							 | 
						||
| 
								 | 
							
								                            Swal.showValidationMessage(`{{translate('messages.please_select_a_cencellation_reason')}}`)
							 | 
						||
| 
								 | 
							
								                        }
							 | 
						||
| 
								 | 
							
								                    }
							 | 
						||
| 
								 | 
							
								                }).then((result) => {
							 | 
						||
| 
								 | 
							
								                    console.log(result, result.value);
							 | 
						||
| 
								 | 
							
								                    if (result.value) {
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                        $(`<form action="{{route('admin.order.subscription.update',['subscription'=>$subscription->id])}}" method="POST">
							 | 
						||
| 
								 | 
							
								                        @csrf
							 | 
						||
| 
								 | 
							
								                        @method('PUT')
							 | 
						||
| 
								 | 
							
								                        <input type="hidden" name="status" value="` + status + `" >
							 | 
						||
| 
								 | 
							
								                        <input type="hidden" name="reason" value="` + document.getElementById('reason').value + `" >
							 | 
						||
| 
								 | 
							
								                        <input type="hidden" name="note" value="` + document.getElementById('note').value + `" >
							 | 
						||
| 
								 | 
							
								                        </form>`).appendTo('body').submit();
							 | 
						||
| 
								 | 
							
								                    }
							 | 
						||
| 
								 | 
							
								                })
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            else {
							 | 
						||
| 
								 | 
							
								                Swal.fire({
							 | 
						||
| 
								 | 
							
								                    title: "{{translate('messages.are_you_sure')}}",
							 | 
						||
| 
								 | 
							
								                    text: status=='active' ? "{{translate('you_want_to_active_this_subscription')}}" : "{{translate('you_want_to_cancel_this_subscription')}}" ,
							 | 
						||
| 
								 | 
							
								                    type: 'warning',
							 | 
						||
| 
								 | 
							
								                    showCancelButton: true,
							 | 
						||
| 
								 | 
							
								                    cancelButtonColor: 'default',
							 | 
						||
| 
								 | 
							
								                    confirmButtonColor: '#FC6A57',
							 | 
						||
| 
								 | 
							
								                    cancelButtonText: '{{translate('messages.no')}}',
							 | 
						||
| 
								 | 
							
								                    confirmButtonText: '{{translate('messages.Yes')}}',
							 | 
						||
| 
								 | 
							
								                    reverseButtons: true
							 | 
						||
| 
								 | 
							
								                }).then((result) => {
							 | 
						||
| 
								 | 
							
								                    console.log(result, result.value);
							 | 
						||
| 
								 | 
							
								                    if (result.value) {
							 | 
						||
| 
								 | 
							
								                        $(`<form action="{{route('admin.order.subscription.update',['subscription'=>$subscription->id])}}" method="POST">
							 | 
						||
| 
								 | 
							
								                        @csrf
							 | 
						||
| 
								 | 
							
								                        @method('PUT')
							 | 
						||
| 
								 | 
							
								                        <input type="hidden" name="status" value="` + status + `" >
							 | 
						||
| 
								 | 
							
								                        </form>`).appendTo('body').submit();
							 | 
						||
| 
								 | 
							
								                    }
							 | 
						||
| 
								 | 
							
								                })
							 | 
						||
| 
								 | 
							
								            }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								    </script>
							 | 
						||
| 
								 | 
							
								@endpush
							 |