| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/thanhphuong/resources/views/expense_category/ |
Upload File : |
@extends('layout.main') @section('content')
@if($errors->has('code'))
<div class="alert alert-danger alert-dismissible text-center">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>{{ $errors->first('code') }}</div>
@endif
@if(session()->has('message'))
<div class="alert alert-success alert-dismissible text-center"><button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>{{ session()->get('message') }}</div>
@endif
@if(session()->has('not_permitted'))
<div class="alert alert-danger alert-dismissible text-center"><button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>{{ session()->get('not_permitted') }}</div>
@endif
<section>
<div class="container-fluid">
<button class="btn btn-info" data-toggle="modal" data-target="#createModal"><i class="dripicons-plus"></i> {{trans('file.Add Expense Category')}}</button>
<button class="btn btn-primary" data-toggle="modal" data-target="#importExpenseCategory"><i class="dripicons-copy"></i> {{trans('file.Import Expense Category')}}</button>
</div>
<div class="table-responsive">
<table id="expense_category-table" class="table">
<thead>
<tr>
<th class="not-exported"></th>
<th>{{trans('file.Code')}}</th>
<th>{{trans('file.name')}}</th>
<th class="not-exported">{{trans('file.action')}}</th>
</tr>
</thead>
<tbody>
@foreach($lims_expense_category_all as $key=>$expense_category)
<tr data-id="{{$expense_category->id}}">
<td>{{$key}}</td>
<td>{{ $expense_category->code }}</td>
<td>{{ $expense_category->name }}</td>
<td>
<div class="btn-group">
<button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">{{trans('file.action')}}
<span class="caret"></span>
<span class="sr-only">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu edit-options dropdown-menu-right dropdown-default" user="menu">
<li><button type="button" data-id="{{$expense_category->id}}" class="open-Editexpense_categoryDialog btn btn-link" data-toggle="modal" data-target="#editModal"><i class="dripicons-document-edit"></i> {{trans('file.edit')}}</button></li>
<li class="divider"></li>
{{ Form::open(['route' => ['expense_categories.destroy', $expense_category->id], 'method' => 'DELETE'] ) }}
<li>
<button type="submit" class="btn btn-link" onclick="return confirmDelete()"><i class="dripicons-trash"></i> {{trans('file.delete')}}</button>
</li>
{{ Form::close() }}
</ul>
</div>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</section>
<div id="createModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true" class="modal fade text-left">
<div role="document" class="modal-dialog">
<div class="modal-content">
{!! Form::open(['route' => 'expense_categories.store', 'method' => 'post', 'files' => true]) !!}
<div class="modal-header">
<h5 id="exampleModalLabel" class="modal-title">{{trans('file.Add Expense Category')}}</h5>
<button type="button" data-dismiss="modal" aria-label="Close" class="close"><span aria-hidden="true"><i class="dripicons-cross"></i></span></button>
</div>
<div class="modal-body">
<p class="italic"><small>{{trans('file.The field labels marked with * are required input fields')}}.</small></p>
<div class="form-group">
<label>{{trans('file.Code')}} *</label>
<div class="input-group">
{{Form::text('code',null,array('required' => 'required', 'class' => 'form-control', 'placeholder' => 'Type expense category code...'))}}
<div class="input-group-append">
<button id="genbutton" type="button" class="btn btn-default">{{trans('file.Generate')}}</button>
</div>
</div>
</div>
<div class="form-group">
<label>{{trans('file.name')}} *</label>
{{Form::text('name',null,array('required' => 'required', 'class' => 'form-control', 'placeholder' => 'Type expense category name...'))}}
</div>
<input type="hidden" name="is_active" value="1">
<div class="form-group">
<input type="submit" value="{{trans('file.submit')}}" class="btn btn-primary">
</div>
</div>
{{ Form::close() }}
</div>
</div>
</div>
<div id="editModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true" class="modal fade text-left">
<div role="document" class="modal-dialog">
<div class="modal-content">
{{ Form::open(['route' => ['expense_categories.update', 1], 'method' => 'PUT', 'files' => true] ) }}
<div class="modal-header">
<h5 id="exampleModalLabel" class="modal-title"> {{trans('file.Update Expense Category')}}</h5>
<button type="button" data-dismiss="modal" aria-label="Close" class="close"><span aria-hidden="true"><i class="dripicons-cross"></i></span></button>
</div>
<div class="modal-body">
<p class="italic"><small>{{trans('file.The field labels marked with * are required input fields')}}.</small></p>
<div class="form-group">
<label>{{trans('file.Code')}} *</label>
{{Form::text('code',null,array('required' => 'required', 'class' => 'form-control', 'placeholder' => 'Type expense category code...'))}}
</div>
<div class="form-group">
<label>{{trans('file.name')}} *</label>
{{Form::text('name',null,array('required' => 'required', 'class' => 'form-control', 'placeholder' => 'Type expense category name...'))}}
</div>
<input type="hidden" name="expense_category_id">
<div class="form-group">
<input type="submit" value="{{trans('file.submit')}}" class="btn btn-primary">
</div>
</div>
{{ Form::close() }}
</div>
</div>
</div>
<div id="importExpenseCategory" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true" class="modal fade text-left">
<div role="document" class="modal-dialog">
<div class="modal-content">
{!! Form::open(['route' => 'expense_category.import', 'method' => 'post', 'files' => true]) !!}
<div class="modal-header">
<h5 id="exampleModalLabel" class="modal-title">{{trans('file.Import Expense Category')}}</h5>
<button type="button" data-dismiss="modal" aria-label="Close" class="close"><span aria-hidden="true"><i class="dripicons-cross"></i></span></button>
</div>
<div class="modal-body">
<p class="italic"><small>{{trans('file.The field labels marked with * are required input fields')}}.</small></p>
<p>{{trans('file.The correct column order is')}} (code*, name*) {{trans('file.and you must follow this')}}.</p>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label>{{trans('file.Upload CSV File')}} *</label>
{{Form::file('file', array('class' => 'form-control','required'))}}
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label> {{trans('file.Sample File')}}</label>
<a href="public/sample_file/sample_expense_category.csv" class="btn btn-info btn-block btn-md"><i class="dripicons-download"></i> {{trans('file.Download')}}</a>
</div>
</div>
</div>
<input type="submit" value="{{trans('file.submit')}}" class="btn btn-primary">
</div>
{{ Form::close() }}
</div>
</div>
</div>
<script type="text/javascript">
$("ul#expense").siblings('a').attr('aria-expanded','true');
$("ul#expense").addClass("show");
$("ul#expense #exp-cat-menu").addClass("active");
var expense_category_id = [];
var user_verified = <?php echo json_encode(env('USER_VERIFIED')) ?>;
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
$('#genbutton').on("click", function(){
$.get('expense_categories/gencode', function(data){
$("input[name='code']").val(data);
});
});
$(document).ready(function() {
$('.open-Editexpense_categoryDialog').on('click', function() {
var url = "expense_categories/"
var id = $(this).data('id').toString();
url = url.concat(id).concat("/edit");
$.get(url, function(data) {
$("input[name='code']").val(data['code']);
$("input[name='name']").val(data['name']);
$("input[name='expense_category_id']").val(data['id']);
});
});
})
function confirmDelete() {
if (confirm("Are you sure want to delete?")) {
return true;
}
return false;
}
$('#expense_category-table').DataTable( {
"order": [],
'language': {
'lengthMenu': '_MENU_ {{trans("file.records per page")}}',
"info": '<small>{{trans("file.Showing")}} _START_ - _END_ (_TOTAL_)</small>',
"search": '{{trans("file.Search")}}',
'paginate': {
'previous': '<i class="dripicons-chevron-left"></i>',
'next': '<i class="dripicons-chevron-right"></i>'
}
},
'columnDefs': [
{
"orderable": false,
'targets': [0, 3]
},
{
'render': function(data, type, row, meta){
if(type === 'display'){
data = '<div class="checkbox"><input type="checkbox" class="dt-checkboxes"><label></label></div>';
}
return data;
},
'checkboxes': {
'selectRow': true,
'selectAllRender': '<div class="checkbox"><input type="checkbox" class="dt-checkboxes"><label></label></div>'
},
'targets': [0]
}
],
'select': { style: 'multi', selector: 'td:first-child'},
'lengthMenu': [[10, 25, 50, -1], [10, 25, 50, "All"]],
dom: '<"row"lfB>rtip',
buttons: [
{
extend: 'pdf',
text: '{{trans("file.PDF")}}',
exportOptions: {
columns: ':visible:Not(.not-exported)',
rows: ':visible',
stripHtml: false
},
customize: function(doc) {
for (var i = 1; i < doc.content[1].table.body.length; i++) {
if (doc.content[1].table.body[i][0].text.indexOf('<img src=') !== -1) {
var imagehtml = doc.content[1].table.body[i][0].text;
var regex = /<img.*?src=['"](.*?)['"]/;
var src = regex.exec(imagehtml)[1];
var tempImage = new Image();
tempImage.src = src;
var canvas = document.createElement("canvas");
canvas.width = tempImage.width;
canvas.height = tempImage.height;
var ctx = canvas.getContext("2d");
ctx.drawImage(tempImage, 0, 0);
var imagedata = canvas.toDataURL("image/png");
delete doc.content[1].table.body[i][0].text;
doc.content[1].table.body[i][0].image = imagedata;
doc.content[1].table.body[i][0].fit = [30, 30];
}
}
},
},
{
extend: 'csv',
text: '{{trans("file.CSV")}}',
exportOptions: {
columns: ':visible:Not(.not-exported)',
rows: ':visible',
format: {
body: function ( data, row, column, node ) {
if (column === 0 && (data.indexOf('<img src=') !== -1)) {
var regex = /<img.*?src=['"](.*?)['"]/;
data = regex.exec(data)[1];
}
return data;
}
}
},
},
{
extend: 'print',
text: '{{trans("file.Print")}}',
messageTop: function(){
return `
<div>
<div style="display:flex;justify-content: center">
<div style="padding-right: 15px">
<img src="{{url('public/logo', $general_setting->site_logo)}}" width="65">
</div>
<div>
<h4 style="text-align:left;color:red;">{{trans('file.Company name system')}}</h4>
<p style="text-align:left;color:red;">{{trans('file.Company address system')}}</p>
</div>
</div>
<div style="text-align:center;">
<br>
<h3 style="text-transform: uppercase" class="modal-title text-center container-fluid">{{trans('file.Expense Category')}}</h3>
</div>
</div>
`;
},
exportOptions: {
columns: ':visible:Not(.not-exported)',
rows: ':visible',
stripHtml: false
},
},
{
text: '{{trans("file.delete")}}',
className: 'buttons-delete',
action: function ( e, dt, node, config ) {
if(user_verified == '1') {
expense_category_id.length = 0;
$(':checkbox:checked').each(function(i){
if(i){
expense_category_id[i-1] = $(this).closest('tr').data('id');
}
});
if(expense_category_id.length && confirm("Are you sure want to delete?")) {
$.ajax({
type:'POST',
url:'expense_categories/deletebyselection',
data:{
expense_categoryIdArray: expense_category_id
},
success:function(data){
alert(data);
}
});
dt.rows({ page: 'current', selected: true }).remove().draw(false);
}
else if(!expense_category_id.length)
alert('No expense category is selected!');
}
else
alert('This feature is disable for demo!');
}
},
{
extend: 'colvis',
text: '{{trans("file.Column visibility")}}',
columns: ':gt(0)'
},
],
} );
</script>
@endsection