Files
hpt_inventory/resources/views/modal/organism_result.blade.php
2026-06-10 16:42:20 +07:00

60 lines
3.8 KiB
PHP

<!-- Modal Add Organism Result -->
<div class="modal fade modal-primary" id="modal-organism-result" style="z-index: 10000 !important;">
<div class="modal-dialog modal-xl modal-dialog-scrollable p-5">
<div class="modal-content border border-light shadow">
<div class="modal-header">
<h6 class="modal-title"> {{ __('sidebar.organism') }} : <span class="possible-result-test-name text-info"></span></h6><br>
<input type="text" id="search-organism" style="width:450px; right: 50px !IMPORTANT; position: absolute;" class="form-control form-control-sm rounded-0" placeholder="{{__('organism.search_placeholder')}}">
<button id="close-modal-organism-result" type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true" class="mdi mdi-close"></span></button>
</div>
<div class="modal-body">
<form id="form-assign-test" class="mb-5">
@csrf
<div class="form-vertical">
<div class="row" >
<div class="col-sm-12" id="modal-organism-result-organism">
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr class="bg-light">
<th width="50px" class="py-0"></th>
<th width="50px" class="py-0"></th>
<th class="py-0">{{__('organism.search_placeholder')}}</th>
<th class="py-0" width="170px">{{ __('sidebar.quantity') }}</th>
<th class="py-0" width="110px">{{__('general.contaminant')}}</th>
</tr>
</thead>
<tbody id="orgn-result-area">
</tbody>
</table>
</div>
</div>
{{-- <div class="col-sm-6" id="modal-organism-result-antibiotic">
<div class="table-responsive">
<table class="table table-bordered table-striped">
<thead>
<th class="py-0">Antibiotic</th>
<th width="120px" class="py-0">Disk diffusion</th>
<th width="120px" class="py-0">MIC</th>
<th width="150px" class="py-0">Sensitive</th>
<th width="80px" class="py-0">Invisible</th>
</thead>
<tbody id="anti-result-area">
</tbody>
</table>
</div>
</div>--}}
</div>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-info mr-2 btnAssignTest rounded-25" id="btnAddOrganism" value="save_test_only"><i class="fa fa-floppy-o"></i>&nbsp;&nbsp;<span class="save">{{__('general.btn_save')}}</span><span class="update" style="display: none">{{__('lang.update')}}</span></button>
<button type="button" class="btn btn-secondary mr-5 rounded-25" data-dismiss='modal'>{{__('lang.cancel')}}</button>
</div>
</div>
</div>
</div>