| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634 |
- <div>
- @if($showDetail)
- <a style="margin-top:20px" class="btn--ui lightGrey" href="/{{$from != '' ? ($from . '?showFilters=1') : 'members'}}"><i class="fa-solid fa-arrow-left"></i></a><br><br>
- <div class="col col-lg-12" style="margin-bottom:100px;">
- <div class="user--profile d-lg-flex" style="margin-top:20px !important">
- <div class="user--profile_card d-flex justify-content-between flex-column w-100 w-lg-auto mb-3 mb-lg-0">
- <div class="user--details">
- <header>
- <div class="avatar--wrapper d-flex align-items-center justify-content-between w-50">
- <figure class="m-0 avatar--wrapper_img">
- @if ($currentMember->image != '')
- <img src="{{ asset('storage/app/public/'.$currentMember->image) }}" style="max-width:200px">
- @endif
- </figure>
- </div>
- </header>
- <article>
- <header class="title d-flex align-items-center mb-4"><i class="ico--ui borsellino fill me-2"></i>Borsellino</header>
- <div class="credito d-flex align-items-center justify-content-between">
- <div class="credito_title">
- <span>Borsellino MAD: <br></span><span class="value">{{formatPrice($currentMember->getMoney())}}</span>
- </div>
- <a href="/in?new=1&memberId={{$currentMember->id}}&causalId={{$causalId}}" class="btn--ui white small" style="width:100px">ricarica</a>
- </div>
- <div class="credito d-flex align-items-center justify-content-between">
- <br><br><button type="button" class="btn--ui white small" data-bs-toggle="modal" data-bs-target="#userModal" style="width:100px">Modifica</button>
- </div>
- </article>
- <article>
- <header class="title d-flex align-items-center mb-4"><i class="ico--ui corsi fill me-2"></i>Certificato</header>
- @if(sizeof($currentMember->certificates) > 0)
- @php
- $cert = $currentMember->certificates[0]
- @endphp
- <ul class="course-list m-0 p-0">
- <li>
- <span class="course_name">
- {{$cert->type == 'A' ? 'Agonistico' : 'Non agonistico'}}<br>
- Scadenza: <span class="title-detail_date">{{$cert->expire_date ? date("d/m/Y", strtotime($cert->expire_date)) : ''}}
- </span>
- </span>
- <span style="float:right">
- @if($cert->expire_date < date("Y-m-d"))
- <span class="badge tessera-badge suspended">scaduto</span>
- @endif
- @if($cert->expire_date . " 23:59:59" >= date("Y-m-d") && $cert->expire_date < date("Y-m-d", strtotime("+1 month")))
- <span class="badge tessera-badge due">in scadenza</span>
- @endif
- @if($cert->expire_date . " 23:59:59" >= date("Y-m-d", strtotime("+1 month")))
- <span class="badge tessera-badge active">valido</span>
- @endif
- </span>
- </li>
- </ul>
- @endif
- </article>
- <article>
- <header class="title d-flex align-items-center mb-4"><i class="ico--ui corsi fill me-2"></i>Tesseramento</header>
- @if(sizeof($currentMember->cards) > 0)
- @foreach($currentMember->cards as $card)
- @php
- // $card = $currentMember->cards[0];
- $active = 'active';
- if ($card->expire_date != '' && $card->expire_date < date("Y-m-d 23:59:59"))
- {
- $active = 'suspended';
- }
- @endphp
- @if($active != 'suspended')
- <ul class="course-list m-0 p-0">
- <li>
- <span class="course_name">
- {{$card->card->name}}<br>
- Scadenza: <span class="title-detail_date">{{$card->expire_date ? date("d/m/Y", strtotime($card->expire_date)) : ''}}
- </span>
- </span>
- <span style="float:right">
- <span class="badge tessera-badge {{$active}}">{{$active == 'active' ? 'ATTIVA' : 'SCADUTA'}}
- </span>
- </li>
- </ul>
- @endif
- @endforeach
- @endif
- </article>
- </div>
- </div>
- <div class="user--profile_resume">
- <header class="d-flex align-item-center ">
- <div class="user_name me-4">
- <span class="name">{{$currentMember->first_name}} {{$currentMember->last_name}}</span>
- <span class="badge tessera-badge {{$currentStatus["status"] > 0 ? ($currentStatus["status"] == 2 ? 'active' : 'due') : 'suspended'}}">{{$currentStatus["status"] > 0 ? ($currentStatus["status"] == 2 ? 'Tesserato' : 'Sospeso') : 'Non tesserato'}}</span>
- </div>
- <button class="btn--ui extraLightGrey" wire:click="edit({{ $currentMember->id }})" data-bs-toggle="popover" data-bs-trigger="hover focus" data-bs-placement="bottom" data-bs-content="Modifica"><i class="fa-regular fa-pen-to-square"></i></button>
- </header>
- <ul class="user-address mb-4 p-0">
- <li><i class="ico--ui resume--ico phone me-2"></i><span>Tel. {{$currentMember->phone}}</span></li>
- <li><i class="ico--ui resume--ico birth me-2"></i><span>Nato/a il {{$currentMember->birth_date ? date("d/m/Y", strtotime($currentMember->birth_date)) : ''}}</span> ({{$currentMember->getAge()}} anni)</li>
- <li><i class="ico--ui resume--ico mail me-2"></i><span>{{strtolower($currentMember->email)}}</span></li>
- </ul>
- <ul class="user-residence p-0">
- <li><i class="ico--ui residence me-2"></i><span class="title">Residenza</span></li>
- <li><i class="ico--ui resume--ico blank me-2"></i>
- <span>
- @if($currentMember->city_id > 0)
- {{$this->getCity($currentMember->city_id)}}
- @if($currentMember->province_id > 0)
- ( {{$this->getProvince($currentMember->province_id)}} ) -
- @endif
- @endif
- {{ $currentMember->zip_code }}<br>
- {{$currentMember->address}}
- </span>
- </li>
- </ul>
- <div class="resume--tab_info gruppi">
- <h2 class="mb-3">Gruppi di appartenenza</h2>
- <div class="resume--info d-flex align-items-start row">
- @foreach($currentMember->categories as $member_category)
- <div class="col-md-3 mb-3">
- <i class="ico--ui gruppi me-2"></i>
- <div class="title" style="margin-right:20px">
- <h4>{{$member_category->category->getTree()}}</h4>
- </div>
- </div>
- @endforeach
- </div>
- </div>
- <div class="resume--tab_info corsi">
- <h2 class="mb-3">Corsi</h2>
- @foreach($currentMember->courses as $member_course)
- <div class="d-flex align-items-center corsi--user_details">
- <div class="title me-3">
- <h4>{{$member_course->course->getTree()}}</h4>
- </div>
- <div class="corsi--mesi me-3">
- <span class="corsi_mesi_text">
- @php
- $aMo = json_decode($member_course->months);
- if (sizeof($aMo) == 1)
- {
- print($this->getMonth($aMo[0]->m));
- }
- if (sizeof($aMo) > 1)
- {
- print($this->getMonth($aMo[0]->m) . " - " . $this->getMonth($aMo[sizeof($aMo) - 1]->m));
- }
- @endphp
- </span>
- </div>
- <div class="title--dettagli corsi--orari me-3">
- <span class="corsi--orari_text">
- @foreach(json_decode($member_course->when) as $xx => $x)
- @if($xx > 0)
- @endif
- @foreach($x->day as $d)
- {{$d}}
- @endforeach
- h {{$x->from}} - {{$x->to}}
- @endforeach
- </span>
- </div>
- </div>
- @endforeach
- </div>
- </div>
- </div>
- <div class="service--button d-md-flex align-items-center " style="margin-bottom:30px">
- <button class="btn--ui lightGrey" onclick="annulla()" style="margin-right:10px">annulla</button>
- <!--<button class="btn--ui_outline btn-large" style="margin-right:10px"><i class="ico--ui utenti"></i>stampa profilo</button>-->
- <div class="payment_btn">
- <a href="/in?new=1&memberId={{$currentMember->id}}" class="btn--ui primary">NUOVA ENTRATA</a>
- <!--<button class="btn--ui btn-large primary"><i class="ico--ui corsi"></i>pagamento corso</button>-->
- </div>
- </div>
- </div>
- @else
- <div class="col card--ui" id="card--dashboard">
- <header id="title--section" style="display:none !important" class="d-flex align-items-center justify-content-between" style="display:none !important">
- <div class="title--section_name d-flex align-items-center justify-content-between">
- <i class="ico--ui title_section utenti me-2 "></i>
- <h2 class="primary">@if(!$add && !$update)Utenti @else Inserimento/modifica utente @endif</h2>
- </div>
- @if(!$add && !$update)
- <div class="title--section_addButton" wire:click="add()" style="cursor: pointer;">
- <div class="btn--ui entrata d-flex justify-items-between">
- <a href="#" style="color:white">Aggiungi</a>
- </div>
- </div>
- @endif
- </header>
- @if(!$add && !$update)
- <!--<button id="open-filter" onclick="pcsh1()"></button>
- <button id="close-filter" onclick="pcsh2()"></button>-->
- <section id="subheader" class="d-flex align-items-center justify-content-between">
- <!--<form action="" class="group--action d-flex align-items-center">
- <select class="form-select form-select-lg me-1" aria-label=".form-select-lg example" wire:model="multipleAction">
- <option selected>Azione multipla</option>
- <option value="delete"><i class="fa-regular fa-trash-can"></i></option>
- </select>
- <button type="submit" class="btn--ui" wire:click.prevent="executeMultipleAction()">applica</button>
- </form>-->
- @if(false)
- <form action="" class="search--form d-flex align-items-center">
- <div class="input-group mb-3">
- <input type="text" class="form-control" placeholder="Cerca utente" aria-label="cerca utent" aria-describedby="button-addon2" wire:model="search">
- @if($showReset)
- <button class="btn--ui" type="button" id="button-addon2" onclick="reset()"><i class="ico--ui search"></i>Reset</button>
- @else
- <button class="btn--ui" type="button" id="button-addon2" wire:click="search()"><i class="ico--ui search"></i>Cerca</button>
- @endif
- </div>
- </form>
- @endif
- </section>
- <div class="showFilter" style="display:none">
- <hr size="1">
- <div class="row g-3">
- <div class="col-md-3">
- <div class="row">
- <div class="col-md-12" style="margin-bottom:10px;">
- <b>Età</b>
- </div>
- <div class="col-12">
- <div class="row mb-2">
- <div class="col-3"><label class="form-check-label ms-2" >Da</label></div>
- <div class="col-9"><input class="form-control " type="number" name="txtFromYear"></div>
- </div>
- </div>
- <div class="col-12">
- <div class="row">
- <div class="col-3"><label class="form-check-label ms-2" >A</label></div>
- <div class="col-9"><input class="form-control " type="number" name="txtToYear"></div>
- </div>
- </div>
- </div>
- </div>
- <div class="col-md-3">
- <div class="row">
- <div class="col-md-12" style="margin-bottom:10px;">
- <b>Tipologia di tesseramento</b>
- </div>
- <div class="col-12">
- <select name="filterCards" class="form-select filterCards">
- <option value="">Tutte
- @foreach(getCards() as $card)
- <option value="{{$card->id}}">{{$card->name}}
- @endforeach
- </select>
- </div>
- </div>
- </div>
- <div class="col-md-3">
- <div class="row">
- <div class="col-md-12" style="margin-bottom:10px;">
- <b>Stato tesseramento</b>
- </div>
- <div class="col-12">
- <select name="filterStatus" class="form-select filterStatus" multiple="multiple">
- <option value="2">Attivo
- <option value="1">Sospeso
- <option value="0">Non tesserato
- </select>
- </div>
- </div>
- </div>
- <div class="col-md-3">
- <div class="row">
- <div class="col-md-12" style="margin-bottom:10px;">
- <b>Gruppo di appartenenza</b>
- </div>
- <div class="col-12">
- <select name="filterCategories" class="form-select filterCategories" multiple="multiple">
- <option value="">Tutte</option>
- @foreach($categories as $category)
- <option value="{{$category["id"]}}">
- {!! str_repeat('• ', $category["indentation"] ?? 0) !!}{{$category["name"]}}
- </option>
- @endforeach
- </select>
- </div>
- </div>
- </div>
- <div class="col-md-3">
- <div class="row">
- <div class="col-md-12" style="margin-bottom:10px;">
- <b>Anno di nascita</b>
- </div>
- <div class="col-12">
- <div class="row mb-2">
- <div class="col-3"><label class="form-check-label ms-2" >Da</label></div>
- <div class="col-9"><input class="form-control " type="number" name="txtFromYearYear"></div>
- </div>
- </div>
- <div class="col-12">
- <div class="row">
- <div class="col-3"><label class="form-check-label ms-2" >A</label></div>
- <div class="col-9"><input class="form-control " type="number" name="txtToYearYear"></div>
- </div>
- </div>
- </div>
- </div>
- <div class="col-md-3">
- <div class="row">
- <div class="col-md-12" style="margin-bottom:10px;">
- <b>Scadenza certificato medico</b>
- </div>
- <div class="col-12">
- <select name="filterScadenza" class="form-select filterScadenza" multiple="multiple">
- <option value="1">Scaduti
- <option value="2">In scadenza
- <option value="3">Non presenti
- <option value="4">Validi
- </select>
- </div>
- </div>
- </div>
- <div class="col-md-3">
- <div class="row">
- <div class="col-md-12" style="margin-bottom:10px;">
- <b>Tipologia certificato medico</b>
- </div>
- <div class="col-12">
- <select name="filterCertificateType" class="form-select filterCertificateType" multiple="multiple">
- <option value="">Tutti
- <option value="N">Non agonistico
- <option value="A">Agonistico
- </select>
- </div>
- </div>
- </div>
- </div>
- <div class="row g-3">
- <div class="col-md-12" style="text-align:right">
- <button class="btn--ui lightGrey" onclick="reset()" onclick="destroyDataTable()">Reset</button>
- <button class="btn--ui" onclick="loadDataTable()">FILTRA</button>
- </div>
- </div>
- <hr size="1">
- </div>
- <section id="anagrafiche--utenti">
- <div class="compare--chart_wrapper d-none"></div>
- <table class="table tablesaw tableHead tablesaw-stack table--lista_utenti tableHead" width="100%" id="tablesaw-350" width="100%">
- <thead>
- <tr>
- <!--<th scope="col">#</th>-->
- <th scope="col" style="text-align: center">Cognome</th>
- <th scope="col">Nome</th>
- <th scope="col">Telefono</th>
- <th scope="col" style="text-align: center">Età</th>
- <th scope="col" style="text-align: center">Anno</th>
- <th scope="col">Stato</th>
- <th scope="col">Certificato</th>
- <th scope="col">...</th>
- </tr>
- </thead>
- <tbody id="checkall-target">
- @if(false)
- @foreach($records as $idx => $record)
- <tr>
- <td> <label><input class="table-check" type="checkbox" wire:model="multipleIds" value="{{$record->id}}"><span class="sr-only d-inline-block d-lg-none ms-2 mobile-row-selector"> Seleziona riga</span></label></td>
- <td>{{ ($idx + 1) }}</td>
- <td>ID{{str_pad($record->id, 5, "0", STR_PAD_LEFT)}}</td>
- <td><a href="#" wire:click="showDetail({{$record->id}})">{{$record->last_name}}</a></td>
- <td><a href="#" wire:click="showDetail({{$record->id}})">{{$record->first_name}}</a></td>
- <td>
- @if($record->phone != '')
- <a href="tel:{{$record->phone}}">{{$record->phone}}</a>
- @endif
- </td>
- <td>{{$record->age > 0 ? $record->age : ''}} </td>
- <td>
- <span class="tablesaw-cell-content"><span class="badge tessera-badge {{$record->state > 0 ? ($record->state == 2 ? 'active' : 'suspended') : 'due'}}">{{$record->state > 0 ? ($record->state == 2 ? 'Tesserato' : 'Sospeso') : 'Non tesserato'}}</span></span>
- </td>
- <td>
- <span class="tablesaw-cell-content"><span class="badge tessera-badge {{$record->status > 0 ? ($record->status == 2 ? 'active' : 'suspended') : ''}}">{{$record->status > 0 ? ($record->status == 2 ? 'Attivo' : 'Sospesa') : ''}}</span></span>
- <b class=" tablesaw-cell-label">Scadenza tessera</b>
- <span class="tablesaw-cell-content d-flex align-items-center">
- {{$record->status ? 'Scadenza : ' : ($record->date != '' ? 'Scaduto : ' : '')}} {{$record->date != '' ? date("d/m/Y", strtotime($record->date)) : ''}}
- </span>
- </td>
- <td>
- @if($record->certificate != '')
- <b class=" tablesaw-cell-label">Scadenza certificato</b>
- <span class="tablesaw-cell-content d-flex align-items-center">
- @if($record->certificate < date("Y-m-d"))
- <i class="ico--ui check suspended me-2"></i>
- Scaduto :
- @endif
- @if($record->certificate >= date("Y-m-d") && $record->certificate < date("Y-m-d", strtotime("+1 month")))
- <i class="ico--ui check due me-2"></i>
- In scadenza :
- @endif
- @if($record->certificate >= date("Y-m-d", strtotime("+1 month")))
- <i class="ico--ui check active me-2"></i>
- Scadenza :
- @endif
- {{$record->certificate != '' ? date("d/m/Y", strtotime($record->certificate)) : ''}}
- </span>
- @endif
- </td>
- <td>
- <button type="button" class="btn" wire:click="edit({{ $record->id }})" data-bs-toggle="popover" data-bs-trigger="hover focus" data-bs-placement="bottom" data-bs-content="Modifica"><i class="fa-regular fa-pen-to-square"></i></button>
- <button type="button" class="btn" onclick="confirm('Sei sicuro?') || event.stopImmediatePropagation()" wire:click="delete({{ $record->id }})" data-bs-toggle="popover" data-bs-trigger="hover focus" data-bs-placement="bottom" data-bs-content="Elimina"><i class="fa-regular fa-trash-can"></i></button>
- </td>
- </tr>
- @endforeach
- @endif
- </tbody>
- </table>
- <!--
- <div class="paginator d-flex justify-content-center">
- <nav aria-label="Page navigation example">
- <ul class="pagination">
- <li class="page-item">
- <a class="page-link" href="#" aria-label="Previous">
- <span aria-hidden="true"></span>
- </a>
- </li>
- <li class="page-item"><a class="page-link" href="#">1</a></li>
- <li class="page-item"><a class="page-link" href="#">2</a></li>
- <li class="page-item"><a class="page-link" href="#">3</a></li>
- <li class="page-item"><a class="page-link" href="#">3</a></li>
- <li class="page-item"><span class="more-page">...</span></li>
- <li class="page-item">
- <a class="page-link" href="#" aria-label="Next">
- <span aria-hidden="true"></span>
- </a>
- </li>
- </ul>
- </nav>
- </div>
- -->
- </section>
- @else
- <a name="top"></a>
- <a style="margin-top:20px" class="btn--ui lightGrey" href="/{{$from != '' ? ($from . '?showFilters=1') : 'members'}}"><i class="fa-solid fa-arrow-left"></i></a><br><br>
- @if (session()->has('success'))
- <div class="alert alert-success" role="alert">
- {{ session()->get('success') }}
- </div>
- @endif
- @if (session()->has('error'))
- <div class="alert alert-danger" role="alert">
- {{ session()->get('error') }}
- </div>
- @endif
- <div class="container-fluid">
- <div class="row mb-3">
- <div class="col-md-7 col-xl-8 p-3">
- <div class="section--tab d-flex">
- <h4 style="cursor:pointer;{{$type == 'dati' ? 'border-bottom:2px solid #0C6197; color:#0C6197;' : ''}}" wire:click="change('dati')">Anagrafica</h4>
- <h4 style="cursor:pointer;{{$type == 'tesseramento' ? 'border-bottom:2px solid #0C6197; color:#0C6197;' : ''}}" wire:click="change('tesseramento')">Tesseramento</h4>
- <h4 style="cursor:pointer;{{$type == 'corsi' ? 'border-bottom:2px solid #0C6197; color:#0C6197;' : ''}}" wire:click="change('corsi')">Corsi</h4>
- <h4 style="cursor:pointer;{{$type == 'gruppi' ? 'border-bottom:2px solid #0C6197; color:#0C6197;' : ''}}" wire:click="change('gruppi')">Gruppi</h4>
- </div>
- <div class="row">
- @if($type == 'dati')
- <div class="form--wrapper d-flex">
- <form class="form--utente d-flex">
- <div class="form--col" style="width:100%">
- <div class="row g-3">
- <div class="col-md-6 col-xxl-3">
- <label for="first_name" class="form-label">Nome</label>
- <input class="form-control @error('first_name') is-invalid @enderror" type="text" id="first_name" placeholder="Nome" wire:model="first_name" style="text-transform:uppercase">
- </div>
- <div class="col-md-6 col-xxl-3">
- <label for="last_name" class="form-label">Cognome</label>
- <input class="form-control @error('last_name') is-invalid @enderror" type="text" id="last_name" placeholder="Cognome" wire:model="last_name" style="text-transform:uppercase">
- </div>
- <div class="col-md-6 col-xxl-3">
- <label for="email" class="form-label">Sesso</label>
- <select id="gender" class="form-select @error('gender') is-invalid @enderror" aria-label="Sesso" wire:model="gender">
- <option value="">
- <option value="M">Uomo
- <option value="D">Donna
- <option value="O">Altro
- </select>
- </div>
- <div class="col-md-6 col-xxl-3">
- <label for="inputDate" class="form-label">Data di nascita {!!$age != '' ? ' <b style="font-size:14px;">(' . $age . ')</b>' : ''!!}</label>
- <div class="input-group mb-3">
- <div style="width:100%">
- <input class="form-control @error('birth_date') is-invalid @enderror" type="date" id="birth_date" placeholder="Data di nascita" wire:model="birth_date">
- </div>
- <div style="width:100%; text-align:center;">{!!$under18 ? '<span style="color:red;font-weight:bold;font-size:12px;"> MINORENNE</span>' : ''!!}</div>
- </div>
- </div>
- </div>
- <div class="row g-3">
- <div class="col-md-6 col-xxl-3">
- <label for="birth_nation_id" class="form-label">Nazione di Nascita</label>
- <select id="birth_nation_id" class="form-select nationBirthClass @error('birth_nation_id') is-invalid @enderror" aria-label="Nazione di nascita" wire:model="birth_nation_id">
- <option value="{{$birth_nation_id}}">{{$this->getNation($birth_nation_id)}}
- </select>
- </div>
- @if($isBirthItaly)
- <div class="col-md-6 col-xxl-3">
- <label for="birth_province_id" class="form-label">Provincia di Nascita</label>
- <select id="birth_province_id" class="form-select provinceBirthClass @error('birth_province_id') is-invalid @enderror" aria-label="Provincia di nascita" wire:model="birth_province_id">
- <option value="{{$birth_province_id}}">{{$this->getProvince($birth_province_id)}}
- </select>
- </div>
- <div class="col-xl-6">
- <label for="birth_city_id" class="form-label">Comune di Nascita</label>
- <select id="birth_city_id" class="form-select cityBirthClass @error('birth_city_id') is-invalid @enderror" aria-label="Comune di nascita" wire:model="birth_city_id" >
- <option value="{{$birth_city_id}}">{{$this->getCity($birth_city_id)}}
- </select>
- </div>
- @else
- <div class="col-xl-3">
- <label for="birth_place" class="form-label">Paese di nascita</label>
- <input class="form-control @error('birth_place') is-invalid @enderror" type="text" id="birth_place" placeholder="Paese di nascita" wire:model="birth_place">
- </div>
- @endif
- </div>
- <div class="row g-3 mt-1">
- <div class="col-xl-6">
- <label for="fiscal_code" class="form-label">Codice fiscale (<a wire:click="getFiscalCode()" style="cursor:pointer;font-size:18px;color: #006099;font-weight: bold;">calcola</a>)</label>
- <input class="form-control @error('fiscal_code') is-invalid @enderror" type="text" id="fiscal_code" placeholder="Codice fiscale" wire:model="fiscal_code" maxlength="16">
- @if($this->error_fc)
- <span style="color:red;font-size:12px">Dati mancanti</span>
- @endif
- @error('fiscal_code')
- <div class="invalid-feedback">{{ $message }}</div>
- @enderror
- </div>
- <div class="col-xl-6">
- <div class="upload-file">
- <label for="formFile" class="form-label">Immagine profilo</label>
- @error('image') <span class="error">{{ $message }}</span> @enderror
- <input class="form-control" type="file" wire:model="image">
- @if ($image)
- <img src="{{ $image->temporaryUrl() }}" style="max-width:200px">
- @endif
- @if ($image_old)
- <img src="{{ asset('storage/app/public/'.$image_old) }}" style="max-width:200px">
- @endif
- </div>
- </div>
- </div>
- <div class="row g-3 mt-1">
- <span class="title-form primary d-block w-100">Residenza</span>
- <div class="col-xl-3" wire:ignore>
- <label for="nation_id" class="form-label">Nazione</label>
- <select id="nation_id" class="form-select nationClass @error('nation_id') is-invalid @enderror" aria-label="Nazione" wire:model="nation_id">
- <option value="{{$nation_id}}">{{$this->getNation($nation_id)}}
- </select>
- </div>
- @if($isItaly)
- <div class="col-xl-3">
- <label for="province_id" class="form-label">Provincia</label>
- <select id="province_id" class="form-select provinceClass @error('province_id') is-invalid @enderror" aria-label="Provincia" wire:model="province_id">
- <option value="{{$province_id}}">{{$this->getProvince($province_id)}}
- </select>
- </div>
- <div class="col-xl-6">
- <label for="city_id" class="form-label">Comune</label>
- <select id="city_id" class="form-select cityClass @error('city_id') is-invalid @enderror" aria-label="Comune" wire:model="city_id">
- <option value="{{$city_id}}">{{$this->getCity($city_id)}}
- </select>
- </div>
- @endif
- </div>
- <div class="row g-3 mt-1">
- <div class="col-xl-6">
- <label for="address" class="form-label">Indirizzo</label>
- <input class="form-control @error('address') is-invalid @enderror" type="text" id="address" placeholder="Indirizzo" wire:model="address" style="text-transform:uppercase">
- </div>
- <div class="col-xl-3">
- <label for="zip_code" class="form-label">CAP</label>
- <input class="form-control @error('zip_code') is-invalid @enderror" type="text" id="zip_code" placeholder="CAP" wire:model="zip_code" maxlength="5" >
- </div>
- </div>
- <div class="row g-3 mt-1">
- <span class="title-form primary d-block w-100">Contatti</span>
- <div class="col-xl-6">
- <label for="email" class="form-label">Email</label>
- <input class="form-control @error('email') is-invalid @enderror" type="text" id="email" placeholder="Email" wire:model="email">
- </div>
- <div class="col-xl-6">
- <label for="phone" class="form-label">Telefono/Cellulare</label>
- <input class="form-control @error('phone') is-invalid @enderror" type="text" id="phone" placeholder="Telefono" wire:model="phone">
- </div>
- <div class="col-xl-6">
- <label for="phone2" class="form-label">Telefono 2</label>
- <input class="form-control" type="text" id="phone2" placeholder="Telefono 2" wire:model="phone2">
- </div>
- <div class="col-xl-6">
- <label for="phone3" class="form-label">Telefono 3</label>
- <input class="form-control" type="text" id="phone3" placeholder="Telefono 3" wire:model="phone3">
- </div>
- </div>
- <div class="row g-3 mt-1">
- <div class="col-lg-12">
- <input type="checkbox" id="no_send_mail" wire:model="no_send_mail"> <label for="birth_place" class="form-label">Non inviare mail ricevuta</label>
- </div>
- <div class="col-lg-12">
- <input type="checkbox" id="exclude_from_records" wire:model="exclude_from_records"> <label for="birth_place" class="form-label">Escludi da prima nota e entrate/uscite</label>
- </div>
- @if($dataId > 0)
- <span class="title-form primary d-block w-100">Stato</span>
- <div class="col-12">
- <span class="badge tessera-badge {{$active["status"] == 2 ? 'active' : ($active["status"] == 0 ? 'due' : 'suspended')}}">{{$active["status_text"]}}</span>
- </div>
- @endif
- <!--<span class="title-form primary d-block w-100">Stato Pagamenti</span>
- <div class="col-12">
- <div class="form-check form-switch d-flex align-items-center active">
- <input class="form-check-input me-2" type="checkbox" role="switch" id="flexSwitchCheckChecked" checked>
- <label class="form-check-label" for="flexSwitchCheckChecked">Scadenza: <span><strong>16 aprile 2024</strong></span></label>
- </div>
- </div>-->
- </div>
- <div class="row g-3 mt-1" wire:key='reload-{{$selectId}}'>
- <span class="title-form primary d-block w-100">Documento</span>
- <div class="col-xl-6 col-xl-3">
- <label for="document_type" class="form-label">Tipo</label>
- <select class="form-select form-select-lg me-1" aria-label=".form-select-lg example" wire:model="document_type">
- <option value="">--Seleziona--</option>
- <option value="Carta di identità">Carta di identità</option>
- <option value="Passaporto">Passaporto</option>
- <option value="Patente">Patente</option>
- <option value="Permesso di soggiorno">Permesso di soggiorno</option>
- </select>
- </div>
- <div class="col-xl-6 col-xl-3">
- <label for="document_number" class="form-label">Numero</label>
- <input class="form-control" type="text" id="document_number" placeholder="Numero" wire:model="document_number">
- </div>
- <div class="col-xl-6 col-xl-3">
- <label for="document_from" class="form-label">Rilasciato da</label>
- <select class="form-select form-select-lg me-1" aria-label=".form-select-lg example" wire:model="document_from">
- <option value="">--Seleziona--</option>
- <option value="Comune">Comune</option>
- <option value="Motorizzazione">Motorizzazione</option>
- <option value="Ministero degli interni">Ministero degli interni</option>
- <option value="Prefettura">Prefettura</option>
- </select>
- </div>
- <div class="col-xl-6 col-xl-3">
- <label for="document_expire_date" class="form-label">Scadenza</label>
- <input class="form-control" type="date" id="document_expire_date" placeholder="Scadenza" wire:model="document_expire_date">
- </div>
- <div class="col-12">
- <label for="document_files" class="form-label">File</label>
- <input class="form-control" type="file" wire:model="documents" multiple><br>
- <label for="document_files" class="form-label">Caricati</label>
- @foreach ($document_files as $idx => $d)
- <div class="row">
- <div class="col-6">
- <a href="{{ asset('storage/app/public/'.$d) }}" target="_blank" class="form-label">{{$d}}</a>
- </div>
- <div class="col-6">
- <a wire:click="removeDocument({{$idx}},'self')" class="form-label">(elimina)</a><br>
- </div>
- </div>
- @endforeach
- </div>
- </div>
- @if($under18)
- <div class="row g-3 mt-1">
- <span class="title-form primary d-block w-100">Genitore 1</span>
- <div class="col-xl-6">
- <label for="father_name" class="form-label"><b>Nominativo</b></label>
- <input class="form-control" type="text" id="father_name" placeholder="Nome" wire:model="father_name">
- </div>
- <div class="col-xl-6">
- <label for="father_name" class="form-label"><b>Email</b></label>
- <input class="form-control" type="text" id="father_email" placeholder="Email" wire:model="father_email">
- </div>
- <div class="col-xl-6">
- <label for="father_name" class="form-label"><b>Telefono</b></label>
- <input class="form-control" type="text" id="father_phone" placeholder="Telefono" wire:model="father_phone">
- </div>
- <div class="col-xl-6">
- <label for="father_name" class="form-label"><b>Codice fiscale</b></label>
- <input class="form-control" type="text" id="father_fiscal_code" placeholder="Codice fiscale" wire:model="father_fiscal_code" maxlength="16">
- </div>
- <div class="col-xl-6">
- <label for="father_name" class="form-label"><b>Numero del documento</b></label>
- <input class="form-control" type="text" id="father_doc_number" placeholder="Numero documento" wire:model="father_doc_number">
- </div>
- <div class="col-xl-6">
- <label for="father_name" class="form-label"><b>Tipo documento</b></label>
- <select class="form-select form-select-lg me-1" aria-label=".form-select-lg example" wire:model="father_doc_type">
- <option value="">Seleziona il tipo documento</option>
- <option value="Carta di identità">Carta di identità</option>
- <option value="Passaporto">Passaporto</option>
- <option value="Patente">Patente</option>
- <option value="Permesso di soggiorno">Permesso di soggiorno</option>
- </select>
- </div>
- <div class="col-12">
- <label for="father_documents" class="form-label">File</label>
- <input class="form-control" type="file" wire:model="father_documents" multiple><br>
- <label for="father_documents" class="form-label">Caricati</label>
- @foreach ($father_document_files as $idx => $d)
- <div class="row">
- <div class="col-6">
- <a href="{{ asset('storage/app/public/'.$d) }}" target="_blank" class="form-label">{{$d}}</a>
- </div>
- <div class="col-6">
- <a wire:click="removeDocument({{$idx}},'father')" class="form-label">(elimina)</a><br>
- </div>
- </div>
- @endforeach
- </div>
- </div>
- <div class="row g-3 mt-1">
- <span class="title-form primary d-block w-100">Genitore 2</span>
- <div class="col-xl-6">
- <label for="mother_name" class="form-label"><b>Nominativo</b></label>
- <input class="form-control " type="text" id="mother_name" placeholder="Nome genitore 2" wire:model="mother_name">
- </div>
- <div class="col-xl-6">
- <label for="mother_name" class="form-label"><b>Email</b></label>
- <input class="form-control " type="text" id="mother_email" placeholder="Email" wire:model="mother_email">
- </div>
- <div class="col-xl-6">
- <label for="mother_name" class="form-label"><b>Telefono</b></label>
- <input class="form-control " type="text" id="mother_phone" placeholder="Telefono" wire:model="mother_phone">
- </div>
- <div class="col-xl-6">
- <label for="mother_name" class="form-label"><b>Codice fiscale</b></label>
- <input class="form-control " type="text" id="mother_fiscal_code" placeholder="Codice fiscale" wire:model="mother_fiscal_code" maxlength="16">
- </div>
- <div class="col-xl-6">
- <label for="mother_name" class="form-label"><b>Numero del documento</b></label>
- <input class="form-control " type="text" id="mother_doc_number" placeholder="Numero documento" wire:model="mother_doc_number">
- </div>
- <div class="col-xl-6">
- <label for="mother_name" class="form-label"><b>Tipo documento</b></label>
- <select class="form-select form-select-lg me-1" aria-label=".form-select-lg example" wire:model="mother_doc_type">
- <option value="">Seleziona il tipo documento</option>
- <option value="Carta di identità">Carta di identità</option>
- <option value="Passaporto">Passaporto</option>
- <option value="Patente">Patente</option>
- <option value="Permesso di soggiorno">Permesso di soggiorno</option>
- </select>
- </div>
- </div>
- <div class="col-12">
- <label for="mother_documents" class="form-label">File</label>
- <input class="form-control" type="file" wire:model="mother_documents" multiple><br>
- <label for="mother_documents" class="form-label">Caricati</label>
- @foreach ($mother_document_files as $idx => $d)
- <div class="row">
- <div class="col-6">
- <a href="{{ asset('storage/app/public/'.$d) }}" target="_blank" class="form-label">{{$d}}</a>
- </div>
- <div class="col-6">
- <a wire:click="removeDocument({{$idx}},'mother')" class="form-label">(elimina)</a><br>
- </div>
- </div>
- @endforeach
- </div>
- @endif
- <div class="row g-3 mt-1">
- <span class="title-form primary d-block w-100">Certificato Medico</span>
- @if($dataId > -1)
- @if(!$addCertificate && !$updateCertificate)
- <table class="table tablesaw tableHead tablesaw-stack" >
- <thead>
- <tr>
- <th scope="col">Tipo</th>
- <th scope="col">Scadenza</th>
- <th scope="col"></th>
- <th scope="col">...</th>
- </tr>
- </thead>
- <tbody >
- @foreach($member_certificates as $member_certificate)
- <tr>
- <td>{{$member_certificate->type == 'A' ? 'Agonistico' : 'Non agonistico'}}</td>
- <td>{{$member_certificate->expire_date ? date("d/m/Y", strtotime($member_certificate->expire_date)) : ''}}</td>
- <td>{!!$member_certificate->filename != '' ? '<a href="/storage/app/public/' . $member_certificate->filename . '" target="_blank">Visualizza</a>' : ''!!}</td>
- <td>
- <button type="button" class="btn" wire:click="editCertificate({{ $member_certificate->id }})" data-bs-toggle="popover" data-bs-trigger="hover focus" data-bs-placement="bottom" data-bs-content="Modifica"><i class="fa-regular fa-pen-to-square"></i></button>
- <button type="button" class="btn" onclick="confirm('Sei sicuro?') || event.stopImmediatePropagation()" wire:click="deleteCertificate({{ $member_certificate->id }})" data-bs-toggle="popover" data-bs-trigger="hover focus" data-bs-placement="bottom" data-bs-content="Elimina"><i class="fa-regular fa-trash-can"></i></button>
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- <button class="btn--ui primary"wire:click.prevent="addCertificate()" style="max-width:200px">Aggiungi</button>
- @else
- <div class="form--wrapper">
- <form class="form--utente">
- <div class="row ">
- <div class="col-md-6">
- <label for="certificate_type" class="form-label">Tipo</label>
- <select id="certificate_type" class="form-select certificate_type" aria-label="Tessera" wire:model="certificate_type">
- <option value="N">Non agonistico
- <option value="A">Agonistico
- </select>
- </div>
- <div class="col-md-6">
- <label for="certificate_expire_date" class="form-label">Data scadenza</label>
- <input class="form-control @error('certificate_expire_date') is-invalid @enderror" type="date" id="certificate_expire_date" placeholder="Data scadenza" wire:model="certificate_expire_date">
- </div>
- </div>
- <div class="col-12">
- <div class="upload--image_box d-flex align-items-center justify-content-center flex-column">
- <input class="form-control" type="file" wire:model="certificate_filename">
- </div>
- <p class="caption text-center mt-1">Formati consentiti: .jpg, .pdf, .docx</p>
- {!!$certificate_filename_old != '' ? '<br><a href="/storage/app/public/' . $certificate_filename_old . '" target="_blank">Visualizza</a>' : ''!!}
- </div>
- </form>
- </div>
- <br>
- <button class="btn--ui lightGrey" wire:click.prevent="cancelCertificate()">Annulla</button>
- @if($addCertificate)
- <button class="btn--ui primary" wire:click.prevent="storeCertificate()">Salva</button>
- @endif
- @if($updateCertificate)
- <button class="btn--ui primary" wire:click.prevent="updateCertificate()">Salva</button>
- @endif
- @endif
- @else
- <label for="last_name" class="form-label">Prima di caricare un certificato salva l'utente</label>
- @endif
- </div>
- </div>
- </form>
- </div>
- @endif
- @if($type == 'tesseramento')
- @if($dataId > 0)
- @if(!$addCard && !$updateCard)
- <table class="table tablesaw tableHead tablesaw-stack" id="tablesaw-350-1">
- <thead>
- <tr>
- <th scope="col">Carta</th>
- <th scope="col">Numero</th>
- <th scope="col">Scadenza</th>
- <th scope="col">...</th>
- </tr>
- </thead>
- <tbody id="checkall-target">
- @foreach($member_cards as $member_card)
- <tr>
- <td>{{$member_card->card->name}}</td>
- <td>{{$member_card->number}}</td>
- <td>{{$member_card->expire_date ? date("d/m/Y", strtotime($member_card->expire_date)) : ''}}</td>
- <td>
- <button type="button" class="btn" wire:click="editCard({{ $member_card->id }})" data-bs-toggle="popover" data-bs-trigger="hover focus" data-bs-placement="bottom" data-bs-content="Modifica"><i class="fa-regular fa-pen-to-square"></i></button>
- <button type="button" class="btn" onclick="confirm('Sei sicuro?') || event.stopImmediatePropagation()" wire:click="deleteCard({{ $member_card->id }})" data-bs-toggle="popover" data-bs-trigger="hover focus" data-bs-placement="bottom" data-bs-content="Elimina"><i class="fa-regular fa-trash-can"></i></button>
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- <button class="btn--ui primary"wire:click.prevent="addCard()" style="max-width:200px">Aggiungi</button>
- @else
- <div class="form--wrapper">
- <form class="form--utente">
- <div class="row ">
- <div class="col-md-6">
- <label for="card_card_id" class="form-label">Tessera</label>
- <select id="card_card_id" class="form-select card_card_id @error('card_card_id') is-invalid @enderror" aria-label="Tessera" wire:model="card_card_id">
- <option value="">--Seleziona--
- @foreach($cards as $card)
- <option value="{{$card->id}}">{{$card->name}}
- @endforeach
- </select>
- </div>
- <div class="col-md-6">
- <label for="card_number" class="form-label">Numero</label>
- <input class="form-control @error('card_number') is-invalid @enderror" type="text" id="card_number" placeholder="Numero" wire:model="card_number">
- </div>
- </div>
- <div class="row ">
- <div class="col-md-6">
- <label for="card_date" class="form-label">Data rilascio tessera</label>
- <input class="form-control" type="date" id="card_date" placeholder="Data" wire:model="card_date">
- </div>
- <div class="col-md-6">
- <label for="card_accept_date" class="form-label">Data accettazione</label>
- <input class="form-control" type="date" id="card_accept_date" placeholder="Data accettazione" wire:model="card_accept_date">
- </div>
- </div>
- <div class="row ">
- <div class="col-md-6">
- <label for="card_date" class="form-label">Disciplina 1</label>
- <select id="card_discipline1_id" class="form-select " aria-label="Disciplina 1" wire:model="card_discipline1_id">
- <option value="">--Seleziona--
- @foreach($disciplines as $d)
- <option value="{{$d->id}}">{{$d->name}}
- @endforeach
- </select>
- </div>
- <div class="col-md-6">
- <label for="card_date" class="form-label">Disciplina 2</label>
- <select id="card_discipline2_id" class="form-select " aria-label="Disciplina 2" wire:model="card_discipline2_id">
- <option value="">--Seleziona--
- @foreach($disciplines as $d)
- <option value="{{$d->id}}">{{$d->name}}
- @endforeach
- </select>
- </div>
- </div>
- @if($card_discipline2_id > 0)
- <div class="row ">
- <div class="col-md-6">
- <label for="card_date" class="form-label">Disciplina 3</label>
- <select id="card_discipline3_id" class="form-select " aria-label="Disciplina 3" wire:model="card_discipline3_id">
- <option value="">--Seleziona--
- @foreach($disciplines as $d)
- <option value="{{$d->id}}">{{$d->name}}
- @endforeach
- </select>
- </div>
- </div>
- @endif
- </form>
- </div>
- <br>
- <div class="row mt-2">
- <div class="col-md-12">
- <button class="btn--ui lightGrey" wire:click.prevent="cancelCard()">Annulla</button>
- @if($addCard)
- <button class="btn--ui primary" wire:click.prevent="storeCard()">Salva</button>
- @endif
- @if($updateCard)
- <button class="btn--ui primary" wire:click.prevent="updateCard()">Salva</button>
- @endif
- </div>
- </div>
- @endif
- <!--
- <button class="tab--btn w-100"><i class="ico--ui tessera me-2"></i><span class="btn_title">nessuna tessera registrata</span></button>
- <div class="tessere--tab">
- <div class="d-flex align-items-start">
- <div class="nav flex-column nav-pills" id="v-pills-tab" role="tablist" aria-orientation="vertical">
- <button class="nav-link active" id="v-pills-fit-tab" data-bs-toggle="pill" data-bs-target="#v-pills-fit" type="button" role="tab" aria-controls="v-pills-fit" aria-selected="true">Fit</button>
- <button class="nav-link" id="v-pills-uisp-tab" data-bs-toggle="pill" data-bs-target="#v-pills-uisp" type="button" role="tab" aria-controls="v-pills-uisp" aria-selected="false">UISP</button>
- <button class="nav-link" id="v-pills-mps-tab" data-bs-toggle="pill" data-bs-target="#v-pills-mps" type="button" role="tab" aria-controls="v-pills-mps" aria-selected="false" >MPS</button>
- <button class="nav-link" id="v-pills-csi-tab" data-bs-toggle="pill" data-bs-target="#v-pills-csi" type="button" role="tab" aria-controls="v-pills-csi" aria-selected="false">CSI</button>
- <button class="nav-link" id="v-pills-altro-tab" data-bs-toggle="pill" data-bs-target="#v-pills-altro" type="button" role="tab" aria-controls="v-pills-altro" aria-selected="false">Altro</button>
- </div>
- <div class="tab-content" id="v-pills-tabContent">
- <div class="tab-pane fade show active" id="v-pills-fit" role="tabpanel" aria-labelledby="v-pills-fit-tab" tabindex="0">
- <form class="form--tessere">
- <div class="mb-3">
- <label for="inputTessera" class="form-label">Numero Tessera</label>
- <input type="text" class="form-control" id="inputTessera">
- </div>
- <div class="mb-3">
- <label for="inputDate" class="form-label">Data di nascita</label>
- <div class="input-group mb-3">
- <input id="inputDate" type="text" class="form-control" aria-label="Recipient's username" aria-describedby="button-addon2">
- <button class="btn btn-outline-secondary" type="button" id="button-addon2">Date</button>
- </div>
- </div>
- <span class="scadenza-tessera">Scadenza: <strong>16 aprile 2024</strong></span>
- <button class="btn--ui_outline small mt-2"><i class="ico--ui tessera"></i>aggiungi tessera</button>
- </form>
- </div>
- <div class="tab-pane fade" id="v-pills-uisp" role="tabpanel" aria-labelledby="v-pills-uisp-tab" tabindex="0">...</div>
- <div class="tab-pane fade" id="v-pills-mps" role="tabpanel" aria-labelledby="v-pills-mps-tab" tabindex="0">...</div>
- <div class="tab-pane fade" id="v-pills-csi" role="tabpanel" aria-labelledby="v-pills-csi-tab" tabindex="0">...</div>
- <div class="tab-pane fade" id="v-pills-altro" role="tabpanel" aria-labelledby="v-pills-altro-tab" tabindex="0">...</div>
- </div>
- </div>
- </div>-->
- @endif
- @endif
- @if($type == 'gruppi')
- <form class="form--tesseramento mt-4">
- @livewire('categories')
- @if(false)
- <div class="tessera--added d-flex align-items-center justify-content-between mt-4 mb-3">
- <select id="category_category_id" class="form-select categoriesClass @error('category_category') is-invalid @enderror" aria-label="Gruppo" wire:model="category_category_id" style="width:100%;">
- <option value="">--Seleziona--
- @foreach($categories as $category)
- <option value="{{$category["id"]}}">{{$category["name"]}}
- @endforeach
- </select>
- <button class="btn--ui_outline" wire:click.prevent="storeCategory()" style="margin-left:20px"><i class="ico--ui gruppi"></i>aggiungi</button>
- </div>
- @endif
- <span style="color:red">{!!$groupMsg!!}</span>
- @foreach($member_categories as $member_category)
- <div class="tessera--added d-flex align-items-center justify-content-between mt-4 mb-3">
- <div class="tessera--added_name d-flex align-items-start">
- <i class="ico--ui gruppi me-2"></i>
- <div class="title--tessera_added">
- <h4>{{$member_category->category->getTree()}}</h4>
- </div>
- </div>
- <button type="button" class="btn" onclick="confirm('Sei sicuro?') || event.stopImmediatePropagation()" wire:click="deleteCategory({{ $member_category->id }})" data-bs-toggle="popover" data-bs-trigger="hover focus" data-bs-placement="bottom" data-bs-content="Elimina"><i class="fa-regular fa-trash-can"></i></button>
- </div>
- @endforeach
- </form>
- @endif
- @if($type == 'corsi')
- @if($dataId > 0)
- @if(!$addCourse && !$updateCourse)
- <table class="table tablesaw tableHead tablesaw-stack tabella--corsi" id="tablesaw-350-2" style="min-width:800px">
- <tbody id="checkall-target">
- @foreach($member_courses as $member_course)
- <tr>
- <td style="width:10%">
- <b>{{$member_course->course->name}}</b><br>
- </td>
- <td style="width:10%">
- {{$member_course->course->type->name ?? ""}}<br>
- </td>
- <td style="width:10%">
- {{$member_course->course->level->name ?? ""}}<br>
- </td>
- <td style="width:30%">
- @foreach(json_decode($member_course->when) as $xx => $x)
- @if($xx > 0)
- <br>
- @endif
- @foreach($x->day as $zz => $d)
- {{$zz > 0 ? '-' : ''}}{{$d}}
- @endforeach
- h {{$x->from}} - {{$x->to}}
- @endforeach
- </td>
- <td style="width:25%">
- @php
- $aMo = json_decode($member_course->months);
- if (sizeof($aMo) == 1)
- {
- print($this->getMonth($aMo[0]->m));
- }
- if (sizeof($aMo) > 1)
- {
- print($this->getMonth($aMo[0]->m) . " - " . $this->getMonth($aMo[sizeof($aMo) - 1]->m));
- }
- @endphp
- </td>
- @if(false)
- <td style="width:10%">Iscrizione:<br><b>{{$member_course->status == 1 ? 'Pagata' : ($member_course->status == 2 ? 'Da pagare' : 'Sospesa')}}</b></td>
- @endif
- <td style="text-align:right;width:15%">
- <button type="button" class="btn" wire:click="showHideCourse({{ $member_course->id }})"><i class="fa-solid fa-chevron-down"></i></button>
- </td>
- </tr>
- @if(in_array($member_course->id, $showCourse))
- <tr>
- <td colspan="5">
- <a class="{{$this->getSubscriptionStatus($member_course->subscribed, $member_course->id)}}" wire:click="setCreateSubscription({{$member_course->subscribed}}, {{$member_course->id}})" style="float:none; width:150px;{{$this->getSubscriptionStatus($member_course->subscribed,$member_course->id) == 'blue' || $this->getSubscriptionStatus($member_course->subscribed,$member_course->id) == 'orange' || $this->getSubscriptionStatus($member_course->subscribed,$member_course->id) == 'yellow' ? 'cursor:pointer' : ''}}">Iscrizione</a><br>
- <a class="{{$this->getMonthStatus(9, $member_course->months, $member_course->id)}}" wire:click="setPayMonth(9, '{{ $member_course->months }}', {{$member_course->id}})" {{$this->getMonthStatus(9, $member_course->months, $member_course->id) == 'blue' || $this->getMonthStatus(9, $member_course->months, $member_course->id) == 'orange' || $this->getMonthStatus(9, $member_course->months, $member_course->id) == 'yellow' ? 'style=cursor:pointer' : ''}}>Set</a>
- <a class="{{$this->getMonthStatus(10, $member_course->months, $member_course->id)}}" wire:click="setPayMonth(10, '{{ $member_course->months }}', {{$member_course->id}})" {{$this->getMonthStatus(10, $member_course->months, $member_course->id) == 'blue' || $this->getMonthStatus(10, $member_course->months, $member_course->id) == 'orange' || $this->getMonthStatus(10, $member_course->months, $member_course->id) == 'yellow' ? 'style=cursor:pointer' : ''}}>Ott</a>
- <a class="{{$this->getMonthStatus(11, $member_course->months, $member_course->id)}}" wire:click="setPayMonth(11, '{{ $member_course->months }}', {{$member_course->id}})" {{$this->getMonthStatus(11, $member_course->months, $member_course->id) == 'blue' || $this->getMonthStatus(11, $member_course->months, $member_course->id) == 'orange' || $this->getMonthStatus(11, $member_course->months, $member_course->id) == 'yellow' ? 'style=cursor:pointer' : ''}}>Nov</a>
- <a class="{{$this->getMonthStatus(12, $member_course->months, $member_course->id)}}" wire:click="setPayMonth(12, '{{ $member_course->months }}', {{$member_course->id}})" {{$this->getMonthStatus(12, $member_course->months, $member_course->id) == 'blue' || $this->getMonthStatus(12, $member_course->months, $member_course->id) == 'orange' || $this->getMonthStatus(12, $member_course->months, $member_course->id) == 'yellow' ? 'style=cursor:pointer' : ''}}>Dic</a>
- <a class="{{$this->getMonthStatus(1, $member_course->months, $member_course->id)}}" wire:click="setPayMonth(1, '{{ $member_course->months }}', {{$member_course->id}})" {{$this->getMonthStatus(1, $member_course->months, $member_course->id) == 'blue' || $this->getMonthStatus(1, $member_course->months, $member_course->id) == 'orange' || $this->getMonthStatus(1, $member_course->months, $member_course->id) == 'yellow' ? 'style=cursor:pointer' : ''}}>Gen</a>
- <a class="{{$this->getMonthStatus(2, $member_course->months, $member_course->id)}}" wire:click="setPayMonth(2, '{{ $member_course->months }}', {{$member_course->id}})" {{$this->getMonthStatus(2, $member_course->months, $member_course->id) == 'blue' || $this->getMonthStatus(2, $member_course->months, $member_course->id) == 'orange' || $this->getMonthStatus(2, $member_course->months, $member_course->id) == 'yellow' ? 'style=cursor:pointer' : ''}}>Feb</a>
- <a class="{{$this->getMonthStatus(3, $member_course->months, $member_course->id)}}" wire:click="setPayMonth(3, '{{ $member_course->months }}', {{$member_course->id}})" {{$this->getMonthStatus(3, $member_course->months, $member_course->id) == 'blue' || $this->getMonthStatus(3, $member_course->months, $member_course->id) == 'orange' || $this->getMonthStatus(3, $member_course->months, $member_course->id) == 'yellow' ? 'style=cursor:pointer' : ''}}>Mar</a>
- <a class="{{$this->getMonthStatus(4, $member_course->months, $member_course->id)}}" wire:click="setPayMonth(4, '{{ $member_course->months }}', {{$member_course->id}})" {{$this->getMonthStatus(4, $member_course->months, $member_course->id) == 'blue' || $this->getMonthStatus(4, $member_course->months, $member_course->id) == 'orange' || $this->getMonthStatus(4, $member_course->months, $member_course->id) == 'yellow' ? 'style=cursor:pointer' : ''}}>Apr</a>
- <a class="{{$this->getMonthStatus(5, $member_course->months, $member_course->id)}}" wire:click="setPayMonth(5, '{{ $member_course->months }}', {{$member_course->id}})" {{$this->getMonthStatus(5, $member_course->months, $member_course->id) == 'blue' || $this->getMonthStatus(5, $member_course->months, $member_course->id) == 'orange' || $this->getMonthStatus(5, $member_course->months, $member_course->id) == 'yellow' ? 'style=cursor:pointer' : ''}}>Mag</a>
- <a class="{{$this->getMonthStatus(6, $member_course->months, $member_course->id)}}" wire:click="setPayMonth(6, '{{ $member_course->months }}', {{$member_course->id}})" {{$this->getMonthStatus(6, $member_course->months, $member_course->id) == 'blue' || $this->getMonthStatus(6, $member_course->months, $member_course->id) == 'orange' || $this->getMonthStatus(6, $member_course->months, $member_course->id) == 'yellow' ? 'style=cursor:pointer' : ''}}>Giu</a>
- <a class="{{$this->getMonthStatus(7, $member_course->months, $member_course->id)}}" wire:click="setPayMonth(7, '{{ $member_course->months }}', {{$member_course->id}})" {{$this->getMonthStatus(7, $member_course->months, $member_course->id) == 'blue' || $this->getMonthStatus(7, $member_course->months, $member_course->id) == 'orange' || $this->getMonthStatus(7, $member_course->months, $member_course->id) == 'yellow' ? 'style=cursor:pointer' : ''}}>Lug</a>
- <a class="{{$this->getMonthStatus(8, $member_course->months, $member_course->id)}}" wire:click="setPayMonth(8, '{{ $member_course->months }}', {{$member_course->id}})" {{$this->getMonthStatus(8, $member_course->months, $member_course->id) == 'blue' || $this->getMonthStatus(8, $member_course->months, $member_course->id) == 'orange' || $this->getMonthStatus(8, $member_course->months, $member_course->id) == 'yellow' ? 'style=cursor:pointer' : ''}}>Ago</a>
- </td>
- <td>
- <button type="button" class="btn" wire:click="editCourse({{ $member_course->id }})" data-bs-toggle="popover" data-bs-trigger="hover focus" data-bs-placement="bottom" data-bs-content="Modifica"><i class="fa-regular fa-pen-to-square"></i></button>
- <button type="button" class="btn" onclick="confirm('Sei sicuro?') || event.stopImmediatePropagation()" wire:click="deleteCourse({{ $member_course->id }})" data-bs-toggle="popover" data-bs-trigger="hover focus" data-bs-placement="bottom" data-bs-content="Elimina"><i class="fa-regular fa-trash-can"></i></button>
- </td>
- </tr>
- <tr>
- <td colspan="6">
- @if($selectedCourseMember == $member_course->id)
- @if(sizeof($payMonths) > 0 || $createSubscription)
- <button class="btn--ui primary" style="color:white" wire:click="newPayment({{$member_course}})">Nuova entrata</button>
- <button class="btn--ui primary" style="color:white" wire:click="block({{$member_course}})">Sospendi</button>
- @endif
- @if(sizeof($suspendedMonths) > 0)
- <button class="btn--ui primary" style="color:white" wire:click="reactivate({{$member_course}})">Riattiva</button>
- @endif<br>
- @endif
- @if($member_course->notes != '')
- <br><b>Note</b><br>
- {{$member_course->notes}}
- @endif
- </td>
- </tr>
- @endif
- @endforeach
- </tbody>
- </table>
- <button class="btn--ui primary"wire:click.prevent="addCourse()" style="max-width:200px">Aggiungi</button>
- @else
- <div class="form--wrapper">
- <form class="form--utente">
- @if(false)
- <div class="row ">
- <div class="col-md-6">
- <label for="course_course_id" class="form-label">Corso</label>
- <select id="course_course_id" class="form-select @error('course_course_id') is-invalid @enderror" aria-label="Corso" wire:model="course_course_id" >
- <option value="">
- @foreach($courses as $course)
- <option value="{{$course->id}}">{{$course->name}} - {{$course->level->name ?? ""}} - {{$course->type->name ?? ""}} - {{$course->frequency->name ?? ""}}
- @endforeach
- </select>
- @if($course_exist)
- <small style="color:red">Attenzione : il corso selezionato è già associato all'utente</small>
- @endif
- </div>
- </div>
- @endif
- <div class="row ">
- <div class="col-md-3">
- <label for="course_name" class="form-label">Corso</label>
- <select id="course_name" class="form-select @error('course_course_id') is-invalid @enderror" aria-label="Corso" wire:model="course_name" >
- <option value="">
- @foreach($course_names as $n)
- <option value="{{$n}}">{{$n}}
- @endforeach
- </select>
- @error('course_course_id')
- <div class="invalid-feedback">Devi selezionare un corso (corso, livello, tipologia e frequenza)</div>
- @enderror
- @if($course_exist)
- <small style="color:red">Attenzione : il corso selezionato è già associato all'utente</small>
- @endif
- </div>
- @if($course_name != '')
- <div class="col-md-3">
- <label for="course_level_id" class="form-label">Livello</label>
- <select id="course_level_id" class="form-select" aria-label="Livello" wire:model="course_level_id" >
- <option value="">
- @foreach($course_levels as $l)
- <option value="{{$l->id}}">{{$l->name}}
- @endforeach
- </select>
- </div>
- @endif
- @if($course_level_id != '')
- <div class="col-md-3">
- <label for="course_type_id" class="form-label">Tipologia</label>
- <select id="course_type_id" class="form-select" aria-label="Tipologia" wire:model="course_type_id" >
- <option value="">
- @foreach($course_types as $t)
- <option value="{{$t->id}}">{{$t->name}}
- @endforeach
- </select>
- </div>
- @endif
- @if($course_type_id != '')
- <div class="col-md-3">
- <label for="course_frequency_id" class="form-label">Frequenza</label>
- <select id="course_frequency_id" class="form-select" aria-label="Tipologia" wire:model="course_frequency_id" >
- <option value="">
- @foreach($course_frequencies as $f)
- <option value="{{$f->id}}">{{$f->name}}
- @endforeach
- </select>
- </div>
- @endif
- </div>
- <div class="row mt-4">
- <div class="col-md-6">
- <label for="course_course_subscription_id" class="form-label">Abbonamento</label>
- <select id="course_course_subscription_id" class="form-select @error('course_course_subscription_id') is-invalid @enderror" aria-label="Abbonamento" wire:model="course_course_subscription_id">
- <option value="">
- @foreach($course_subscriptions as $t)
- <option value="{{$t["id"]}}">{{$t["name"]}}
- @endforeach
- </select>
- </div>
- <div class="col-md-6">
- <label for="course_price" class="form-label">Costo mensile</label>
- <input class="form-control" type="text" id="course_price" placeholder="Costo mensile" wire:model="course_price" onkeyup="onlyNumberAmount(this)">
- </div>
- @if(false)
- <div class="col-md-6">
- <label for="course_status" class="form-label">Stato iscrizione</label>
- <select id="course_status" class="form-select @error('course_status') is-invalid @enderror" aria-label="Stato" wire:model="course_status">
- <option value="">
- <option value="1">Pagata
- <option value="2">Da pagare
- <option value="3">Sospesa
- </select>
- </div>
- @endif
- </div>
- <div class="row mt-4 course--duration">
- <div class="col-md-12">
- <label for="duration" class="form-label">Durata del corso</label>
- <div class="d-flex course--duration_mounth">
- <a class="{{$this->checkMonth(9) ? 'selected' : 'notSelected'}}" wire:click="setMonth(9)">Set</a>
- <a class="{{$this->checkMonth(10) ? 'selected' : 'notSelected'}}" wire:click="setMonth(10)">Ott</a>
- <a class="{{$this->checkMonth(11) ? 'selected' : 'notSelected'}}" wire:click="setMonth(11)">Nov</a>
- <a class="{{$this->checkMonth(12) ? 'selected' : 'notSelected'}}" wire:click="setMonth(12)">Dic</a>
- <a class="{{$this->checkMonth(1) ? 'selected' : 'notSelected'}}" wire:click="setMonth(1)">Gen</a>
- <a class="{{$this->checkMonth(2) ? 'selected' : 'notSelected'}}" wire:click="setMonth(2)">Feb</a>
- <a class="{{$this->checkMonth(3) ? 'selected' : 'notSelected'}}" wire:click="setMonth(3)">Mar</a>
- <a class="{{$this->checkMonth(4) ? 'selected' : 'notSelected'}}" wire:click="setMonth(4)">Apr</a>
- <a class="{{$this->checkMonth(5) ? 'selected' : 'notSelected'}}" wire:click="setMonth(5)">Mag</a>
- <a class="{{$this->checkMonth(6) ? 'selected' : 'notSelected'}}" wire:click="setMonth(6)">Giu</a>
- <a class="{{$this->checkMonth(7) ? 'selected' : 'notSelected'}}" wire:click="setMonth(7)">Lug</a>
- <a class="{{$this->checkMonth(8) ? 'selected' : 'notSelected'}}" wire:click="setMonth(8)">Ago</a>
- </div>
- </div>
- </div>
- <div class="row mt-4">
- <div class="col-md-6">
- <label for="course_subscription_price" class="form-label">Costo iscrizione</label>
- <input class="form-control" type="text" id="course_subscription_price" placeholder="Costo iscrizione" wire:model="course_subscription_price" onkeyup="onlyNumberAmount(this)">
- </div>
- </div>
- @if(false)
- <div class="row mt-4">
- <div class="col-md-6">
- <label for="course_date_from" class="form-label">Dal</label>
- <input class="form-control" type="date" id="course_date_from" placeholder="Dal" wire:model="course_date_from">
- </div>
- <div class="col-md-6">
- <label for="course_date_to" class="form-label">Al</label>
- <input class="form-control" type="date" id="course_date_to" placeholder="Al" wire:model="course_date_to">
- </div>
- </div>
- @endif
- @foreach($course_when as $idW => $when)
- <div class="row">
- <div class="col-12">
- <div class="day durata--corso d-flex">
- <label for="" class="form-label">Giorno</label>
- <div class="durata--corso_days mb-3">
- <a class="{{in_array('lun', $course_when[$idW]["day"]) ? 'selected' : 'notSelected'}}" wire:click="setDay({{$idW}}, 'lun')">Lun</a>
- <a class="{{in_array('mar', $course_when[$idW]["day"]) ? 'selected' : 'notSelected'}}" wire:click="setDay({{$idW}}, 'mar')">Mar</a>
- <a class="{{in_array('mer', $course_when[$idW]["day"]) ? 'selected' : 'notSelected'}}" wire:click="setDay({{$idW}}, 'mer')">Mer</a>
- <a class="{{in_array('gio', $course_when[$idW]["day"]) ? 'selected' : 'notSelected'}}" wire:click="setDay({{$idW}}, 'gio')">Gio</a>
- <a class="{{in_array('ven', $course_when[$idW]["day"]) ? 'selected' : 'notSelected'}}" wire:click="setDay({{$idW}}, 'ven')">Ven</a>
- <a class="{{in_array('sab', $course_when[$idW]["day"]) ? 'selected' : 'notSelected'}}" wire:click="setDay({{$idW}}, 'sab')">Sab</a>
- <a class="{{in_array('dom', $course_when[$idW]["day"]) ? 'selected' : 'notSelected'}}" wire:click="setDay({{$idW}}, 'dom')">Dom</a>
- </div>
- <div class="durata--corso_select">
- <div class="from--h me-3">
- <label for="" class="form-label">Dalle</label>
- <select class="form-select" wire:model="course_when.{{$idW}}.from">
- <option value="">--Seleziona--
- @for($c=6;$c<=23;$c++)
- <option value="{{str_pad($c, 2, "0", STR_PAD_LEFT)}}:00">{{str_pad($c, 2, "0", STR_PAD_LEFT)}}:00
- <option value="{{str_pad($c, 2, "0", STR_PAD_LEFT)}}:30">{{str_pad($c, 2, "0", STR_PAD_LEFT)}}:30
- @endfor
- </select>
- </div>
- <div class="to--h">
- <label for="" class="form-label">Alle</label>
- <select class="form-select" wire:model="course_when.{{$idW}}.to">
- <option value="">--Seleziona--
- @for($c=6;$c<=23;$c++)
- <option value="{{str_pad($c, 2, "0", STR_PAD_LEFT)}}:00">{{str_pad($c, 2, "0", STR_PAD_LEFT)}}:00
- <option value="{{str_pad($c, 2, "0", STR_PAD_LEFT)}}:30">{{str_pad($c, 2, "0", STR_PAD_LEFT)}}:30
- @endfor
- </select>
- </div>
- </div>
- <button class="btn--ui primary remove--day position-absolute" wire:click.prevent="delRow({{$idW}})"><i class="fa-solid fa-minus"></i></button>
- <button class="btn--ui primary add--day position-absolute" wire:click.prevent="addRow()"><i class="fa-solid fa-plus"></i></button>
- </div>
- </div>
- </div>
- @endforeach
- <div class="row mt-2">
- <div class="col-md-12">
- <label for="course_date_from" class="form-label">Note</label>
- <input class="form-control" type="text" id="course_note" placeholder="Note" wire:model="course_note">
- </div>
- </div>
- </form>
- </div>
- <br>
- <div class="row mt-2">
- <div class="col-md-12">
- <button class="btn--ui lightGrey" wire:click.prevent="cancelCourse()">Annulla</button>
- @if($addCourse)
- @if(!$course_exist)
- <button class="btn--ui primary" wire:click.prevent="storeCourse()">Salva corso</button>
- @endif
- @endif
- @if($updateCourse)
- <button class="btn--ui primary" wire:click.prevent="updateCourse()">Salva corso</button>
- @endif
- </div>
- </div>
- @endif
- @endif
- @endif
- </div>
- </div>
- <div class="col-md-5 col-xl-4 p-3">
- <div id="card--resume" class="primary card--ui ms-3 user--resume">
- <header>
- <div class="username d-flex align-items-start">
- <i class="ico--ui utenti light me-2"></i>
- <div class="user--resume_name d-flex flex-column">
- <span class="user-name">{{ strtoupper($first_name) }} {{ strtoupper($last_name) }}</span>
- <span class="user-email">{{ $birth_date ? date("d/m/Y", strtotime($birth_date)) : '' }}{!!$age != '' ? ' (' . $age . ')' : ''!!}</span>
- </div>
- </div>
- </header>
- <div class="card--resume_body">
- <ul class="user-address mb-4 p-0">
- <li><i class="ico--ui resume--ico phone me-2"></i><span>Tel. {{ $phone }}</span></li>
- <li><i class="ico--ui resume--ico mail light me-2"></i><span>{{ $email }}</span></li>
- </ul>
- <ul class="user-residence p-0">
- <li><i class="ico--ui resume--ico residence me-2"></i>
- <span>
- @if($city_id > 0)
- {{$this->getCity($city_id)}}
- @if($province_id > 0)
- ( {{$this->getProvince($province_id)}} ) -
- @endif
- @endif
- {{ $zip_code }}<br>
- {{ $address }}
- </span>
- </li>
- </ul>
- <div class="resume--tab_info credito">
- <h2 class="mb-3">Borsellino MAD</h2>
- <span class="value">{{formatPrice($money)}}</span>
- </div>
- <div class="resume--tab_info gruppi corsi">
- <h2 class="mb-3">Corsi</h2>
- @foreach($member_courses as $member_course)
- <div class="resume--info d-flex align-items-center">
- <div class="row" style="margin-top:10px">
- <div class="row">
- <strong>{{$member_course->course->getTree()}}</strong></span><br>
- </div>
- <div class="row">
- <span class="title-detail">
- @php
- $aMo = json_decode($member_course->months);
- if (sizeof($aMo) == 1)
- {
- print($this->getMonth($aMo[0]->m));
- }
- if (sizeof($aMo) > 1)
- {
- print($this->getMonth($aMo[0]->m) . " - " . $this->getMonth($aMo[sizeof($aMo) - 1]->m));
- }
- @endphp
- </span>
- </div>
- <div class="row">
- <span class="title-detail">
- @foreach(json_decode($member_course->when) as $xx => $x)
- @if($xx > 0)
- <br>
- @endif
- @foreach($x->day as $d)
- {{$d}}
- @endforeach
- {{$x->from}} - {{$x->to}}
- @endforeach
- </span>
- </div>
- </div>
- </div>
- @endforeach
- </div>
- <div class="resume--tab_info tesseramento">
- <h2 class="mb-3">Tesseramento</h2>
- @foreach($member_cards as $member_card)
- @if($member_card->expire_date . " 23:59:59" > date("Y-m-d"))
- <div class="resume--wrapper d-flex align-items-start justify-content-between mb-2">
- <div class="resume--info d-flex align-items-start">
- <i class="ico--ui tessera me-2"></i>
- <div class="title--tessera_added">
- <h4>{{$member_card->card->name}}</h4>
- <span class="title-detail">Scadenza: <span class="title-detail_date">{{$member_card->expire_date ? date("d/m/Y", strtotime($member_card->expire_date)) : ''}}</span></span></small>
- @if($member_card->discipline_1)
- </br>
- <span class="title-detail">Disciplina : <b>{{$member_card->discipline_1->name}}</b></span>
- @endif
- @if($member_card->discipline_2)
- </br>
- <span class="title-detail">Disciplina : <b>{{$member_card->discipline_2->name}}</b></span>
- @endif
- @if($member_card->discipline_3)
- </br>
- <span class="title-detail">Disciplina : <b>{{$member_card->discipline_3->name}}</b></span>
- @endif
- </div>
- </div>
- <span class="badge tessera-badge active">attiva</span>
- </div>
- @endif
- @endforeach
- <!--
- <div class="resume--wrapper d-flex align-items-start justify-content-between mb-2">
- <div class="resume--info d-flex align-items-start">
- <i class="ico--ui tessera me-2"></i>
- <div class="title--tessera_added">
- <h4>Tennis/Corso Tennis/Adulti/Bisettimanale</h4>
- <span class="title-detail">Iscrizione: <span class="title-detail_date">12 marzo 2022</span></span></small>
- </div>
- </div>
- <span class="badge tessera-badge active">attiva</span>
- </div>-->
- </div>
- <div class="resume--tab_info tesseramento">
- <h2 class="mb-3">Certificato</h2>
- @if(sizeof($member_certificates) > 0)
- @php
- $cert = $member_certificates[0]
- @endphp
- @if($cert->expire_date . " 23:59:59" > date("Y-m-d"))
- <div class="resume--wrapper d-flex align-items-start justify-content-between mb-2">
- <div class="resume--info d-flex align-items-start">
- <i class="fa-regular fa-file-lines me-2"></i>
- <div class="title--tessera_added">
- <h4>{{$cert->type == 'A' ? 'Agonistico' : 'Non agonistico'}}</h4>
- <span class="title-detail">Scadenza: <span class="title-detail_date">{{$cert->expire_date ? date("d/m/Y", strtotime($cert->expire_date)) : ''}}</span></span></small>
- </div>
- </div>
- @if($cert->expire_date . " 23:59:59" < date("Y-m-d"))
- <span class="badge tessera-badge suspended">scaduto</span>
- @endif
- @if($cert->expire_date . " 23:59:59" >= date("Y-m-d") && $cert->expire_date < date("Y-m-d", strtotime("+1 month")))
- <span class="badge tessera-badge due">in scadenza</span>
- @endif
- @if($cert->expire_date . " 23:59:59" >= date("Y-m-d", strtotime("+1 month")))
- <span class="badge tessera-badge active">valido</span>
- @endif
- </div>
- @endif
- @endif
- <!--
- <div class="resume--wrapper d-flex align-items-start justify-content-between mb-2">
- <div class="resume--info d-flex align-items-start">
- <i class="ico--ui tessera me-2"></i>
- <div class="title--tessera_added">
- <h4>Tennis/Corso Tennis/Adulti/Bisettimanale</h4>
- <span class="title-detail">Iscrizione: <span class="title-detail_date">12 marzo 2022</span></span></small>
- </div>
- </div>
- <span class="badge tessera-badge active">attiva</span>
- </div>-->
- </div>
- <div class="resume--tab_info gruppi">
- <h2 class="mb-3">Gruppi di appartenenza</h2>
- @foreach($member_categories as $member_category)
- <div class="resume--info d-flex align-items-center">
- <i class="ico--ui gruppi me-2"></i><span><strong>{{$member_category->category->getTree()}}</strong></span>
- </div>
- @endforeach
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- save & continue section -->
- <section class="save--section d-flex justify-content-start">
- <div class="container">
- <div class="row">
- <div class="col-md-7 col-xl-8 d-flex gx-0">
- @if($add)
- <button class="btn--ui primary d-flex order-1 me-2" wire:click="store(false)">salva e continua</button>
- <button class="btn--ui primary d-flex order-3 ms-auto" wire:click="store(true)">salva e chiudi</button>
- @endif
- @if($update)
- <button class="btn--ui primary d-flex order-1 me-2" wire:click="updateAAA(false)">salva e continua</button>
- <button class="btn--ui primary d-flex order-3 ms-auto" wire:click="updateAAA(true)">salva e chiudi</button>
- @endif
- <button class="btn--ui lightGrey" onclick="annulla()" style="margin-right:10px">annulla</button><br><br>
- </div>
- <div class="col-md-5 col-xl-4"></div>
- </div>
- </div>
- </section>
- @endif
- </div>
- @endif
- <div wire:ignore.self class="modal fade" id="userModal" tabindex="-1" aria-labelledby="userModalLabel" aria-hidden="true">
- <div class="modal-dialog">
- <div class="modal-content">
- <div class="modal-header">
- <h5 class="modal-title" id="userModalLabel">Modifica borsellino</h5>
- <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
- </div>
- <div class="modal-body">
- <div class="row">
- <div class="col-md-6">
- <label for="newMemberFirstName" class="form-label">Importo</label>
- <input class="form-control " type="text" id="importoBorsellino" >
- </div>
- </div>
- </div>
- <div class="modal-footer">
- <button type="button" class="btn--ui lightGrey" data-bs-dismiss="modal">Annulla</button>
- <button type="button" class="btn--ui btn-primary" onclick="updateBorsellino('-')">Decrementa</button>
- <button type="button" class="btn--ui btn-primary" onclick="updateBorsellino('+')">Aumenta</button>
- </div>
- </div>
- </div>
- </div>
- </div>
- @push('scripts')
- <link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" />
- <style>
- table.tableHead thead {
- /* Important */
- position: sticky;
- z-index: 100;
- top: 0;
- }
- .select2-container--default .select2-selection--single{
- background-color: #E9F0F5;
- border: 0.0625rem solid #DFE5EB;
- font-size: 0.75rem;
- }
- .select2-selection
- {
- height: 38px !important;
- }
- .select2-selection__rendered
- {
- padding-top:3px;
- }
- .select2
- {
- width:100% !important;
- }
- a.notSelected
- {
- display: flex;
- margin-right:10px;
- float:left;
- height: 2.5rem !important;
- width:50px;
- align-items: center;
- justify-content: center;
- color: #006099;
- background-color: #d3dce1 !important;
- padding: 0 1.25rem;
- font-size: 0.875rem;
- font-family: greycliff-cf, sans-serif;
- border-radius: 1.875rem !important;
- -webkit-border-radius: 1.875rem !important;
- -moz-border-radius: 1.875rem !important;
- -webkit-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- -o-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;
- border: none;
- }
- a.selected
- {
- display: flex;
- margin-right:10px;
- float:left;
- height: 2.5rem !important;
- width:50px;
- align-items: center;
- justify-content: center;
- color: #fff;
- background-color: #006099 !important;
- padding: 0 1.25rem;
- font-size: 0.875rem;
- font-family: greycliff-cf, sans-serif;
- border-radius: 1.875rem !important;
- -webkit-border-radius: 1.875rem !important;
- -moz-border-radius: 1.875rem !important;
- -webkit-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- -o-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;
- border: none;
- }
- div.day
- {
- margin-top:20px;
- color: #006099;
- background-color: #ffffff !important;
- padding: 20px;
- border-radius: 1.875rem !important;
- -webkit-border-radius: 1.875rem !important;
- -moz-border-radius: 1.875rem !important;
- -webkit-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- -o-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;
- border: 2px solid #d3dce1;
- }
- /* a.grey
- {
- display: flex;
- margin-right:10px;
- float:left;
- height: 2.5rem !important;
- width:50px;
- align-items: center;
- justify-content: center;
- color: #006099;
- background-color: #d3dce1 !important;
- padding: 0 1.25rem;
- font-size: 0.875rem;
- font-family: greycliff-cf, sans-serif;
- border-radius: 1.875rem !important;
- -webkit-border-radius: 1.875rem !important;
- -moz-border-radius: 1.875rem !important;
- -webkit-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- -o-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;
- border: none;
- }
- a.blue
- {
- display: flex;
- margin-right:10px;
- float:left;
- height: 2.5rem !important;
- width:50px;
- align-items: center;
- justify-content: center;
- color: #fff;
- background-color: #006099 !important;
- padding: 0 1.25rem;
- font-size: 0.875rem;
- font-family: greycliff-cf, sans-serif;
- border-radius: 1.875rem !important;
- -webkit-border-radius: 1.875rem !important;
- -moz-border-radius: 1.875rem !important;
- -webkit-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- -o-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;
- border: none;
- }
- a.yellow
- {
- display: flex;
- margin-right:10px;
- float:left;
- height: 2.5rem !important;
- width:50px;
- align-items: center;
- justify-content: center;
- color: #fff;
- background-color: #ffe238;
- padding: 0 1.25rem;
- font-size: 0.875rem;
- font-family: greycliff-cf, sans-serif;
- border-radius: 1.875rem !important;
- -webkit-border-radius: 1.875rem !important;
- -moz-border-radius: 1.875rem !important;
- -webkit-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- -o-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;
- border: none;
- }
- a.orange
- {
- display: flex;
- margin-right:10px;
- float:left;
- height: 2.5rem !important;
- width:50px;
- align-items: center;
- justify-content: center;
- color: #fff;
- background-color: #FF7E38;
- padding: 0 1.25rem;
- font-size: 0.875rem;
- font-family: greycliff-cf, sans-serif;
- border-radius: 1.875rem !important;
- -webkit-border-radius: 1.875rem !important;
- -moz-border-radius: 1.875rem !important;
- -webkit-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- -o-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;
- border: none;
- }
- a.green
- {
- display: flex;
- margin-right:10px;
- float:left;
- height: 2.5rem !important;
- width:50px;
- align-items: center;
- justify-content: center;
- color: #fff;
- background-color: green;
- padding: 0 1.25rem;
- font-size: 0.875rem;
- font-family: greycliff-cf, sans-serif;
- border-radius: 1.875rem !important;
- -webkit-border-radius: 1.875rem !important;
- -moz-border-radius: 1.875rem !important;
- -webkit-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- -o-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;
- border: none;
- }
- .btn--ui
- {
- -webkit-border-radius: 0.5rem !important;
- background-color:#0C6197 !important;
- font-weight:normal;
- } */
- .btn--ui.lightGrey, .btn--ui.extraLightGrey
- {
- -webkit-border-radius: 0.5rem !important;
- background-color:#ffffff !important;
- border: 1px solid grey;
- color: black;
- font-weight:normal;
- }
- </style>
- <script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
- <script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>
- @endpush
- @push('scripts')
- <script>
- function matchStart(params, data) {
- params.term = params.term || '';
- if (data.text.toUpperCase().indexOf(params.term.toUpperCase()) == 0) {
- return data;
- }
- return false;
- }
- var nation_id = {{$nation_id > 0 ? $nation_id : 0}};
- var province_id = 0;
- /*
- $('.nationClass').select2({
- // theme: 'bootstrap4',
- ajax: {
- url: '/nations',
- dataType: 'json'
- }
- });
- $('.nationClass').on('change', function (e) {
- nation_id = $('.nationClass').select2("val");
- @this.set('nation_id', nation_id);
- @this.set('province_id', 0);
- @this.set('city_id', 0);
- @this.checkIsItaly();
- });
- $('.provinceClass').select2({
- ajax: {
- url: '/provinces/' + nation_id,
- dataType: 'json'
- }
- });
- $('.cityClass').select2({"language": {"noResults": function(){return "Nessun risultato";}}});*/
- var nation_birth_id = 0;
- var province_birth_id = 0;
- /*
- $('.nationBirthClass').select2({
- // theme: 'bootstrap4',
- ajax: {
- url: '/nations',
- dataType: 'json'
- }
- });
- $('.nationBirthClass').on('change', function (e) {
- nation_birth_id = $('.nationBirthClass').select2("val");
- @this.set('birth_nation_id', nation_birth_id);
- @this.set('birth_province_id', 0);
- @this.set('birth_city_id', 0);
- @this.checkIsBirthItaly();
- });
- $('.provinceBirthClass').select2({"language": {"noResults": function(){return "Nessun risultato";}}});
- $('.cityBirthClass').select2({"language": {"noResults": function(){return "Nessun risultato";}}});*/
- Livewire.on('load-select', () => {
- loadCombo();
- });
- function updateBorsellino(verse)
- {
- var importoBorsellino = $("#importoBorsellino").val();
- @this.updateBorsellino(importoBorsellino, verse);
- }
- Livewire.on('load-provinces', (nation_id, element) => {
- $('.' + element).select2({
- ajax: {
- url: '/provinces/' + nation_id,
- dataType: 'json'
- }
- });
- });
- Livewire.on('load-cities', (province_id, element) => {
- $('.' + element).select2({
- ajax: {
- url: '/cities/' + province_id,
- dataType: 'json'
- }
- });
- });
- Livewire.on('hide-search', () => {
- //pcsh2();
- });
- Livewire.on('setIds', (nation_id_x, birth_nation_id_x) => {
- nation_id = nation_id_x;
- nation_birth_id = birth_nation_id_x;
- });
- function loadCombo()
- {
- $('.nationClass').select2({
- ajax: {
- url: '/nations',
- dataType: 'json'
- }
- });
- $('.nationClass').on('change', function (e) {
- nation_id = $('.nationClass').select2("val");
- province_id = 0;
- @this.set('nation_id', nation_id);
- @this.set('province_id', 0);
- @this.set('city_id', 0);
- @this.checkIsItaly();
- });
- $('.provinceClass').select2({
- ajax: {
- url: '/provinces/' + nation_id,
- dataType: 'json'
- }
- });
- $('.provinceClass').on('change', function (e) {
- province_id = $('.provinceClass').select2("val");
- @this.set('province_id', province_id);
- @this.set('city_id', 0);
- });
- $('.cityClass').select2({
- ajax: {
- url: '/cities/' + province_id,
- dataType: 'json'
- }
- });
- $('.cityClass').on('change', function (e) {
- var data = $('.cityClass').select2("val");
- @this.set('city_id', data);
- });
- $('.nationBirthClass').select2({
- ajax: {
- url: '/nations',
- dataType: 'json'
- }
- });
- $('.nationBirthClass').on('change', function (e) {
- nation_birth_id = $('.nationBirthClass').select2("val");
- province_birth_id = 0;
- @this.set('birth_nation_id', nation_birth_id);
- @this.set('birth_province_id', 0);
- @this.set('birth_city_id', 0);
- @this.checkIsBirthItaly();
- });
- $('.provinceBirthClass').select2({
- ajax: {
- url: '/provinces/' + nation_birth_id,
- dataType: 'json'
- }
- });
- $('.provinceBirthClass').on('change', function (e) {
- province_birth_id = $('.provinceBirthClass').select2("val");
- @this.set('birth_province_id', province_birth_id);
- @this.set('birth_city_id', 0);
- });
- $('.cityBirthClass').select2({
- ajax: {
- url: '/cities/' + province_birth_id,
- dataType: 'json'
- }
- });
- $('.cityBirthClass').on('change', function (e) {
- var data = $('.cityBirthClass').select2("val");
- @this.set('birth_city_id', data);
- });
- $('.card_card_id').select2({
- matcher: function(params, data) {
- return matchStart(params, data);
- }
- });
- $('.card_card_id').on('change', function (e) {
- var data = $('.card_card_id').select2("val");
- @this.set('card_card_id', data);
- });
- $('.certificate_type').select2({
- matcher: function(params, data) {
- return matchStart(params, data);
- }
- });
- $('.certificate_type').on('change', function (e) {
- var data = $('.certificate_type').select2("val");
- @this.set('certificate_type', data);
- });
- $('.categoriesClass').select2({
- matcher: function(params, data) {
- return matchStart(params, data);
- }
- });
- $('.categoriesClass').on('change', function (e) {
- var data = $('.categoriesClass').select2("val");
- @this.set('category_category_id', data);
- });
- $('.coursesClass').select2({
- matcher: function(params, data) {
- return matchStart(params, data);
- }
- });
- $('.coursesClass').on('change', function (e) {
- var data = $('.coursesClass').select2("val");
- @this.set('course_course_id', data);
- });
- }
- @if($refreshAfter == 1)
- setTimeout(() => {
- loadCombo();
- }, 100)
- @endif
- function onlyNumberAmount(input) {
- let v = input.value.replace(/\D+/g, '');
- if (v.length > 14) v = v.slice(0, 14);
- input.value = "€ " + v.replace(/(\d)(\d\d)$/, "$1,$2").replace(/(^\d{1,3}|\d{3})(?=(?:\d{3})+(?:,|$))/g, '$1.');
- }
- </script>
- @endpush
- @push('scripts')
- <link href="/css/datatables.css" rel="stylesheet" />
- <script src="/assets/js/datatables.js"></script>
- <script src="https://cdn.datatables.net/buttons/3.0.2/js/buttons.dataTables.js"></script>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.10.1/jszip.min.js"></script>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.2.7/pdfmake.min.js"></script>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.2.7/vfs_fonts.js"></script>
- @endpush
- @push('scripts')
- <script>
- function showData(id)
- {
- @this.showDetailF(id);
- }
- function editData(id) {
- if ($('#tablesaw-350').length && $.fn.DataTable.isDataTable('#tablesaw-350')) {
- const dataTable = $('#tablesaw-350').DataTable();
- const pageLength = dataTable.page.len();
- const currentPage = dataTable.page.info().page;
- const order = dataTable.order();
- if (order && order.length > 0) {
- localStorage.setItem('dtOrderColumn', order[0][0]);
- localStorage.setItem('dtOrderDir', order[0][1]);
- }
- }
- window.scrollTo({
- top: 0,
- behavior: 'smooth'
- });
- @this.edit(id);
- }
- function deleteData(id)
- {
- if (confirm('Sei sicuro?'))
- @this.delete(id);
- }
- var isFilter = false;
- $(document).ready(function() {
- $(document).on("click",".showHideFilter",function() {
- if (isFilter)
- {
- isFilter = false;
- $(".showFilter").hide();
- }
- else
- {
- isFilter = true;
- $(".showFilter").show();
- }
- });
- } );
- $(document).ready(function() {
- loadDataTable();
- } );
- Livewire.on('load-data-table', () => {
- setTimeout(function() {loadDataTable()}, 100);
- });
- Livewire.on('destroy-data-table', () => {
- $('#tablesaw-350').DataTable().destroy();
- });
- function destroyDataTable()
- {
- $('#tablesaw-350').DataTable().destroy();
- }
- $('.filterCards').select2({"language": {"noResults": function(){return "Nessun risultato";}}});
- $('.filterStatus').select2({"language": {"noResults": function(){return "Nessun risultato";}}});
- $('.filterScadenza').select2({"language": {"noResults": function(){return "Nessun risultato";}}});
- $('.filterCertificateType').select2({"language": {"noResults": function(){return "Nessun risultato";}}});
- $('.filterCategories').select2({"language": {"noResults": function(){return "Nessun risultato";}}});
- @if(isset($_GET["showFilters"]))
- var filterStatus = localStorage.getItem("filterStatusMember");
- if (filterStatus)
- {
- $('.filterStatus').val(filterStatus).trigger('change');
- }
- var filterCards = localStorage.getItem("filterCardsMember");
- if (filterCards)
- {
- $('.filterCards').val(filterCards).trigger('change');
- }
- var filterScadenza = localStorage.getItem("filterScadenzaMember");
- if (filterScadenza)
- {
- $('.filterScadenza').val(filterScadenza).trigger('change');
- }
- var filterCertificateType = localStorage.getItem("filterCertificateTypeMember");
- if (filterCertificateType)
- {
- $('.filterCertificateType').val(filterCertificateType).trigger('change');
- }
- var filterCategories = localStorage.getItem("filterCategoriesMember");
- if (filterCategories)
- {
- $('.filterCategories').val(filterCategories).trigger('change');
- }
- var fromYear = localStorage.getItem("fromYearMember");
- if (fromYear)
- {
- $('input[name="txtFromYear"]').val(fromYear);
- }
- var toYear = localStorage.getItem("toYearMember");
- if (toYear)
- {
- $('input[name="txtToYear"]').val(toYear);
- }
- var fromYearYear = localStorage.getItem("fromYearYearMember");
- if (fromYearYear)
- {
- $('input[name="txtFromYearYear"]').val(fromYearYear);
- }
- var toYearYear = localStorage.getItem("toYearYearMember");
- if (toYearYear)
- {
- $('input[name="txtToYearYear"]').val(toYearYear);
- }
- @endif
- $(document).on("keypress", $('.filterCategories'), function (e) {
- setTimeout(() => {
- $(".select2-results__option").each(function(){
- var txt = $(this).html();
- var count = (txt.match(/-/g) || []).length;
- $(this).addClass('paddingLeftSelect' + count);
- });
- }, 100);
- });
- $('.filterCategories').on('select2:open', function (e) {
- setTimeout(() => {
- $(".select2-results__option").each(function(){
- var txt = $(this).html();
- var count = (txt.match(/-/g) || []).length;
- $(this).addClass('paddingLeftSelect' + count);
- });
- }, 100);
- });
- function reset()
- {
- $('.filterCards').val('').trigger('change');
- $('.filterStatus').val('').trigger('change');
- $('.filterScadenza').val('-1').trigger('change');
- $('.filterCertificateType').val('-1').trigger('change');
- $('.filterCategories').val('-1').trigger('change');
- /*
- $(".chkCertificateNormal").prop( "checked", false );
- $(".chkCertificateAgonistico").prop( "checked", false );
- $(".chkCertificateScadenza").prop( "checked", false );
- $(".chkCertificateScaduti").prop( "checked", false );
- */
- $('input[name="txtFromYear"]').val('');
- $('input[name="txtToYear"]').val('');
- $('input[name="txtFromYearYear"]').val('');
- $('input[name="txtToYearYear"]').val('');
- //localStorage.clear();
- loadDataTable();
- }
- function loadDataTable() {
- if ($.fn.DataTable.isDataTable('#tablesaw-350')) {
- $('#tablesaw-350').DataTable().destroy();
- }
- // Get saved filters from localStorage
- var fromYear = $('input[name="txtFromYear"]').val();
- localStorage.setItem("fromYearMember", fromYear);
- var toYear = $('input[name="txtToYear"]').val();
- localStorage.setItem("toYearMember", toYear);
- var fromYearYear = $('input[name="txtFromYearYear"]').val();
- localStorage.setItem("fromYearYearMember", fromYearYear);
- var toYearYear = $('input[name="txtToYearYear"]').val();
- localStorage.setItem("toYearYearMember", toYearYear);
- var filterCards = $('.filterCards').val();
- localStorage.setItem("filterCardsMember", filterCards);
- var filterStatus = $('.filterStatus').val();
- localStorage.setItem("filterStatusMember", filterStatus);
- var filterScadenza = $('.filterScadenza').val();
- localStorage.setItem("filterScadenzaMember", filterScadenza);
- var filterCertificateType = $('.filterCertificateType').val();
- localStorage.setItem("filterCertificateTypeMember", filterCertificateType);
- var filterCategories = $('.filterCategories').val();
- localStorage.setItem("filterCategoriesMember", filterCategories)
- const pageLength = 10;
- // Create DataTable with restored settings
- const dataTable = $('#tablesaw-350').DataTable({
- serverSide: true,
- ajax: '/get_members?cards=' + filterCards + "&filterCategories=" + filterCategories + "&filterCertificateType=" + filterCertificateType + "&filterScadenza=" + filterScadenza + "&filterStatus=" + filterStatus + "&fromYear=" + fromYear + "&toYear=" + toYear + "&fromYearYear=" + fromYearYear + "&toYearYear=" + toYearYear,
- columns: [
- {
- data: "last_name",
- render: function (data){
- const d = data.split("|");
- var ret = '<a style="cursor:pointer" onclick="showData(' + d[1] + ')">' + d[0] + '</a>';
- return ret;
- }
- },
- {
- data: "first_name",
- render: function (data){
- const d = data.split("|");
- var ret = '<a style="cursor:pointer" onclick="showData(' + d[1] + ')">' + d[0] + '</a>';
- return ret;
- }
- },
- { data: "phone"},
- { data: "age", "type": "num"},
- { data: "year"},
- {
- data: "status",
- render: function (data){
- const d = data.split("|");
- var ret = '<span class="tablesaw-cell-content"><span class="badge tessera-badge ' + d[0] + '">' + d[1] + '</span></span>';
- return ret;
- }
- },
- {
- data: "certificate",
- render: function (data){
- var ret = '';
- if (data != "") {
- const d = data.split("|");
- ret += '<span class="tablesaw-cell-content d-flex align-items-center">';
- if (d[0] == "0") {
- ret += '<i class="ico--ui check suspended me-2"></i>';
- ret += 'Scaduto : ';
- }
- if (d[0] == "1") {
- ret += '<i class="ico--ui check due me-2"></i>';
- ret += 'In scadenza : ';
- }
- if (d[0] == "2") {
- ret += '<i class="ico--ui check active me-2"></i>';
- ret += 'Scadenza : ';
- }
- ret += d[1];
- ret += '</span>';
- }
- if(data == ""){
- ret += '<span class="tablesaw-cell-content d-flex align-items-center">';
- ret += 'Non Presente';
- ret += '</span>';
- }
- return ret;
- }
- },
- {
- data: "action",
- render: function (data){
- var ret = '<button type="button" class="btn" onclick="editData(' + data + ')" data-bs-toggle="popover" data-bs-trigger="hover focus" data-bs-placement="bottom" data-bs-content="Modifica"><i class="fa-regular fa-pen-to-square"></i></button> ';
- ret += '<button type="button" class="btn" onclick="deleteData(' + data + ')" data-bs-toggle="popover" data-bs-trigger="hover focus" data-bs-placement="bottom" data-bs-content="Elimina"><i class="fa-regular fa-trash-can"></i></button>';
- return ret;
- }
- },
- ],
- fixedHeader: false,
- thead: {
- 'th': {'background-color': 'blue'}
- },
- layout: {
- topStart : null,
- topEnd : null,
- top1A: {
- buttons: [
- {
- extend: 'collection',
- text: 'Esporta',
- buttons: [
- {
- extend: 'excelHtml5',"action":newexportaction,
- title: 'Utenti',
- exportOptions: {
- columns: ":not(':last')",
- page: 'all'
- }
- },
- {
- extend: 'pdfHtml5',"action":newexportaction,
- title: 'Utenti',
- exportOptions: {
- columns: ":not(':last')"
- },
- customize: function(doc) {
- doc.styles.tableHeader.alignment = 'left';
- }
- },
- {
- extend: 'print',"action":newexportaction,
- text: 'Stampa',
- title: 'Utenti',
- exportOptions: {
- columns: ":not(':last')"
- }
- }
- ],
- dropup: true
- }
- ]
- },
- top1B : {
- pageLength: {
- menu: [[10, 25, 50, 100, 100000], [10, 25, 50, 100, "Tutti"]]
- }
- },
- top1C :'search',
- },
- pagingType: 'numbers',
- "language": {
- "url": "/assets/js/Italian.json"
- },
- "fnInitComplete": function (oSettings, json) {
- var html = ' <a style="cursor:pointer" class="showHideFilter btn--ui"><i class="fa-solid fa-sliders"></i></a>';
- html += ' <a style="cursor:pointer" class="addData btn--ui"><i class="fa-solid fa-plus"></i></a>';
- $(".dt-search").append(html);
- }
- });
- $('#tablesaw-350 thead tr th').addClass('col');
- $('#tablesaw-350 thead tr th').css("background-color", "#f6f8fa");
- $('#tablesaw-350').on('draw.dt', function() {
- $('[data-bs-toggle="popover"]').popover()
- });
- }
- $(document).ready(function() {
- $(document).on("click",".addData",function() {
- $(".title--section_addButton").trigger("click")
- });
- } );
- var isEdit = false;
- var isEditCorso = false;
- Livewire.on('setEdit', (x) =>
- {
- isEdit = x;
- console.log(isEdit);
- });
- Livewire.on('setEditCorso', (x) =>
- {
- isEditCorso = x;
- console.log("Edit corso" + isEditCorso);
- });
- Livewire.on('setErrorMsg', (errors) =>
- {
- function msg(value)
- {
- const myArray = value.split("=");
- if (myArray[1] == '0' || myArray[1] == '')
- $("span").find("[aria-controls='select2-" + myArray[0] + "-container']").css('border', 'solid 3px #dc3545');
- }
- console.log(errors);
- //window.location.href = "#top";
- //$("span").find(`[aria-controls='select2-birth_nation_id-container']`).css('border', 'solid 3px red');
- });
- Livewire.on('reload', (x) =>
- {
- location.reload();
- });
- Livewire.on('goToTop', () => {
- @this.set('type', 'dati');
- document.body.scrollTop = document.documentElement.scrollTop = 0;
- });
- function storeAction(type)
- {
- @this.change('dati');
- if (isEditCorso)
- {
- if (confirm('Non hai concluso l\' inserimento/modifica del corso, vuoi comunque procedere?'))
- @this.store(type);
- }
- else
- {
- document.body.scrollTop = document.documentElement.scrollTop = 0;
- //window.location.href = "#top";
- }
- }
- function updateAction(type)
- {
- @this.change('dati');
- if (isEditCorso)
- {
- if (confirm('Non hai concluso l\' inserimento/modifica del corso, vuoi comunque procedere?'))
- @this.updateAAA(type);
- }
- else
- {
- @this.updateAAA(type);
- document.body.scrollTop = document.documentElement.scrollTop = 0;
- }
- }
- function cancelAction()
- {
- if (isEditCorso)
- {
- if (confirm('Non hai concluso l\' inserimento/modifica del corso, vuoi comunque procedere?'))
- @this.cancel();
- }
- else
- @this.cancel();
- }
- function annulla()
- {
- window.onbeforeunload = null;
- document.location.href = '/members';
- }
- window.onbeforeunload = function(){
- if (isEdit)
- return 'Cambiando pagina le eventuali modifiche andranno perse';
- if (isEditCorso)
- return 'Devi prima salvare i dati del corso';
- };
- window.livewire.on('saved', () => {
- $('#userModal').modal('hide');
- });
- Livewire.on('goToAnchor', () =>
- {
- window.location.href = "#top";
- });
- /*$(window).on('popstate', function(event) {
- document.location.href = '/members';
- });*/
- $(function() {
- if (window.history && window.history.pushState) {
- window.history.pushState('', null, './');
- $(window).on('popstate', function() {
- // alert('Back button was pressed.');
- //document.location.href = '#';
- document.location.href = '/members';
- });
- }
- });
- function setupBackButtonHandlers() {
- const backButtons = document.querySelectorAll('a.btn--ui.lightGrey[href^="/"]');
- backButtons.forEach(button => {
- button.addEventListener('click', function(e) {
- });
- });
- }
- $(document).ready(function() {
- setupBackButtonHandlers();
- });
- </script>
- @endpush
|