File: /home/dmstechonline/crm.chaitanyahospitalvirar.com/application/views/admin/itemstock/itemEdit.php
<?php $currency_symbol = $this->customlib->getHospitalCurrencyFormat(); ?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Main content -->
<section class="content">
<div class="row">
<?php if ($this->rbac->hasPrivilege('item_stock', 'can_add') || $this->rbac->hasPrivilege('item_stock', 'can_edit')) { ?>
<div class="col-md-4">
<!-- Horizontal Form -->
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title"><?php echo $this->lang->line('add_item_stock'); ?></h3>
</div><!-- /.box-header -->
<form id="form1" action="<?php echo base_url() ?>admin/itemstock/edit/<?php echo $item['id'] ?>" id="itemstockform" name="itemstockform" method="post" accept-charset="utf-8" enctype="multipart/form-data">
<div class="box-body">
<?php if ($this->session->flashdata('msg')) { ?>
<?php echo $this->session->flashdata('msg') ?>
<?php } ?>
<?php
if (isset($error_message)) {
echo "<div class='alert alert-danger'>" . $error_message . "</div>";
}
?>
<?php echo $this->customlib->getCSRF(); ?>
<div class="form-group">
<label for="exampleInputEmail1"><?php echo $this->lang->line('item_category'); ?></label><small class="req"> *</small>
<select autofocus="" id="item_category_id" name="item_category_id" class="form-control" >
<option value=""><?php echo $this->lang->line('select'); ?></option>
<?php
foreach ($itemcatlist as $item_category) {
?>
<option value="<?php echo $item_category['id'] ?>"<?php
if (set_value('item_category_id', $item['item_category_id']) == $item_category['id']) {
echo "selected = selected";
}
?>><?php echo $item_category['item_category'] ?></option>
<?php
}
?>
</select>
<span class="text-danger"><?php echo form_error('item_category_id'); ?></span>
</div>
<div class="form-group">
<label for="exampleInputEmail1"><?php echo $this->lang->line('item'); ?></label><small class="req"> *</small>
<select id="item_id" name="item_id" class="form-control">
<option value=""><?php echo $this->lang->line('select'); ?></option>
</select>
<span class="text-danger"><?php echo form_error('item_id'); ?></span>
</div>
<div class="form-group">
<label for="exampleInputEmail1"><?php echo $this->lang->line('supplier'); ?></label>
<select id="supplier_id" name="supplier_id" class="form-control" >
<option value=""><?php echo $this->lang->line('select'); ?></option>
<?php
foreach ($itemsupplier as $itemsup) {
?>
<option value="<?php echo $itemsup['id'] ?>"<?php
if (set_value('supplier_id', $item['supplier_id']) == $itemsup['id']) {
echo "selected = selected";
}
?>><?php echo $itemsup['item_supplier'] ?></option>
<?php
}
?>
</select>
<span class="text-danger"><?php echo form_error('supplier_id'); ?></span>
</div>
<div class="form-group">
<label for="exampleInputEmail1"><?php echo $this->lang->line('store'); ?></label>
<select id="store_id" name="store_id" class="form-control" >
<option value=""><?php echo $this->lang->line('select'); ?></option>
<?php
foreach ($itemstore as $itemstore) {
?>
<option value="<?php echo $itemstore['id'] ?>"<?php
if (set_value('store_id', $item['store_id']) == $itemstore['id']) {
echo "selected = selected";
}
?>><?php echo $itemstore['item_store'] ?></option>
<?php
}
?>
</select>
<span class="text-danger"><?php echo form_error('store_id'); ?></span>
</div>
<div class="form-group">
<label for="exampleInputEmail1"><?php echo $this->lang->line('quantity'); ?></label><small class="req"> *</small>
<div class="">
<span class="miplus">
<select class="form-control" name="symbol">
<option value="+" <?php echo set_select('symbol', '+', ($item['symbol'] == "+") ? TRUE : FALSE); ?>>+</option>
<option value="-" <?php echo set_select('symbol', '-', ($item['symbol'] == "-") ? TRUE : FALSE); ?>>-</option>
</select>
</span>
<input id="quantity" name="quantity" placeholder="" type="text" class="form-control miplusinput" value="<?php echo set_value('quantity', preg_replace('/[\s\-+]/', '', $item['quantity'])); ?>" />
</div>
<span class="text-danger"><?php echo form_error('quantity'); ?></span>
</div>
<div class="form-group">
<label for="exampleInputEmail1"><?php echo $this->lang->line('date'); ?></label>
<input id="date" name="date" placeholder="" type="text" class="form-control date" value="<?php echo set_value('date', date($this->customlib->getHospitalDateFormat(), $this->customlib->dateyyyymmddTodateformat($item['date']))); ?>" readonly="readonly" />
<span class="text-danger"><?php echo form_error('date'); ?></span>
</div>
<div class="form-group">
<label for="exampleInputEmail1"><?php echo $this->lang->line('date'); ?></label>
<input id="date" name="date" placeholder="" type="text" class="form-control date" value="<?php echo set_value('date', date($this->customlib->getHospitalDateFormat(), $this->customlib->dateyyyymmddTodateformat($item['date']))); ?>" readonly="readonly" />
<span class="text-danger"><?php echo form_error('date'); ?></span>
</div>
<div class="form-group">
<label for="exampleInputEmail1"><?php echo $this->lang->line('attach_document'); ?></label>
<input id="item_photo" name="item_photo" placeholder="" type="file" class="filestyle form-control" value="<?php echo set_value('item_photo'); ?>" />
<span class="text-danger"><?php echo form_error('item_photo'); ?></span>
</div>
<div class="form-group">
<label for="exampleInputEmail1"><?php echo $this->lang->line('description'); ?></label>
<textarea class="form-control" id="description" name="description" placeholder="" rows="3" placeholder="Enter ..."><?php echo set_value('description', $item['description']); ?></textarea>
<span class="text-danger"></span>
</div>
</div><!-- /.box-body -->
<div class="box-footer">
<button type="submit" class="btn btn-info pull-right"><?php echo $this->lang->line('save'); ?></button>
</div>
</form>
</div>
</div><!--/.col (right) -->
<!-- left column -->
<?php } ?>
<div class="col-md-<?php
if ($this->rbac->hasPrivilege('item_stock', 'can_add') || $this->rbac->hasPrivilege('item_stock', 'can_edit')) {
echo "8";
} else {
echo "12";
}
?>">
<!-- general form elements -->
<div class="box box-primary">
<div class="box-header ptbnull">
<h3 class="box-title titlefix"> <?php echo $this->lang->line('item_stock_list'); ?></h3>
<div class="box-tools pull-right">
</div><!-- /.box-tools -->
</div><!-- /.box-header -->
<div class="box-body">
<div class="table-responsive mailbox-messages">
<div class="download_label"><?php echo $this->lang->line('item_stock_list'); ?></div>
<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('category'); ?></th>
<th><?php echo $this->lang->line('supplier'); ?></th>
<th><?php echo $this->lang->line('store'); ?></th>
<th><?php echo $this->lang->line('quantity'); ?></th>
<th><?php echo $this->lang->line('date'); ?></th>
<th class="text-right"><?php echo $this->lang->line('action'); ?></th>
</tr>
</thead>
<tbody>
<?php
if (empty($itemlist)) {
?>
<?php
} else {
foreach ($itemlist as $items) {
?>
<tr>
<td class="mailbox-name">
<a href="#" data-toggle="popover" class="detail_popover"><?php echo $items['name'] ?></a>
<div class="fee_detail_popover" style="display: none">
<?php
if ($items['description'] == "") {
?>
<p class="text text-danger"><?php echo $this->lang->line('no_description'); ?></p>
<?php
} else {
?>
<p class="text text-info"><?php echo $items['description']; ?></p>
<?php
}
?>
</div>
</td>
<td class="mailbox-name">
<?php echo $items['item_category']; ?>
</td>
<td class="mailbox-name">
<?php echo $items['item_supplier']; ?>
</td>
<td class="mailbox-name">
<?php echo $items['item_store']; ?>
</td>
<td class="mailbox-name">
<?php echo $items['quantity']; ?>
</td>
<td class="mailbox-name">
<?php echo date($this->customlib->getHospitalDateFormat(), $this->customlib->dateyyyymmddTodateformat($items['date'])); ?>
</td>
<td class="mailbox-date pull-right">
<?php if ($items['attachment']) {
?>
<a href="<?php echo base_url(); ?>admin/itemstock/download/<?php echo $items['attachment'] ?>" class="btn btn-default btn-xs" data-toggle="tooltip" title="<?php echo $this->lang->line('download'); ?>">
<i class="fa fa-download"></i>
</a>
<?php }
?>
<a href="<?php echo base_url(); ?>admin/itemstock/edit/<?php echo $items['id'] ?>" class="btn btn-default btn-xs" data-toggle="tooltip" title="<?php echo $this->lang->line('edit'); ?>">
<i class="fa fa-pencil"></i>
</a>
<a href="<?php echo base_url(); ?>admin/itemstock/delete/<?php echo $items['id'] ?>" class="btn btn-default btn-xs" data-toggle="tooltip" title="<?php echo $this->lang->line('delete'); ?>" onclick="return confirm('<?php echo $this->lang->line('delete_confirm') ?>');">
<i class="fa fa-remove"></i>
</a>
</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 -->
<script type="text/javascript">
$(document).ready(function () {
var item_id_post = '<?php echo $item['item_id']; ?>';
item_id_post = (item_id_post != "") ? item_id_post : 0;
var item_category_id_post = '<?php echo $item['item_category_id']; ?>';
item_category_id_post = (item_category_id_post != "") ? item_category_id_post : 0;
populateItem(item_id_post, item_category_id_post);
function populateItem(item_id_post, item_category_id_post) {
if (item_category_id_post != "") {
$('#item_id').html("");
var base_url = '<?php echo base_url() ?>';
var div_data = '<option value=""><?php echo $this->lang->line('select'); ?></option>';
$.ajax({
type: "GET",
url: base_url + "admin/itemstock/getItemByCategory",
data: {'item_category_id': item_category_id_post},
dataType: "json",
success: function (data) {
$.each(data, function (i, obj)
{
var select = "";
if (item_id_post == obj.id) {
var select = "selected=selected";
}
div_data += "<option value=" + obj.id + " " + select + ">" + obj.name + "</option>";
});
$('#item_id').append(div_data);
}
});
}
}
var date_format = '<?php echo $result = strtr($this->customlib->getHospitalDateFormat(), ['d' => 'dd', 'm' => 'mm', 'Y' => 'yyyy',]) ?>';
$('#date').datepicker({
format: date_format,
autoclose: true
});
$("#btnreset").click(function () {
$("#form1")[0].reset();
});
$('.detail_popover').popover({
placement: 'right',
trigger: 'hover',
container: 'body',
html: true,
content: function () {
return $(this).closest('td').find('.fee_detail_popover').html();
}
});
$(document).on('change', '#item_category_id', function (e) {
$('#item_id').html("");
var item_category_id = $(this).val();
populateItem(0, item_category_id);
});
});
</script>