ok
Direktori : /proc/thread-self/root/home2/selectio/www/fms-worksuite/resources/views/leads/notes/ |
Current File : //proc/thread-self/root/home2/selectio/www/fms-worksuite/resources/views/leads/notes/edit.blade.php |
<div class="row"> <div class="col-sm-12"> <x-form id="save-lead-note-data-form" method="PUT"> <div class="add-client bg-white rounded"> <h4 class="mb-0 p-20 f-21 font-weight-normal text-capitalize border-bottom-grey"> @lang('app.lead') @lang('app.note') @lang('app.details')</h4> <input type="hidden" name="lead_id" value="{{ $leadId }}"> <div class="row px-4"> <div class="col-md-6"> <x-forms.text fieldId="title" :fieldLabel="__('modules.client.noteTitle')" fieldName="title" fieldRequired="true" :fieldPlaceholder="__('placeholders.name')" :fieldValue="$note->title"> </x-forms.text> </div> <div class="col-md-6 col-lg-6"> <div class="form-group my-3"> <x-forms.label fieldId="late_yes" :fieldLabel="__('modules.client.noteType')"> </x-forms.label> <div class="d-flex"> <x-forms.radio fieldId="public" :fieldLabel="__('app.public')" fieldName="type" fieldValue="0" :checked="$note->type==0"> </x-forms.radio> <x-forms.radio fieldId="private" :fieldLabel="__('app.private')" fieldValue="1" fieldName="type" :checked="$note->type==1"></x-forms.radio> </div> </div> </div> </div> <div class="row px-4 @if ($note->type == 0) d-none @endif" id="private-note-details"> <div class="col-md-6"> <div class="form-group"> <x-forms.label class="my-3" fieldRequired="true" fieldId="selectEmployee" :fieldLabel="__('app.employee')"> </x-forms.label> <x-forms.input-group> <select class="form-control multiple-users" multiple name="user_id[]" id="selectEmployee" data-live-search="true" data-size="8"> @foreach ($employees as $employee) <x-user-option :user="$employee" :pill="true" :selected="in_array($employee->id, $noteMembers)"/> @endforeach </select> </x-forms.input-group> </div> </div> <div class="col-md-3"> <x-forms.label class="my-3" fieldId="selectEmployee" fieldLabel=" " /> <x-forms.checkbox :fieldLabel="__('modules.client.askToReenterPassword')" fieldName="ask_password" fieldId="ask_password" fieldValue="1" fieldRequired="true" :checked="$note->ask_password == 1" /> </div> </div> <div class="row px-4"> <div class="col-md-12 col-lg-12"> <div class="form-group"> <x-forms.label class="my-3" fieldId="notes" :fieldLabel="__('modules.client.noteDetail')"> </x-forms.label> <div id="details">{!! $note->details !!}</div> <textarea name="details" id="details-text" class="d-none"></textarea> </div> </div> </div> <x-form-actions> <x-forms.button-primary id="save-lead-note-form" class="mr-3" icon="check">@lang('app.save') </x-forms.button-primary> <x-forms.button-cancel :link="route('leads.index')" class="border-0">@lang('app.cancel') </x-forms.button-cancel> </x-form-actions> </div> </x-form> </div> </div> <script> $(document).ready(function() { $("#selectEmployee").selectpicker({ actionsBox: true, selectAllText: "{{ __('modules.permission.selectAll') }}", deselectAllText: "{{ __('modules.permission.deselectAll') }}", multipleSeparator: " ", selectedTextFormat: "count > 8", countSelectedText: function(selected, total) { return selected + " {{ __('app.membersSelected') }} "; } }); quillImageLoad('#details'); $('#save-lead-note-form').click(function() { var comment = document.getElementById('details').children[0].innerHTML; document.getElementById('details-text').value = comment; const url = "{{ route('lead-notes.update', $note->id) }}"; $.easyAjax({ url: url, container: '#save-lead-note-data-form', type: "POST", disableButton: true, blockUI: true, buttonSelector: "#save-lead-note-form", data: $('#save-lead-note-data-form').serialize(), success: function(response) { if (response.status == 'success') { window.location.href = response.redirectUrl; } } }) }); $('.custom-control-input').click(function() { $('#private-note-details').toggleClass('d-none'); }) init(RIGHT_MODAL); }); </script>