listing issues fix

This commit is contained in:
venbatechnologies@gmail.com 2017-08-07 11:39:12 +05:30
parent 383c0cf8bc
commit d07a318b15
22 changed files with 208 additions and 240 deletions

0
application/logs/log-2017-07-28.php Normal file → Executable file
View File

0
application/logs/log-2017-07-31.php Normal file → Executable file
View File

0
application/logs/log-2017-08-01.php Normal file → Executable file
View File

0
application/third_party/dompdf/lib/fonts/Times-BoldItalic.afm.php vendored Normal file → Executable file
View File

0
application/third_party/dompdf/lib/fonts/Times-Italic.afm.php vendored Normal file → Executable file
View File

View File

@ -1,19 +1,10 @@
<?php <div class="content-wrapper">
//print_r($AppList);
?>
<style>
.table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td {border: 1px solid #333;}
</style>
<div class="content-wrapper">
<section class="content"> <section class="content">
<div class="box">
<div> <div class="box-header">
<center><b><h2> SIA - Material Distribution List </h2></b></center> <CENTER><h3 class="box-title">Siddharth Industries - Material Distribution List</h3></CENTER>
</div>
<?php <?php
$attributes = array('class' => 'form-label-left Approve ','name' => 'Approve','id' => 'Approve'); $attributes = array('class' => 'form-label-left Approve ','name' => 'Approve','id' => 'Approve');
@ -21,26 +12,12 @@
<div class="container-fluid"> <div class="container-fluid">
<div class="row"> <div class="row">
<div class="col-md-12"> <div class="col-md-12">
</div> </div>
</div> </div>
<br/>
<br/>
<table id="Requisition" class="table table-bordered table-hover" style="background-color:#fff;font-size:12px;"> <table id="Requisition" class="table table-bordered table-hover" style="background-color:#fff;font-size:12px;">
<div align="right" style="padding-right:10px"> <div align="right" style="padding-right:10px">
<div id="content" > </div> <div id="content" > </div>
<thead style="background-color:#ddf"> <thead style="background-color:#ddf">
<tr> <tr>
<th>Purchase Order Number</th> <th>Purchase Order Number</th>
@ -85,14 +62,9 @@
<td><?php echo $record->OrderedQuantity ?></td> <td><?php echo $record->OrderedQuantity ?></td>
<td><?php echo $record->AcceptedQty; ?> </td> <td><?php echo $record->AcceptedQty; ?> </td>
<?php if($record->ReqStatus != REQ_DELIVERED) { ?> <?php if($record->ReqStatus != REQ_DELIVERED) { ?>
<td contenteditable="true"><input type="text" id="Remarks<?php echo $index ?>" name="Remarks<?php echo $index ?>"class="form-control" maxlength="100" value="<?php echo $record->Remarks ?>"></td> <td contenteditable="true"><input type="text" id="Remarks<?php echo $index ?>" name="Remarks<?php echo $index ?>"class="form-control" maxlength="100" value="<?php echo $record->Remarks ?>"></td>
<td data-name="sel" contenteditable="true" id="Action<?php echo $index ?>" onchange="saveToDatabase(this,'question','<?php echo $record->ReqNo ; ?>','<?php echo $index ; ?>')"> <td data-name="sel" contenteditable="true" id="Action<?php echo $index ?>" onchange="saveToDatabase(this,'question','<?php echo $record->ReqNo ; ?>','<?php echo $index ; ?>')">
<select name="status<?php echo $index ?>" id="status<?php echo $index ?>"> <select name="status<?php echo $index ?>" id="status<?php echo $index ?>">
<option value="<?php echo $record->ReqStatus; ?>"><?php echo $record->StatusName; ?></option> <option value="<?php echo $record->ReqStatus; ?>"><?php echo $record->StatusName; ?></option>
<?php <?php
@ -118,31 +90,23 @@
} }
} }
?> ?>
</tbody> </tbody>
</table> </table>
<br> <br>
</div> </div>
</div> </div>
</section> </section>
</div> </div>
<script>
<script>
var startDate = ''; var startDate = '';
var endDate = ''; var endDate = '';
function Reset() function Reset()
{ {
$('#RequisitionStatus').val("-1"); $('#RequisitionStatus').val("-1");
$('#SearchDate').val(''); $('#SearchDate').val('');
} }
$("#myModal").on("shown.bs.modal", function(e) { $("#myModal").on("shown.bs.modal", function(e) {
var ReqId = $(e.relatedTarget).data('userid'); var ReqId = $(e.relatedTarget).data('userid');
$("#CostCenter").val(''); $("#CostCenter").val('');
$("#tbleAppend").empty(); $("#tbleAppend").empty();
@ -174,12 +138,12 @@ $("#myModal").on("shown.bs.modal", function(e) {
} }
}); });
}); });
function saveToDatabase(editableObj,column,ReqId,Index) { function saveToDatabase(editableObj,column,ReqId,Index) {
var tr= document.getElementById(Index); var tr= document.getElementById(Index);
var Actulqty = 0.0; var Actulqty = 0.0;
@ -224,13 +188,10 @@ function saveToDatabase(editableObj,column,ReqId,Index) {
} }
}); });
} }
$(function() {
$(function() {
var d = new Date(); var d = new Date();
var month = d.getMonth(); var month = d.getMonth();
@ -251,14 +212,14 @@ $(function() {
$(".select2").select2(); $(".select2").select2();
//$('#SearchDate').val(''); //$('#SearchDate').val('');
$('#SearchDate').daterangepicker( $('#SearchDate').daterangepicker(
{ {
locale: { locale: {
format: 'DD-MM-YYYY' format: 'DD-MM-YYYY'
}, },
showDropdowns: true showDropdowns: true
}, },
function(start, end, label) { function(start, end, label) {
startDate = start.format('DD-MM-YYYY'); startDate = start.format('DD-MM-YYYY');
endDate = end.format('DD-MM-YYYY'); endDate = end.format('DD-MM-YYYY');
@ -267,12 +228,10 @@ function(start, end, label) {
//alert("A new date range was chosen: " + start.format('DD-MM-YYYY') + ' to ' + end.format('DD-MM-YYYY')); //alert("A new date range was chosen: " + start.format('DD-MM-YYYY') + ' to ' + end.format('DD-MM-YYYY'));
}); });
});
$(function () {
});
$(function () {
$('#Requisition').DataTable({ $('#Requisition').DataTable({

View File

@ -1,13 +1,12 @@
<div class="content-wrapper"> <div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
<center>Siddharth industries - Asset Details</center>
</h1>
</section>
<section class="content"> <section class="content">
<div class="box">
<div class="box-header">
<CENTER><h3 class="box-title">Siddharth Industries - Asset Details</h3></CENTER>
</div>
<div class="container-fluid">
<div class="row"> <div class="row">
<div class="col-xs-12 text-right"> <div class="col-xs-12 text-right">
<div class="form-group"> <div class="form-group">
@ -68,6 +67,8 @@
</div> </div>
</div> </div>
</div>
</div>
</section> </section>
</div> </div>
<script type="text/javascript" src="<?php echo base_url(); ?>assets/js/common.js" charset="utf-8"></script> <script type="text/javascript" src="<?php echo base_url(); ?>assets/js/common.js" charset="utf-8"></script>

0
application/views/capitalpopdf.php Normal file → Executable file
View File

0
application/views/capitalpurchaseorder.php Normal file → Executable file
View File

View File

@ -1,12 +1,12 @@
<div class="content-wrapper"> <div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
<center>Siddharth Industries - Cost Details</center>
</h1>
</section>
<section class="content"> <section class="content">
<div class="box">
<div class="box-header">
<CENTER><h3 class="box-title">Siddharth Industries - Cost Details</h3></CENTER>
</div>
<div class="container-fluid">
<div class="row"> <div class="row">
<div class="col-xs-12 text-right"> <div class="col-xs-12 text-right">
<div class="form-group"> <div class="form-group">
@ -63,6 +63,8 @@
</table> </table>
</div>
</div>
</div> </div>
</div> </div>
</section> </section>

0
application/views/editCapitalAmendPO.php Normal file → Executable file
View File

0
application/views/editCapitalPo.php Normal file → Executable file
View File

0
application/views/editimportpo.php Normal file → Executable file
View File

View File

@ -1,13 +1,12 @@
<div class="content-wrapper"> <div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
<CENTER>Siddharth Industries - Employee Details</CENTER>
</h1>
</section>
<section class="content"> <section class="content">
<div class="box">
<div class="box-header">
<CENTER><h3 class="box-title">Siddharth Industries - Employee Details</h3></CENTER>
</div>
<div class="container-fluid">
<div class="row"> <div class="row">
<div class="col-xs-12 text-right"> <div class="col-xs-12 text-right">
<div class="form-group"> <div class="form-group">
@ -54,9 +53,12 @@
</div>
</div>
</div> </div>
</div> </div>
</section> </section>
</div> </div>
<script type="text/javascript" src="<?php echo base_url(); ?>assets/js/common.js" charset="utf-8"></script> <script type="text/javascript" src="<?php echo base_url(); ?>assets/js/common.js" charset="utf-8"></script>
<script type="text/javascript"> <script type="text/javascript">

0
application/views/importpo.php Normal file → Executable file
View File

0
application/views/importpopdf.php Normal file → Executable file
View File

0
application/views/mririmportpopdf.php Normal file → Executable file
View File

0
application/views/mrirrevenuepopdf.php Normal file → Executable file
View File

View File

@ -1,12 +1,12 @@
<div class="content-wrapper"> <div class="content-wrapper">
<section class="content-header">
<h1>
<center>Siddharth Industries - Material Master Details</CENTER>
</h1>
</section>
<section class="content"> <section class="content">
<div class="box">
<div class="box-header">
<CENTER><h3 class="box-title">Siddharth Industries - Material Master Details</h3></CENTER>
</div>
<div class="container-fluid">
<div class="row"> <div class="row">
<div class="col-xs-12 text-right"> <div class="col-xs-12 text-right">
<div class="form-group"> <div class="form-group">
@ -65,6 +65,8 @@
</table> </table>
</div> </div>
</div> </div>
</div>
</div>
</section> </section>
</div> </div>
<script type="text/javascript" src="<?php echo base_url(); ?>assets/js/common.js" charset="utf-8"></script> <script type="text/javascript" src="<?php echo base_url(); ?>assets/js/common.js" charset="utf-8"></script>

0
application/views/revenuepopdf.php Normal file → Executable file
View File

View File

@ -1,13 +1,12 @@
<div class="content-wrapper"> <div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
<center>Siddharth Industries -Supplier Details</center>
</h1>
</section>
<section class="content"> <section class="content">
<div class="box">
<div class="box-header">
<CENTER><h3 class="box-title">Siddharth Industries - Supplier Details</h3></CENTER>
</div>
<div class="container-fluid">
<div class="row"> <div class="row">
<div class="col-xs-12 text-right"> <div class="col-xs-12 text-right">
<div class="form-group"> <div class="form-group">
@ -19,7 +18,7 @@
<div class="row"> <div class="row">
<div class="col-xs-12"> <div class="col-xs-12">
<table class="table table-bordered table-hover" id="datatable" style="background-color:#fff;font-size:12px;" > <table class="table table-bordered table-hover" id="datatable" style="background-color:#fff;font-size:11px;" >
<thead> <thead>
<tr> <tr>
<th>Supplier ID</th> <th>Supplier ID</th>
@ -67,6 +66,8 @@
</div> </div>
</div> </div>
</div>
</div>
</section> </section>
</div> </div>
<script type="text/javascript" src="<?php echo base_url(); ?>assets/js/common.js" charset="utf-8"></script> <script type="text/javascript" src="<?php echo base_url(); ?>assets/js/common.js" charset="utf-8"></script>

View File

@ -1,14 +1,13 @@
<div class="content-wrapper"> <div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
<center>Siddharth Industries - User Management</center>
</h1>
</section>
<section class="content"> <section class="content">
<div class="box">
<div class="box-header">
<CENTER><h3 class="box-title">Siddharth Industries - User Management</h3></CENTER>
</div>
<div class="container-fluid">
<div class="row"> <div class="row">
<div class="col-xs-12 text-right"> <div class="col-xs-12 text-right">
<div class="form-group"> <div class="form-group">
@ -61,6 +60,8 @@
</div> </div>
</div> </div>
</div>
</div>
</section> </section>
</div> </div>
<script type="text/javascript" src="<?php echo base_url(); ?>assets/js/common.js" charset="utf-8"></script> <script type="text/javascript" src="<?php echo base_url(); ?>assets/js/common.js" charset="utf-8"></script>