need to do pdf for payslip

This commit is contained in:
saravanakumar_kandasami 2017-04-18 18:53:41 +05:30
parent 5f2ca2c853
commit 8c99275f6f
3 changed files with 107 additions and 93 deletions

View File

@ -1,3 +1,78 @@
<h1>
PaySlip Generator
</h1>
<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;
$("#selectmonth").datepicker({
minDate : new Date(year-SIAStartYear,1,1),
maxDate :'now',
dateFormat: 'mm/dd/yy',changeMonth: true, changeYear: true,
});
});
</script>
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
<center>Siddharth Industries PaySlip Generator</center>
</h1>
</section>
<section class="content">
<div class="row" style="border:2px dotted; padding:5%">
<div class="row" align="right">
<button type="button" class="btn btn-info">Print</button>
</div>
<div class="row" >
<div class="col-md-6">
<div class="row">
<div class="form-group">
<span>Employee</span>
<select class="form-control " id="role" name="role">
<option value="0">Select Employee</option>
<?php
if(!empty($roles))
{
foreach ($roles as $rl)
{
?>
<option value="<?php echo $rl->role ?>"><?php echo $rl->role ?></option>
<?php
}
}
?>
</select>
</div>
</div>
<input type="checkbox" name="allemployee" value="allempolyee">Select All<br>
</div>
<div class="col-md-6">
<span for="selectmonth">Select Month</span>
<input id="selectmonth" required name="selectmonth" onkeypress="return false;" maxlength="10" class="form-control" value= "<?php echo isset($_POST['selectmonth']) ? $_POST['selectmonth'] : '' ?>">
</div>
</div>
<div class="row" align="right">
<button type="button" class="btn btn-info">Generate</button>
</div>
</div>
</section>
</div>

View File

@ -1,3 +1,17 @@
<script>
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#salaryexcele')
.attr('src', e.target.result)
};
reader.readAsDataURL(input.files[0]);
}
}
</script>
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
@ -8,91 +22,21 @@
</section>
<section class="content">
<div class="row">
<div class="col-xs-12 text-right">
<div class="form-group">
<a class="btn btn-info" href="<?php echo base_url(); ?>addsupplier">Add New Supplier</a>
</div>
</div>
<div class="col-md-6 col-md-offset-3" style="border:2px dotted; padding:5%">
<center>
<div class="box-header">
<input type='file' onchange="readURL(this);" id="salaryexcel" name="salaryexcel"/>
<label for="photo">Select Excelsheet Only<br/></label>
</div>
<div class="row">
<div class="col-xs-12">
<div class="box">
<div class="box-header">
<center><h3 class="box-title"></h3></center>
<div class="box-tools">
<form action="<?php echo base_url() ?>supplierListing" method="POST" id="searchList">
<div class="input-group">
<input type="text" name="searchText" value="<?php echo $searchText; ?>" class="form-control input-sm pull-right" style="width: 150px;" placeholder="Search"/>
<div class="input-group-btn">
<button class="btn btn-sm btn-default searchList"><i class="fa fa-search"></i></button>
</div>
</div>
</form>
</div>
</div><!-- /.box-header -->
<div class="box-body table-responsive no-padding" >
<table id="datatable" class="table table-hover tableSorter" >
<tr bgcolor="steelblue" >
<th >Supplier ID</th>
<th>Supplier Name</th>
<th>Address</th>
<th>Contact Number</th>
<th>Email Address</th>
<th>Excise Registration</th>
<th>TIN</th>
<th>PAN</th>
<th>GST Number</th>
<th>GST Range</th>
<th>UA Number</th>
<th>Payment Terms</th>
</tr>
<?php
if(!empty($userRecords))
{
foreach($userRecords as $record)
{
?>
<tr>
<td><u><a href="<?php echo base_url().'supplier/viewsupplier/?SID='.$record->SupplierID.'&Payment='.$record->PaymentTerms ?>" data-toggle="tooltip" title="<?php echo $record->SupplierID; ?> - Click here to view Supplier details"><?php echo $record->SupplierID ?> </a></u></td>
<td><?php echo $record->SupplierName ?></td>
<td><?php echo $record->Address ?></td>
<td><?php echo $record->ContactNumber ?></td>
<td><?php echo $record->EmailAddress ?></td>
<td><?php echo $record->Exiseregistration ?></td>
<td><?php echo $record->TIN ?></td>
<td><?php echo $record->PAN ?></td>
<td><?php echo $record->GSTNO ?></td>
<td><?php echo $record->GSTRange ?></td>
<td><?php echo $record->UANumber ?></td>
<td><?php echo $record->PaymentTerms ?></td>
</tr>
<?php
}
}
?>
</table>
</div><!-- /.box-body -->
<div class="box-footer clearfix">
<?php echo $this->pagination->create_links(); ?>
</div>
</div><!-- /.box -->
</div>
</center>
<div class="row" align="right">
<button type="button" class="btn btn-info">Submit</button>
</div>
</div>
</div>
</section>
</div>
<script type="text/javascript" src="<?php echo base_url(); ?>assets/js/common.js" charset="utf-8"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('ul.pagination li a').click(function (e) {
e.preventDefault();
var link = jQuery(this).get(0).href;
var value = link.substring(link.lastIndexOf('/') + 1);
jQuery("#searchList").attr("action", baseURL + "supplierListing/" + value);
jQuery("#searchList").submit();
});
});
</script>

View File

@ -157,12 +157,7 @@ if(!empty($userRecords))
</table>
</div><!-- /.box-body -->
<!--<div class="box-footer">
<input type="submit" class="btn btn-primary" value="Submit" />
<input type="reset" class="btn btn-default" value="Reset" />
</div>
</div>-->
</form>
</div>
</div>