<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="x_panel">
<div class="x_title">
<h3 class="head-title"><i class="fa fa-calculator"></i><small> <?php echo $this->lang->line('manage_income'); ?></small></h3>
<ul class="nav navbar-right panel_toolbox">
<li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a></li>
</ul>
<div class="clearfix"></div>
</div>
<div class="x_content quick-link">
<?php $this->load->view('quick-link'); ?>
</div>
<div class="x_content">
<div class="" data-example-id="togglable-tabs">
<ul class="nav nav-tabs bordered">
<li class="<?php if(isset($list)){ echo 'active'; }?>"><a href="#tab_income_list" role="tab" data-toggle="tab" aria-expanded="true"><i class="fa fa-list-ol"></i> <?php echo $this->lang->line('list'); ?></a> </li>
<?php if(has_permission(ADD, 'accounting', 'income')){ ?>
<?php if(isset($edit)){ ?>
<li class="<?php if(isset($add)){ echo 'active'; }?>"><a href="<?php echo site_url('accounting/income/add'); ?>" aria-expanded="false"><i class="fa fa-plus-square-o"></i> <?php echo $this->lang->line('add'); ?></a> </li>
<?php }else{ ?>
<li class="<?php if(isset($add)){ echo 'active'; }?>"><a href="#tab_add_income" role="tab" data-toggle="tab" aria-expanded="false"><i class="fa fa-plus-square-o"></i> <?php echo $this->lang->line('add'); ?></a> </li>
<?php } ?>
<?php } ?>
<?php if(isset($edit)){ ?>
<li class="active"><a href="#tab_edit_income" role="tab" data-toggle="tab" aria-expanded="false"><i class="fa fa-pencil-square-o"></i> <?php echo $this->lang->line('edit'); ?></a> </li>
<?php } ?>
<li class="li-class-list">
<?php if($this->session->userdata('role_id') == SUPER_ADMIN){ ?>
<select class="form-control col-md-7 col-xs-12" onchange="get_income_by_school(this.value);">
<option value="<?php echo site_url('accounting/income/index'); ?>">--<?php echo $this->lang->line('select_school'); ?>--</option>
<?php foreach($schools as $obj ){ ?>
<option value="<?php echo site_url('accounting/income/index/'.$obj->id); ?>" <?php if(isset($filter_school_id) && $filter_school_id == $obj->id){ echo 'selected="selected"';} ?> > <?php echo $obj->school_name; ?></option>
<?php } ?>
</select>
<?php } ?>
</li>
</ul>
<br/>
<div class="tab-content">
<div class="tab-pane fade in <?php if(isset($list)){ echo 'active'; }?>" id="tab_income_list" >
<div class="x_content">
<table id="datatable-responsive" class="table table-striped table-bordered dt-responsive nowrap" cellspacing="0" width="100%">
<thead>
<tr>
<th><?php echo $this->lang->line('sl_no'); ?></th>
<?php if($this->session->userdata('role_id') == SUPER_ADMIN){ ?>
<th><?php echo $this->lang->line('school'); ?></th>
<?php } ?>
<th><?php echo $this->lang->line('session_year'); ?></th>
<th><?php echo $this->lang->line('income_head'); ?></th>
<th><?php echo $this->lang->line('amount'); ?></th>
<th><?php echo $this->lang->line('date'); ?></th>
<th><?php echo $this->lang->line('action'); ?></th>
</tr>
</thead>
<tbody>
<?php $count = 1; if(isset($incomes) && !empty($incomes)){ ?>
<?php foreach($incomes as $obj){ ?>
<tr>
<td><?php echo $count++; ?></td>
<?php if($this->session->userdata('role_id') == SUPER_ADMIN){ ?>
<td><?php echo $obj->school_name; ?></td>
<?php } ?>
<td><?php echo $obj->session_year; ?></td>
<td><?php echo $obj->head; ?></td>
<td><?php echo $obj->net_amount; ?></td>
<td><?php echo date($this->global_setting->date_format, strtotime($obj->date)); ?></td>
<td>
<?php if(has_permission(EDIT, 'accounting', 'income')){ ?>
<a href="<?php echo site_url('accounting/income/edit/'.$obj->id); ?>" class="btn btn-info btn-xs"><i class="fa fa-pencil-square-o"></i> <?php echo $this->lang->line('edit'); ?> </a>
<?php } ?>
<?php if(has_permission(VIEW, 'accounting', 'income')){ ?>
<a onclick="get_income_modal(<?php echo $obj->id; ?>);" data-toggle="modal" data-target=".bs-income-modal-lg" class="btn btn-success btn-xs"><i class="fa fa-eye"></i> <?php echo $this->lang->line('view'); ?> </a>
<?php } ?>
<?php if(has_permission(DELETE, 'accounting', 'income')){ ?>
<a href="<?php echo site_url('accounting/income/delete/'.$obj->id); ?>" onclick="javascript: return confirm('<?php echo $this->lang->line('confirm_alert'); ?>');" class="btn btn-danger btn-xs"><i class="fa fa-trash-o"></i> <?php echo $this->lang->line('delete'); ?> </a>
<?php } ?>
</td>
</tr>
<?php } ?>
<?php } ?>
</tbody>
</table>
</div>
</div>
<div class="tab-pane fade in <?php if(isset($add)){ echo 'active'; }?>" id="tab_add_income">
<div class="x_content">
<?php echo form_open_multipart(site_url('accounting/income/add'), array('name' => 'add', 'id' => 'add', 'class'=>'form-horizontal form-label-left'), ''); ?>
<?php $this->load->view('layout/school_list_form'); ?>
<div class="item form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="income_head_id"><?php echo $this->lang->line('income_head'); ?> <span class="required">*</span></label>
<div class="col-md-6 col-sm-6 col-xs-12">
<select class="form-control col-md-7 col-xs-12" name="income_head_id" id="add_income_head_id" required="required" >
<option value="">--<?php echo $this->lang->line('select'); ?>--</option>
<?php if(isset($income_heads) && !empty($income_heads)){ ?>
<?php foreach($income_heads as $obj ){ ?>
<option value="<?php echo $obj->id; ?>" <?php echo isset($post['income_head_id']) && $post['income_head_id'] == $obj->id ? 'selected="selected"' : ''; ?>><?php echo $obj->title; ?></option>
<?php } ?>
<?php } ?>
</select>
<div class="help-block"><?php echo form_error('income_head_id'); ?></div>
</div>
</div>
<div class="item form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="payment_method"><?php echo $this->lang->line('income_method'); ?> <span class="required">*</span>
</label>
<div class="col-md-6 col-sm-6 col-xs-12">
<select class="form-control col-md-7 col-xs-12" name="payment_method" id="add_payment_method" required="required" onchange="check_add_payment_method(this.value);">
<option value="">--<?php echo $this->lang->line('select'); ?>--</option>
<?php if(isset($payments) && !empty($payments)){ ?>
<?php foreach($payments as $key=>$value ){ ?>
<?php if(in_array($key, array('cheque', 'cash'))){ ?>
<option value="<?php echo $key; ?>" <?php if(isset($post) && $post['payment_method'] == $key){ echo 'selected="selected"';} ?>><?php echo $value; ?></option>
<?php } ?>
<?php } ?>
<?php } ?>
</select>
<div class="help-block"><?php echo form_error('payment_method'); ?></div>
</div>
</div>
<!-- For cheque Start-->
<div class="display fn_add_cheque" style="<?php if(isset($post) && $post['payment_method'] == 'cheque'){ echo 'display:block;';} ?>">
<div class="item form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="bank_name"><?php echo $this->lang->line('bank_name'); ?><span class="required">*</span> </label>
<div class="col-md-6 col-sm-6 col-xs-12">
<input class="form-control col-md-7 col-xs-12" name="bank_name" id="add_bank_name" value="" placeholder="<?php echo $this->lang->line('bank_name'); ?>" type="text" autocomplete="off">
<div class="help-block"><?php echo form_error('bank_name'); ?></div>
</div>
</div>
<div class="item form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="cheque_no"><?php echo $this->lang->line('cheque_number'); ?> <span class="required">*</span></label>
<div class="col-md-6 col-sm-6 col-xs-12">
<input class="form-control col-md-7 col-xs-12" name="cheque_no" id="add_cheque_no" value="" placeholder="<?php echo $this->lang->line('cheque_number'); ?>" type="text" autocomplete="off">
<div class="help-block"><?php echo form_error('cheque_no'); ?></div>
</div>
</div>
</div>
<!-- For cheque End-->
<div class="item form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="amount"><?php echo $this->lang->line('amount'); ?> <span class="required">*</span> </label>
<div class="col-md-6 col-sm-6 col-xs-12">
<input class="form-control col-md-7 col-xs-12" name="amount" id="amount" value="<?php echo isset($post['amount']) ? $post['amount'] : ''; ?>" placeholder="<?php echo $this->lang->line('amount'); ?>" required="required" type="number" autocomplete="off">
<div class="help-block"><?php echo form_error('amount'); ?></div>
</div>
</div>
<div class="item form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="date"><?php echo $this->lang->line('date'); ?> <span class="required">*</span></label>
<div class="col-md-6 col-sm-6 col-xs-12">
<input class="form-control col-md-7 col-xs-12" name="date" id="add_date" value="<?php echo isset($post['date']) ? $post['date'] : ''; ?>" placeholder="<?php echo $this->lang->line('date'); ?>" required="required" type="text" autocomplete="off">
<div class="help-block"><?php echo form_error('date'); ?></div>
</div>
</div>
<div class="item form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="note"><?php echo $this->lang->line('note'); ?></label>
<div class="col-md-6 col-sm-6 col-xs-12">
<textarea class="form-control col-md-7 col-xs-12" name="note" id="note" placeholder="<?php echo $this->lang->line('note'); ?>"><?php echo isset($post['note']) ? $post['note'] : ''; ?></textarea>
<div class="help-block"><?php echo form_error('note'); ?></div>
</div>
</div>
<div class="ln_solid"></div>
<div class="form-group">
<div class="col-md-6 col-md-offset-3">
<a href="<?php echo site_url('accounting/income/index'); ?>" class="btn btn-primary"><?php echo $this->lang->line('cancel'); ?></a>
<button id="send" type="submit" class="btn btn-success"><?php echo $this->lang->line('submit'); ?></button>
</div>
</div>
<?php echo form_close(); ?>
</div>
</div>
<?php if(isset($edit)){ ?>
<div class="tab-pane fade in active" id="tab_edit_income">
<div class="x_content">
<?php echo form_open(site_url('accounting/income/edit/'.$income->id), array('name' => 'edit', 'id' => 'edit', 'class'=>'form-horizontal form-label-left'), ''); ?>
<?php $this->load->view('layout/school_list_edit_form'); ?>
<div class="item form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="income_head_id"><?php echo $this->lang->line('income_head'); ?><span class="required">*</span>
</label>
<div class="col-md-6 col-sm-6 col-xs-12">
<select class="form-control col-md-7 col-xs-12" name="income_head_id" id="edit_income_head_id" required="required">
<option value="">--<?php echo $this->lang->line('select'); ?>--</option>
<?php if(isset($income_heads) && !empty($income_heads)){ ?>
<?php foreach($income_heads as $obj ){ ?>
<option value="<?php echo $obj->id; ?>" <?php if($income->income_head_id == $obj->id){ echo 'selected="selected"';} ?>><?php echo $obj->title; ?></option>
<?php } ?>
<?php } ?>
</select>
<div class="help-block"><?php echo form_error('income_head_id'); ?></div>
</div>
</div>
<div class="item form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="payment_method"><?php echo $this->lang->line('income_method'); ?><span class="required">*</span> </label>
<div class="col-md-6 col-sm-6 col-xs-12">
<select class="form-control col-md-7 col-xs-12" name="payment_method" id="edit_payment_method" required="required" onchange="check_edit_payment_method(this.value);">
<option value="">--<?php echo $this->lang->line('select'); ?>--</option>
<?php if(isset($payments) && !empty($payments)){ ?>
<?php foreach($payments as $key=>$value ){ ?>
<?php if(in_array($key, array('cheque', 'cash'))){ ?>
<option value="<?php echo $key; ?>" <?php if($income->payment_method == $key){ echo 'selected="selected"';} ?>><?php echo $value; ?></option>
<?php } ?>
<?php } ?>
<?php } ?>
</select>
<div class="help-block"><?php echo form_error('payment_method'); ?></div>
</div>
</div>
<!-- For cheque Start-->
<div class="display fn_edit_cheque" style="<?php if(isset($income) && $income->payment_method == 'cheque'){ echo 'display:block;';} ?>">
<div class="item form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="bank_name"><?php echo $this->lang->line('bank_name'); ?><span class="required">*</span> </label>
<div class="col-md-6 col-sm-6 col-xs-12">
<input class="form-control col-md-7 col-xs-12" name="bank_name" id="edit_bank_name" value="<?php echo isset($income->bank_name) ? $income->bank_name : ''; ?>" placeholder="<?php echo $this->lang->line('bank_name'); ?>" type="text" autocomplete="off">
<div class="help-block"><?php echo form_error('bank_name'); ?></div>
</div>
</div>
<div class="item form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="cheque_no"><?php echo $this->lang->line('cheque_number'); ?> <span class="required">*</span> </label>
<div class="col-md-6 col-sm-6 col-xs-12">
<input class="form-control col-md-7 col-xs-12" name="cheque_no" id="edit_cheque_no" value="<?php echo isset($income->cheque_no) ? $income->cheque_no : ''; ?>" placeholder="<?php echo $this->lang->line('cheque_number'); ?>" type="text" autocomplete="off">
<div class="help-block"><?php echo form_error('cheque_no'); ?></div>
</div>
</div>
</div>
<!-- For cheque End-->
<div class="item form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="amount"><?php echo $this->lang->line('amount'); ?> <span class="required">*</span>
</label>
<div class="col-md-6 col-sm-6 col-xs-12">
<input class="form-control col-md-7 col-xs-12" name="amount" id="amount" value="<?php echo isset($income->net_amount) ? $income->net_amount : ''; ?>" placeholder="<?php echo $this->lang->line('amount'); ?>" required="required" type="number" autocomplete="off">
<div class="help-block"><?php echo form_error('amount'); ?></div>
</div>
</div>
<div class="item form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="date"><?php echo $this->lang->line('date'); ?><span class="required">*</span>
</label>
<div class="col-md-6 col-sm-6 col-xs-12">
<input class="form-control col-md-7 col-xs-12" name="date" id="edit_date" value="<?php echo isset($income->date) ? date('d-m-Y', strtotime($income->date)) : ''; ?>" placeholder="<?php echo $this->lang->line('date'); ?>" required="required" type="text" autocomplete="off">
<div class="help-block"><?php echo form_error('date'); ?></div>
</div>
</div>
<div class="item form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="note"><?php echo $this->lang->line('note'); ?></label>
<div class="col-md-6 col-sm-6 col-xs-12">
<textarea class="form-control col-md-7 col-xs-12" name="note" id="note" placeholder="<?php echo $this->lang->line('note'); ?>"><?php echo isset($income->note) ? $income->note : ''; ?></textarea>
<div class="help-block"><?php echo form_error('note'); ?></div>
</div>
</div>
<div class="ln_solid"></div>
<div class="form-group">
<div class="col-md-6 col-md-offset-3">
<input type="hidden" value="<?php echo isset($income) ? $income->id : $id; ?>" name="id" />
<a href="<?php echo site_url('accounting/income/index'); ?>" class="btn btn-primary"><?php echo $this->lang->line('cancel'); ?></a>
<button id="send" type="submit" class="btn btn-success"><?php echo $this->lang->line('update'); ?></button>
</div>
</div>
<?php echo form_close(); ?>
</div>
</div>
<?php } ?>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade bs-income-modal-lg" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span></button>
<h4 class="modal-title"><?php echo $this->lang->line('detail_information'); ?></h4>
</div>
<div class="modal-body fn_income_data">
</div>
</div>
</div>
</div>
<script type="text/javascript">
function get_income_modal(income_id){
$('.fn_income_data').html('<p style="padding: 20px;"><p style="padding: 20px;text-align:center;"><img src="<?php echo IMG_URL; ?>loading.gif" /></p>');
$.ajax({
type : "POST",
url : "<?php echo site_url('accounting/income/get_single_income'); ?>",
data : {income_id : income_id},
success: function(response){
if(response)
{
$('.fn_income_data').html(response);
}
}
});
}
</script>
<link href="<?php echo VENDOR_URL; ?>datepicker/datepicker.css" rel="stylesheet">
<script src="<?php echo VENDOR_URL; ?>datepicker/datepicker.js"></script>
<script type="text/javascript">
$('#add_date').datepicker();
$('#edit_date').datepicker();
$("document").ready(function() {
<?php if(isset($edit) && !empty($edit)){ ?>
$("#edit_school_id").trigger('change');
<?php } ?>
});
$('.fn_school_id').on('change', function(){
var school_id = $(this).val();
var income_head_id = '';
var payment_method = '';
<?php if(isset($edit) && !empty($edit)){ ?>
income_head_id = '<?php echo $income->income_head_id; ?>';
payment_method = '<?php echo $income->payment_method; ?>';
<?php } ?>
if(!school_id){
toastr.error('<?php echo $this->lang->line("select_school"); ?>');
return false;
}
$.ajax({
type : "POST",
url : "<?php echo site_url('accounting/income/get_income_head_by_school'); ?>",
data : { school_id:school_id, income_head_id:income_head_id},
async : false,
success: function(response){
if(response)
{
if(income_head_id){
$('#edit_income_head_id').html(response);
}else{
$('#add_income_head_id').html(response);
}
}
}
});
get_payment_method_by_school(school_id, payment_method);
});
function get_payment_method_by_school(school_id, payment_method){
$.ajax({
type : "POST",
url : "<?php echo site_url('accounting/income/get_payment_method_by_school'); ?>",
data : { school_id : school_id, payment_method : payment_method},
async : false,
success: function(response){
if(response)
{
if(payment_method){
$('#edit_payment_method').html(response);
}else{
$('#add_payment_method').html(response);
}
}
}
});
}
function check_add_payment_method(payment_method) {
if (payment_method == "cheque") {
$('.fn_add_cheque').show();
$('#add_bank_name').prop('required', true);
$('#add_cheque_no').prop('required', true);
}else{
$('.fn_add_cheque').hide();
$('#add_bank_name').prop('required', false);
$('#add_cheque_no').prop('required', false);
}
}
function check_edit_payment_method(payment_method) {
if (payment_method == "cheque") {
$('.fn_edit_cheque').show();
$('#edit_bank_name').prop('required', true);
$('#edit_cheque_no').prop('required', true);
}else{
$('.fn_edit_cheque').hide();
$('#edit_bank_name').prop('required', false);
$('#edit_cheque_no').prop('required', false);
}
}
$(document).ready(function() {
$('#datatable-responsive').DataTable( {
dom: 'Bfrtip',
iDisplayLength: 15,
buttons: [
'copyHtml5',
'excelHtml5',
'csvHtml5',
'pdfHtml5',
'pageLength'
],
search: true,
responsive: true
});
});
$("#add").validate();
$("#edit").validate();
function get_income_by_school(url){
if(url){
window.location.href = url;
}
}
</script>