Merge branch 'CI4-Application' of bitbucket.org:venbainformationtechnology/ria into CI4-Application
This commit is contained in:
commit
c14f2e28fd
@ -1,871 +0,0 @@
|
|||||||
|
|
||||||
<?php
|
|
||||||
$FYStart ='';
|
|
||||||
$FYEnd ='';
|
|
||||||
$FYear = '';
|
|
||||||
$opt = array("0"=>'Select Budget Year');
|
|
||||||
if(!empty($FiscalYear))
|
|
||||||
{
|
|
||||||
foreach ($FiscalYear as $Fy)
|
|
||||||
{
|
|
||||||
$FYStart =$Fy->StartYear;
|
|
||||||
$FYEnd =$Fy->EndYear;
|
|
||||||
}
|
|
||||||
//$FYear = $FYStart." - ".$FYEnd ;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
for($i=1;$i<5;$i++)
|
|
||||||
{
|
|
||||||
|
|
||||||
$FYear = $FYStart." - ".$FYEnd ;
|
|
||||||
$opt[$FYear] = $FYear;
|
|
||||||
$FYStart++;
|
|
||||||
$FYEnd++;
|
|
||||||
}
|
|
||||||
//print_r($opt);
|
|
||||||
|
|
||||||
?>
|
|
||||||
<script>
|
|
||||||
$(function() {
|
|
||||||
var d = new Date();
|
|
||||||
|
|
||||||
var month = d.getMonth();
|
|
||||||
var day = d.getDate();
|
|
||||||
var year = d.getFullYear() ;
|
|
||||||
var SIAStartYear = year - 2015;
|
|
||||||
var mindt = year-70;
|
|
||||||
var maxdt = year-15;
|
|
||||||
|
|
||||||
|
|
||||||
// $("#AddYear").datepicker({
|
|
||||||
//minDate : new Date(year-SIAStartYear,1,1),
|
|
||||||
//maxDate :new Date(year+3,1,1),
|
|
||||||
//dateFormat: 'yy', changeYear: true,
|
|
||||||
|
|
||||||
//});
|
|
||||||
// $("#EditYear").datepicker({
|
|
||||||
// minDate : new Date(year-SIAStartYear,1,1),
|
|
||||||
//maxDate :new Date(year+3,1,1),
|
|
||||||
// dateFormat: 'yy', changeYear: true,
|
|
||||||
|
|
||||||
|
|
||||||
//});
|
|
||||||
|
|
||||||
//$('#selectDistriList').multiSelect();
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<style>
|
|
||||||
.ui-datepicker-month {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.ui-datepicker-prev{
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.ui-datepicker-next{
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<div class="content-wrapper" style="min-height: 537px;">
|
|
||||||
<!-- Content Header (Page header) -->
|
|
||||||
<section class="content-header">
|
|
||||||
<h1>
|
|
||||||
<center>Add Cost List</center>
|
|
||||||
</h1>
|
|
||||||
</section>
|
|
||||||
<section class="content">
|
|
||||||
<div style="text-align:right;">
|
|
||||||
<a href="<?php echo base_url() ?>costListing" class="btn btn-cancel" value="Back">Back</a>
|
|
||||||
</div>
|
|
||||||
<br>
|
|
||||||
<div class="row">
|
|
||||||
<!-- left column -->
|
|
||||||
<div class="col-md-12">
|
|
||||||
<div class="box box-success">
|
|
||||||
|
|
||||||
<!-- form start -->
|
|
||||||
<?php
|
|
||||||
$attributes = array('class' => 'form-label-left addCost ','name' => 'addCost','id' => 'addCost');
|
|
||||||
|
|
||||||
echo form_open(base_url().'saveCostCenter/',$attributes); ?>
|
|
||||||
|
|
||||||
<div class="box-body">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-12">
|
|
||||||
<div class="col-md-6">
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="CostName">Cost Center Code </label><font color="Red">*</font>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<?php
|
|
||||||
$data = array('name' => 'CostCode','value' => set_value('CostCode'),'id'=>'CostCode', 'class' => 'form-control' ,'required' => 'true','style'=>'text-transform:uppercase;','maxlength'=>'10' );
|
|
||||||
echo form_input($data);
|
|
||||||
?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="col-md-6">
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="Description">Cost Center Name </label><font color="Red">*</font>
|
|
||||||
<div class="form-group">
|
|
||||||
<?php
|
|
||||||
$data = array('name' => 'CostName','value' => set_value('CostName'),'id'=>'CostName', 'class' => 'form-control' ,'required' => 'true','style'=>'text-transform:uppercase;','maxlength'=>'100');
|
|
||||||
echo form_input($data);
|
|
||||||
?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-12">
|
|
||||||
<div class="col-md-6">
|
|
||||||
<div class="col-md-4">
|
|
||||||
<label>Department</label>
|
|
||||||
<div>
|
|
||||||
<?php
|
|
||||||
|
|
||||||
$options = array("0"=>'Select Department');
|
|
||||||
//print_r( $options);
|
|
||||||
|
|
||||||
if(!empty($Department))
|
|
||||||
{
|
|
||||||
foreach ($Department as $SID):
|
|
||||||
|
|
||||||
|
|
||||||
$options[$SID->DEPCode] = $SID->DEPCode.' '.' - '.' '.$SID->DepartmentName;
|
|
||||||
|
|
||||||
endforeach;
|
|
||||||
}
|
|
||||||
echo form_multiselect('distriList', $options,set_value('distriList',$options),'id="distriList"' ,'class="form-control required"','required="true"');
|
|
||||||
|
|
||||||
?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="col-md-4">
|
|
||||||
<center>
|
|
||||||
<a style="color:white" href="javascript:void(0);" id="addPop"><button type="button" style="margin: 30px 0px 0px 15px;" class="btn btn-success">Add</button></a><br>
|
|
||||||
<a style="color:white" href="javascript:void(0);" id="removePop"><button type="button" style="margin: 10px 0px 0px 15px;" class="btn btn-success">Remove</button></a><br>
|
|
||||||
|
|
||||||
</center>
|
|
||||||
</div>
|
|
||||||
<div class="col-md-4">
|
|
||||||
<b> </b>
|
|
||||||
|
|
||||||
<?php
|
|
||||||
$option["0"] = 'Selected Department';
|
|
||||||
echo form_multiselect('selectDistriList[]', $option,set_value('selectDistriList[]',$option),'id="selectDistriList"','size="10"');
|
|
||||||
|
|
||||||
?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="col-md-6">
|
|
||||||
|
|
||||||
<!-- <label for="CostName">Approved By </label><font color="Red">*</font> -->
|
|
||||||
|
|
||||||
<!-- <div class="form-group"> -->
|
|
||||||
<?php
|
|
||||||
|
|
||||||
$options = array("-1"=>'Select Approver');
|
|
||||||
//print_r( $options);
|
|
||||||
|
|
||||||
if(!empty($Approver))
|
|
||||||
{
|
|
||||||
foreach ($Approver as $SID):
|
|
||||||
|
|
||||||
|
|
||||||
$options[$SID->EmpID] = $SID->EmpID . " - " . $SID->FirstName . " - " . $SID->Designation;
|
|
||||||
|
|
||||||
endforeach;
|
|
||||||
}
|
|
||||||
|
|
||||||
// echo form_dropdown('ApprovedBy',$options,set_value('ApprovedBy'),'id="ApprovedBy"', 'class = "form-control "'); ?>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- </div> -->
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<br>
|
|
||||||
<div col="row">
|
|
||||||
<div style="text-align:right">
|
|
||||||
<a onclick="OpenModal()" class="btn btn-success"><i class="fa fa-plus"></i> Add Budget</a>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Modal -->
|
|
||||||
<div class="modal fade" id="addbudgetmodel" tabindex="-1" role="dialog"
|
|
||||||
aria-labelledby="myModalLabel" aria-hidden="true">
|
|
||||||
<div class="modal-dialog">
|
|
||||||
<div class="modal-content">
|
|
||||||
<!-- Modal Header -->
|
|
||||||
<div class="modal-header">
|
|
||||||
<button type="button" class="close"
|
|
||||||
data-dismiss="modal">
|
|
||||||
<span aria-hidden="true">×</span>
|
|
||||||
<span class="sr-only">Close</span>
|
|
||||||
</button>
|
|
||||||
<h4 class="modal-title" id="myModalLabel">
|
|
||||||
<center> Add Budget</center>
|
|
||||||
</h4>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Modal Body -->
|
|
||||||
<div class="modal-body">
|
|
||||||
|
|
||||||
<form class="form-horizontal" role="form">
|
|
||||||
<div class="form-group">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-3 col-md-offset-2">
|
|
||||||
Budget Type :
|
|
||||||
</div>
|
|
||||||
<div class="col-md-5">
|
|
||||||
|
|
||||||
<?php
|
|
||||||
|
|
||||||
$options = array("-1"=>'Select Budget Type');
|
|
||||||
//print_r( $options);
|
|
||||||
|
|
||||||
if(!empty($BudgetType))
|
|
||||||
{
|
|
||||||
foreach ($BudgetType as $SID):
|
|
||||||
|
|
||||||
|
|
||||||
$options[$SID->ConfigValue] = $SID->ConfigValue;
|
|
||||||
|
|
||||||
endforeach;
|
|
||||||
}
|
|
||||||
|
|
||||||
echo form_dropdown('Addbudget',$options,set_value('Addbudget'),'id="Addbudget"', 'class = "form-control "'); ?>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-3 col-md-offset-2">
|
|
||||||
Budget Year :
|
|
||||||
</div>
|
|
||||||
<div class="col-md-5">
|
|
||||||
|
|
||||||
<?php echo form_dropdown('AddYear', $opt,set_value('AddYear'),'id="AddYear"' ,'class="form-control required"','required="true"'); ?>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- <div class="form-group"> -->
|
|
||||||
<!-- <div class="row"> -->
|
|
||||||
<!-- <div class="col-md-3 col-md-offset-2"> -->
|
|
||||||
<!-- Budget Amount : -->
|
|
||||||
<!-- </div> -->
|
|
||||||
<!-- <div class="col-md-5"> -->
|
|
||||||
|
|
||||||
<input class="form-control" onkeypress="return isNumberKey(event);" name="AddAmout" class="form-control" id="AddAmout" type="hidden" value=0>
|
|
||||||
|
|
||||||
<!-- </div> -->
|
|
||||||
<!-- </div> -->
|
|
||||||
<!-- </div> -->
|
|
||||||
<div class="form-group">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-3 col-md-offset-2">
|
|
||||||
Remarks :
|
|
||||||
</div>
|
|
||||||
<div class="col-md-5">
|
|
||||||
|
|
||||||
<input class="form-control" name="AddRemarks" class="form-control" id="AddRemarks" type="text">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Modal Footer -->
|
|
||||||
<div class="modal-footer">
|
|
||||||
<a class="btn btn-cancel" data-dismiss="modal" style="margin-top: -24px;" value="Cancel">Cancel</a>
|
|
||||||
<a class="btn btn-success font tempClick" ID="tempClick" style="margin-top: -24px;"><i class="fa fa-plus"></i> <span class="bold">Add</span></a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div><br>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-12">
|
|
||||||
<div class="table-responsive">
|
|
||||||
<table id="BudgetTable" class="table table-striped responsive-utilities jambo_table" >
|
|
||||||
<thead style="background-color: #CFCFCF;">
|
|
||||||
|
|
||||||
<th>Budget Type</th>
|
|
||||||
<th>Budget Year</th>
|
|
||||||
<!-- <th>Budget Amount</th> -->
|
|
||||||
<th>Remarks</th>
|
|
||||||
<th>Action</th>
|
|
||||||
</thead>
|
|
||||||
<tbody id="tempAppend">
|
|
||||||
</tbody>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<!-- Modal For edit -->
|
|
||||||
<div class="modal fade" id="Edit" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
|
||||||
<div class="modal-dialog">
|
|
||||||
<div class="modal-content">
|
|
||||||
<!-- Modal Header -->
|
|
||||||
<div class="modal-header">
|
|
||||||
<button type="button" class="close"
|
|
||||||
data-dismiss="modal">
|
|
||||||
<span aria-hidden="true">×</span>
|
|
||||||
<span class="sr-only">Close</span>
|
|
||||||
</button>
|
|
||||||
<h4 class="modal-title" id="myModalLabel">
|
|
||||||
<center> Edit Budget</center>
|
|
||||||
</h4>
|
|
||||||
</div>
|
|
||||||
<!-- Modal Body -->
|
|
||||||
<div class="modal-body">
|
|
||||||
|
|
||||||
<form class="form-horizontal" role="form">
|
|
||||||
<div class="form-group">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-3 col-md-offset-2">
|
|
||||||
Budget Type :
|
|
||||||
</div>
|
|
||||||
<div class="col-md-5">
|
|
||||||
<?php
|
|
||||||
$data = array('name' => 'Editbudget', 'value' => set_value('Editbudget'),'id'=>'Editbudget', 'class' => 'form-control','readonly'=>'true');
|
|
||||||
echo form_input($data);
|
|
||||||
?>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-3 col-md-offset-2">
|
|
||||||
Budget Year :
|
|
||||||
</div>
|
|
||||||
<div class="col-md-5">
|
|
||||||
<?php
|
|
||||||
$data = array('name' => 'EditYear', 'value' => set_value('EditYear'),'id'=>'EditYear', 'class' => 'form-control','onkeypress'=>'return isNumberKey(event);','onkeypress'=>'return false;');
|
|
||||||
echo form_input($data);
|
|
||||||
?>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- <div class="form-group"> -->
|
|
||||||
<!-- <div class="row"> -->
|
|
||||||
<!-- <div class="col-md-3 col-md-offset-2">
|
|
||||||
Budget Amount :
|
|
||||||
</div> -->
|
|
||||||
<!-- <div class="col-md-5"> -->
|
|
||||||
<?php
|
|
||||||
$data = array('name' => 'EditAmout', 'value' => set_value('EditAmout'),'id'=>'EditAmout', 'class' => 'form-control','onkeypress'=>'return isNumberKey(event);');
|
|
||||||
echo form_hidden($data);
|
|
||||||
?>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- </div> -->
|
|
||||||
<!-- </div> -->
|
|
||||||
<!-- </div> -->
|
|
||||||
<div class="form-group">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-3 col-md-offset-2">
|
|
||||||
Remarks :
|
|
||||||
</div>
|
|
||||||
<div class="col-md-5">
|
|
||||||
<?php
|
|
||||||
$data = array('name' => 'EditRemarks', 'value' => set_value('EditRemarks'),'id'=>'EditRemarks', 'class' => 'form-control');
|
|
||||||
echo form_input($data);
|
|
||||||
?>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
<!-- Modal Footer -->
|
|
||||||
<div class="modal-footer">
|
|
||||||
<a class="btn btn-cancel" data-dismiss="modal" style="margin-top: -24px;" value="Cancel">Cancel</a>
|
|
||||||
<a class="btn btn-success font tempClickEdit" ID="tempClickEdit" style="margin-top: -24px;"><i class="fa fa-plus"></i> <span class="bold">Edit</span></a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="content"></div>
|
|
||||||
<div class="box-footer" style="text-align:right">
|
|
||||||
<input type="hidden" name="txtSelectedDepartment" id="txtSelectedDepartment" />
|
|
||||||
<input type="hidden" name="txtRowCount" id="txtRowCount" />
|
|
||||||
<!-- <input type="reset" class="btn btn-success" value="Cancel" />-->
|
|
||||||
<a href="<?php echo base_url() ?>costListing" class="btn btn-cancel" id="cancel" value="Cancel">Cancel</a>
|
|
||||||
<input type="submit" class="btn btn-success" value="Submit" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="col-md-4">
|
|
||||||
<?php
|
|
||||||
helper('form');
|
|
||||||
$error = session()->getFlashdata('error');
|
|
||||||
if($error)
|
|
||||||
{
|
|
||||||
?>
|
|
||||||
<div class="alert alert-danger alert-dismissable">
|
|
||||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
|
||||||
<?php echo session()->getFlashdata('error'); ?>
|
|
||||||
</div>
|
|
||||||
<?php } ?>
|
|
||||||
<?php
|
|
||||||
$success = session()->getFlashdata('success');
|
|
||||||
if($success)
|
|
||||||
{
|
|
||||||
?>
|
|
||||||
<div class="alert alert-success alert-dismissable">
|
|
||||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
|
||||||
<?php echo session()->getFlashdata('success'); ?>
|
|
||||||
</div>
|
|
||||||
<?php } ?>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-12">
|
|
||||||
<?php //echo validation_errors('<div class="alert alert-danger alert-dismissable">', ' <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button></div>'); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<script type="text/html" id="tempList">
|
|
||||||
<tr id="<%=index%>">
|
|
||||||
|
|
||||||
<?php
|
|
||||||
$data = array('name' => '"Budget[<%=index%>][index]"', 'value' => set_value('<%=index%>'),'id'=>'"Budget[<%=index%>][index]"', 'class' => 'form-control','type'=>'hidden');
|
|
||||||
echo form_input($data);
|
|
||||||
?>
|
|
||||||
|
|
||||||
<td align="left"><%=BudgetType%></td>
|
|
||||||
|
|
||||||
<td align="left"><%=BudgetYear%></td>
|
|
||||||
<td align="left" style="display: none;"><%=BudgetAmount%></td>
|
|
||||||
|
|
||||||
<td align="left"><%=Remarks%></td>
|
|
||||||
<td>
|
|
||||||
<a data-target='#Edit' data-id="<%=index%>" data-userid="<%=index%>" data-toggle="modal" href="#Edit"><i class="fa fa-pencil" data-toggle="tooltip" title="Click here to view/Edit the <%=BudgetType%> Budget details"></i> </a>
|
|
||||||
|
|
||||||
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
function OpenModal()
|
|
||||||
{
|
|
||||||
if($('#CostCode').val()=='')
|
|
||||||
{
|
|
||||||
alert('Please Enter the Costcenter Code');
|
|
||||||
$('#CostCode').focus();
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
else if($('#CostName').val()=='')
|
|
||||||
{
|
|
||||||
alert('Please Enter the Costcenter Name');
|
|
||||||
$('#CostName').focus();
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
else if($('#txtSelectedDepartment').val()=='')
|
|
||||||
{
|
|
||||||
alert('Please Select the Department');
|
|
||||||
$('#selectDistriList').focus();
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
// else if($('#ApprovedBy').val() == "-1")
|
|
||||||
// {
|
|
||||||
// alert('Please Select the Approver');
|
|
||||||
// $('#ApprovedBy').focus();
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$('#addbudgetmodel').modal('show');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var index = '1';
|
|
||||||
var numbers = /^[0-9]+$/;
|
|
||||||
var userid = '';
|
|
||||||
|
|
||||||
$("#Edit").on("shown.bs.modal", function(e) {
|
|
||||||
userid = $(e.relatedTarget).data('userid');
|
|
||||||
|
|
||||||
$('#Editbudget').val($('#BudgetTable tr:eq('+ userid +') td:eq(0)').text());
|
|
||||||
$('#EditYear').val($('#BudgetTable tr:eq('+ userid +') td:eq(1)').text());
|
|
||||||
$('#EditAmout').val($('#BudgetTable tr:eq('+ userid +') td:eq(2)').text()).hide();
|
|
||||||
$('#EditRemarks').val($('#BudgetTable tr:eq('+ userid +') td:eq(3)').text());
|
|
||||||
});
|
|
||||||
|
|
||||||
var typeArray = [];
|
|
||||||
var typeflag = 0;
|
|
||||||
var iflag = 0;
|
|
||||||
|
|
||||||
$('.tempClick').click(function(){
|
|
||||||
|
|
||||||
if ($("#Addbudget option:selected").val() =='-1' )
|
|
||||||
{
|
|
||||||
alert('Please Select the Budget Type ');
|
|
||||||
//return;
|
|
||||||
}
|
|
||||||
|
|
||||||
//if ($("#AddYear option:selected").val() =='0' )
|
|
||||||
if($('#AddYear').val() == '0' )
|
|
||||||
{
|
|
||||||
alert('Please Enter the Budget Year');
|
|
||||||
//return;
|
|
||||||
}
|
|
||||||
// if(document.getElementById('AddAmout').value == '' )
|
|
||||||
// {
|
|
||||||
// alert('Please Enter the Budget Amount');
|
|
||||||
// // return;
|
|
||||||
// }
|
|
||||||
|
|
||||||
|
|
||||||
if ($("#Addbudget option:selected").val() !='-1' && $('#AddYear').val() != '0' && $('#AddAmout').val() != '' )
|
|
||||||
{
|
|
||||||
|
|
||||||
$('#BudgetTable').show();
|
|
||||||
var temp = index;
|
|
||||||
var BudType = $("#Addbudget option:selected").val();
|
|
||||||
var BudYear = $("#AddYear").val();
|
|
||||||
var BudAmount = $("#AddAmout").val() ? $("#AddAmout").val() : 0;
|
|
||||||
//$('#Addbudget option[value='+BudType+']').remove();
|
|
||||||
var BudRemarks = $('#AddRemarks').val();
|
|
||||||
$('#AddYear').val('');
|
|
||||||
$('#AddAmout').val('');
|
|
||||||
$('#AddRemarks').val('');
|
|
||||||
|
|
||||||
|
|
||||||
var str = (BudType.concat(BudYear));
|
|
||||||
//alert('outsideeachfunction'+str);
|
|
||||||
$.each(typeArray,function(i,item){
|
|
||||||
|
|
||||||
//alert('each'+item+'input'+BudType);
|
|
||||||
//alert('str'+str);
|
|
||||||
if(str == item)
|
|
||||||
{
|
|
||||||
iflag=iflag+1;
|
|
||||||
//alert('iflag'+iflag);
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
||||||
//alert('i value'+iflag);
|
|
||||||
//alert('array'+typeArray);
|
|
||||||
if(iflag == 0)
|
|
||||||
{
|
|
||||||
typeArray.push(str);
|
|
||||||
typeflag = 1;
|
|
||||||
index = parseInt(index)+1;
|
|
||||||
|
|
||||||
var template = jQuery("#tempList").html();
|
|
||||||
|
|
||||||
$('#tempAppend').append(_.template(template,{index:temp,BudgetType:BudType,BudgetYear:BudYear,BudgetAmount:BudAmount,Remarks:BudRemarks}));
|
|
||||||
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
alert(" Budget Type and Budget Year values Already Exsits in our database!");
|
|
||||||
iflag = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
var theForm = $(".addCost");
|
|
||||||
|
|
||||||
addHidden(theForm,"BudgetType"+temp,BudType);
|
|
||||||
addHidden(theForm,"BudgetYear"+temp,BudYear);
|
|
||||||
addHidden(theForm,"BudgetAmount"+temp,BudAmount);
|
|
||||||
addHidden(theForm,"Remarks"+temp,BudRemarks);
|
|
||||||
|
|
||||||
$('#txtRowCount').val(temp);
|
|
||||||
|
|
||||||
CountRows();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
function addHidden(theForm, key, value) {
|
|
||||||
// Create a hidden input element, and append it to the form:
|
|
||||||
var input = document.createElement('input');
|
|
||||||
input.type = 'hidden';
|
|
||||||
input.name = key;
|
|
||||||
input.id = key;
|
|
||||||
input.value = value;
|
|
||||||
theForm.append(input);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$('.tempClickEdit').click(function(){
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if(document.getElementById('EditYear').value == '' )
|
|
||||||
{
|
|
||||||
alert('Please Enter the Budget Year');
|
|
||||||
//return;
|
|
||||||
}
|
|
||||||
// if(document.getElementById('EditAmout').value == '' )
|
|
||||||
// {
|
|
||||||
// alert('Please Enter the Budget Amount');
|
|
||||||
// // return;
|
|
||||||
// }
|
|
||||||
|
|
||||||
|
|
||||||
if ( $('#EditAmout').val() != '' && $('#EditYear').val() != '' )
|
|
||||||
{
|
|
||||||
|
|
||||||
var temp = userid;
|
|
||||||
var BudYear = $("#EditYear").val();
|
|
||||||
var BudAmount = $("#EditAmout").val();
|
|
||||||
|
|
||||||
var BudRemarks = $('#EditRemarks').val();
|
|
||||||
|
|
||||||
|
|
||||||
$('#BudgetTable tr:eq('+ temp +') td:eq(1)').text(BudYear);
|
|
||||||
$('#BudgetTable tr:eq('+ temp +') td:eq(2)').text(BudAmount).hide();
|
|
||||||
$('#BudgetTable tr:eq('+ temp +') td:eq(3)').text(BudRemarks);
|
|
||||||
|
|
||||||
$('#BudgetYear'+temp).val(BudYear);
|
|
||||||
$('#BudgetAmount'+temp).val(BudAmount).hide();
|
|
||||||
$('#Remarks'+temp).val(BudRemarks);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
alert('Please enter all the values');
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function ConfirmDelete()
|
|
||||||
{
|
|
||||||
var x = confirm("Are you sure you want to delete?");
|
|
||||||
if (x)
|
|
||||||
return true;
|
|
||||||
else
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function isNumberKey(evt)
|
|
||||||
{
|
|
||||||
var charCode = (evt.which) ? evt.which : evt.keyCode;
|
|
||||||
if (charCode != 46 && charCode > 31
|
|
||||||
&& (charCode < 48 || charCode > 57))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function Rowcount()
|
|
||||||
{
|
|
||||||
var rowCount = $('#BudgetTable').length;
|
|
||||||
if(rowCount=='4')
|
|
||||||
{
|
|
||||||
$("#addbudgetmodel").modal('hide');
|
|
||||||
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
|
|
||||||
$("#addbudgetmodel").modal('show');
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
var totalRowCount = 0;
|
|
||||||
var rowCount = 0;
|
|
||||||
var table = document.getElementById("BudgetTable");
|
|
||||||
var rows = table.getElementsByTagName("tr");
|
|
||||||
|
|
||||||
function CountRows() {
|
|
||||||
totalRowCount = 0;
|
|
||||||
rowCount = 0;
|
|
||||||
table = document.getElementById("BudgetTable");
|
|
||||||
rows = table.getElementsByTagName("tr")
|
|
||||||
for (var i = 0; i < rows.length; i++) {
|
|
||||||
totalRowCount++;
|
|
||||||
if (rows[i].getElementsByTagName("td").length > 0) {
|
|
||||||
rowCount++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
var message = "Total Row Count: " + totalRowCount;
|
|
||||||
message += "\nRow Count: " + rowCount;
|
|
||||||
//alert(message);
|
|
||||||
if(totalRowCount>"16")
|
|
||||||
{
|
|
||||||
$("#addbudgetmodel").modal('hide');
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
|
|
||||||
$('#addPop').click(function () {
|
|
||||||
if ($('#distriList option:selected').val() != null) {
|
|
||||||
if($('#distriList option:selected').val()==0 ){
|
|
||||||
alert('please select Department');
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
|
|
||||||
var tempSelect = $('#distriList option:selected').val();
|
|
||||||
var tempText = $('#distriList option:selected').text();
|
|
||||||
|
|
||||||
var o = new Option(tempText,tempSelect);
|
|
||||||
var hidval = tempSelect;
|
|
||||||
var orgVal = $('#txtSelectedDepartment').val();
|
|
||||||
var Selectedval = ''
|
|
||||||
|
|
||||||
if(orgVal != '')
|
|
||||||
{
|
|
||||||
Selectedval = orgVal + ':' + hidval;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Selectedval = hidval
|
|
||||||
}
|
|
||||||
$('#txtSelectedDepartment').val(Selectedval);
|
|
||||||
|
|
||||||
$(o).html(tempText);
|
|
||||||
$("#selectDistriList").append(o);
|
|
||||||
|
|
||||||
|
|
||||||
$('#distriList option:selected').remove();
|
|
||||||
$("#distriList").attr('selectedIndex', '-1').find("option:selected").removeAttr("selected");
|
|
||||||
$("#selectDistriList").attr('selectedIndex', '-1').find("option:selected").removeAttr("selected");
|
|
||||||
|
|
||||||
tempSelect = '';
|
|
||||||
tempText = '';
|
|
||||||
Selectedval = '';
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
alert("Before add please select any position.");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
$('#removePop').click(function () {
|
|
||||||
if ($('#selectDistriList option:selected').val() != null) {
|
|
||||||
if($('#selectDistriList option:selected').val() == 0){
|
|
||||||
//alert('cannot removed');
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
Selectedval ='';
|
|
||||||
$('#txtSelectedDepartment').val(Selectedval);
|
|
||||||
|
|
||||||
var tempSelect = $('#selectDistriList option:selected').val();
|
|
||||||
$('#selectDistriList option:selected').remove().appendTo('#distriList');
|
|
||||||
$("#selectDistriList").attr('selectedIndex', '-1').find("option:selected").removeAttr("selected");
|
|
||||||
$("#distriList").attr('selectedIndex', '-1').find("option:selected").removeAttr("selected");
|
|
||||||
|
|
||||||
$("#distriList").val(tempSelect);
|
|
||||||
tempSelect = '';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
alert("Before remove please select any position.");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
var baseurl = "<?php print base_url(); ?>";
|
|
||||||
$(".addCost").submit(function(e) {
|
|
||||||
|
|
||||||
e.preventDefault();
|
|
||||||
if(validate())
|
|
||||||
{
|
|
||||||
$('#content').loader('show');
|
|
||||||
$.ajax({
|
|
||||||
data:$('.addCost').serialize(),
|
|
||||||
type:"POST",
|
|
||||||
url:"<?php echo base_url() ?>saveCostCenter",
|
|
||||||
success:function(data) {
|
|
||||||
if(data)
|
|
||||||
{
|
|
||||||
console.log(data);
|
|
||||||
$('#content').loader('hide');
|
|
||||||
alert(data);
|
|
||||||
$('#txtSelectedDepartment').val('');
|
|
||||||
$('#txtRowCount').val('');
|
|
||||||
|
|
||||||
// window.location = baseurl + 'costListing';
|
|
||||||
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
alert("Error");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
function validate()
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
if($("#txtSelectedDepartment").val().length < 1)
|
|
||||||
{
|
|
||||||
alert('Please Select Department');
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
else if($("#txtRowCount").val().length < 1)
|
|
||||||
{
|
|
||||||
alert('Please Add Budget');
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
// else if($("option:selected", $("#ApprovedBy")).val() == '-1')
|
|
||||||
// {
|
|
||||||
// alert('Please Select Approver Names');
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
File diff suppressed because it is too large
Load Diff
BIN
public/uploads/POfiles/SECLIENT.jpg
Normal file
BIN
public/uploads/POfiles/SECLIENT.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
BIN
public/uploads/POfiles/SupplierBills.png
Normal file
BIN
public/uploads/POfiles/SupplierBills.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.5 KiB |
BIN
public/uploads/POfiles/WorkPlace2.jpeg
Normal file
BIN
public/uploads/POfiles/WorkPlace2.jpeg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.2 KiB |
BIN
public/uploads/POfiles/WorkPlace2_1.jpeg
Normal file
BIN
public/uploads/POfiles/WorkPlace2_1.jpeg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.2 KiB |
BIN
public/uploads/POfiles/WorkPlace2_2.jpeg
Normal file
BIN
public/uploads/POfiles/WorkPlace2_2.jpeg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.2 KiB |
BIN
public/uploads/POfiles/WorkPlace3.jpeg
Normal file
BIN
public/uploads/POfiles/WorkPlace3.jpeg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.7 KiB |
1171
public/uploads/POfiles/ria_test.sql
Normal file
1171
public/uploads/POfiles/ria_test.sql
Normal file
File diff suppressed because it is too large
Load Diff
0
public/uploads/images/index.html
Normal file
0
public/uploads/images/index.html
Normal file
Loading…
Reference in New Issue
Block a user