File: /home/dmstechonline/crm.chaitanyahospitalvirar.com/application/views/setup/floor.php
<div class="content-wrapper">
<section class="content">
<div class="row">
<div class="col-md-2">
<?php $this->load->view('setup/bedsidebar'); ?>
</div>
<div class="col-md-10">
<!-- general form elements -->
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title titlefix"><?php echo $this->lang->line('floor_list'); ?></h3>
<div class="box-tools pull-right">
<?php if ($this->rbac->hasPrivilege('floor', 'can_add')) { ?>
<a data-toggle="modal" data-target="#myModal" class="btn btn-primary btn-sm floor"><i class="fa fa-plus"></i> <?php echo $this->lang->line('add_floor'); ?></a>
<?php } ?>
</div><!-- /.box-tools -->
</div>
<div class="box-body">
<div class="download_label"><?php echo $this->lang->line('floor_list'); ?></div>
<div class="table-responsive mailbox-messages overflow-visible">
<table class="table table-hover table-striped table-bordered example">
<thead>
<tr>
<th><?php echo $this->lang->line('name'); ?></th>
<th><?php echo $this->lang->line('description'); ?></th>
<th class="text-right noExport"><?php echo $this->lang->line('action'); ?></th>
</tr>
</thead>
<tbody>
<?php
if (empty($floor)) {
?>
<?php
} else {
foreach ($floor as $key => $value) {
?>
<tr>
<td class="mailbox-name"><a href="#" ><?php echo $value['name'] ?></a></td>
<td class="mailbox-name">
<?php echo $value['description'] ?>
</td>
<td class="mailbox-date pull-right">
<?php if ($this->rbac->hasPrivilege('floor', 'can_edit')) { ?>
<a data-target="#myModaledit"
onclick="edit('<?php echo $value['id']; ?>')" class="btn btn-default btn-xs" data-toggle="tooltip" title="" data-original-title="<?php echo $this->lang->line('edit'); ?>">
<i class="fa fa-pencil"></i>
</a>
<?php } ?>
<?php if ($this->rbac->hasPrivilege('floor', 'can_delete')) { ?>
<a class="btn btn-default btn-xs" data-toggle="tooltip" title="" onclick="delete_recordByIdReload('admin/setup/floor/delete/<?php echo $value['id']; ?>', '<?php echo $this->lang->line('delete_conform') ?>')" data-original-title="<?php echo $this->lang->line('delete') ?>">
<i class="fa fa-trash"></i>
</a>
<?php } ?>
</td>
</tr>
<?php
}
}
?>
</tbody>
</table><!-- /.table -->
</div><!-- /.mail-box-messages -->
</div><!-- /.box-body -->
</div>
</div><!--/.col (left) -->
<!-- right column -->
</div>
</section><!-- /.content -->
</div><!-- /.content-wrapper -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-sm400" role="document">
<div class="modal-content modal-media-content mx-2">
<div class="modal-header modal-media-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title"><?php echo $this->lang->line('add_floor'); ?></h4>
</div>
<form id="addfloor" class="ptt10" method="post" accept-charset="utf-8" enctype="multipart/form-data">
<div class="modal-body pt0 pb0">
<div class="" id="edit_expensedata">
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<label><?php echo $this->lang->line('name'); ?></label> <small class="req"> *</small>
<input id="invoice_no" name="name" placeholder="" type="text" class="form-control" value="<?php echo set_value('invoice_no'); ?>" />
</div>
</div>
<div class="col-sm-12">
<div class="form-group">
<label><?php echo $this->lang->line('description'); ?></label>
<textarea class="form-control" id="description" name="description" placeholder="" rows="2" placeholder="Enter ..."><?php echo set_value('description'); ?><?php echo set_value('description') ?></textarea>
<span class="text-danger description"></span>
</div>
</div>
</div>
</div>
</div><!-- /.box-body -->
<div class="modal-footer">
<div class="pull-right">
<button type="submit" data-loading-text="<?php echo $this->lang->line('processing'); ?>" id="addfloorbtn" class="btn btn-info "><i class="fa fa-check-circle"></i> <?php echo $this->lang->line('save'); ?></button>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="modal fade" id="myModaledit" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-sm400" role="document">
<div class="modal-content modal-media-content mx-2">
<div class="modal-header modal-media-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title"><?php echo $this->lang->line('edit_floor'); ?></h4>
</div>
<div class="modal-body pt0 pb0">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12" id="edit_floor">
</div>
</div>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function () {
$('.detail_popover').popover({
placement: 'right',
trigger: 'hover',
container: 'body',
html: true,
content: function () {
return $(this).closest('td').find('.fee_detail_popover').html();
}
});
});
$(document).ready(function (e) {
$("#addfloor").on('submit', (function (e) {
$("#addfloorbtn").button('loading');
e.preventDefault();
$.ajax({
url: '<?php echo base_url(); ?>admin/setup/floor/add',
type: "POST",
data: new FormData(this),
dataType: 'json',
contentType: false,
cache: false,
processData: false,
success: function (data) {
if (data.status == "fail") {
var message = "";
$.each(data.error, function (index, value) {
$("." + index).html(value);
message += value;
});
errorMsg(message);
} else {
successMsg(data.message);
window.location.reload(true);
}
$("#addfloorbtn").button('reset');
},
error: function () {
alert("Fail")
}
});
}));
});
function edit(id) {
$('#myModaledit').modal('show');
$.ajax({
url: '<?php echo base_url(); ?>admin/setup/floor/getDataByid/' + id,
success: function (data) {
$('#edit_floor').html(data);
}
});
}
$(".floor").click(function(){
$('#addfloor').trigger("reset");
});
$(document).ready(function (e) {
$('#myModal,#myModaledit').modal({
backdrop: 'static',
keyboard: false,
show:false
});
});
</script>