| 23026 |
ashik.ali |
1 |
<style>
|
|
|
2 |
.modal-content{
|
|
|
3 |
background : white;
|
|
|
4 |
}
|
|
|
5 |
.modelHeaderCustom{
|
|
|
6 |
font-size:14px;
|
|
|
7 |
font-weight:bold;
|
|
|
8 |
}
|
|
|
9 |
|
|
|
10 |
.form-group{
|
|
|
11 |
border-bottom: 1px solid #eff2f7;
|
|
|
12 |
padding-bottom: 15px;
|
|
|
13 |
margin-bottom: 15px;
|
|
|
14 |
}
|
|
|
15 |
|
|
|
16 |
</style>
|
|
|
17 |
|
|
|
18 |
<script type="text/javascript">
|
|
|
19 |
|
|
|
20 |
$(function() {
|
|
|
21 |
$('input[name="startEndDateTime"]').daterangepicker({
|
|
|
22 |
//"singleDatePicker": true,
|
|
|
23 |
"timePicker": true,
|
|
|
24 |
"timePicker24Hour": true,
|
|
|
25 |
"timePickerSeconds": true,
|
|
|
26 |
"startDate": "01/01/2017",
|
|
|
27 |
"endDate":"01/01/2018",
|
|
|
28 |
"autoUpdateInput": true,
|
|
|
29 |
locale: {
|
|
|
30 |
format: 'DD/MM/YYYY HH:mm:ss'
|
|
|
31 |
},
|
|
|
32 |
});
|
|
|
33 |
|
|
|
34 |
});
|
|
|
35 |
|
|
|
36 |
</script>
|
|
|
37 |
|
|
|
38 |
<section class="wrapper">
|
|
|
39 |
<div class="row">
|
|
|
40 |
<div class="col-lg-12">
|
|
|
41 |
<h3 class="page-header"><i class="icon_document_alt"></i>ITEM LEDGER DOWNLOAD</h3>
|
|
|
42 |
<ol class="breadcrumb">
|
|
|
43 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
44 |
<li><i class="icon_document_alt"></i>ITEM LEDGER DOWNLOAD</li>
|
|
|
45 |
</ol>
|
|
|
46 |
</div>
|
|
|
47 |
</div>
|
|
|
48 |
<div id="customer-details" style="background:white;background-color:white;padding:10px;">
|
|
|
49 |
|
|
|
50 |
<div class = "row">
|
|
|
51 |
<div class="col-lg-2 form-group">
|
|
|
52 |
<label for="usr">Start - End Date Time</label>
|
|
|
53 |
</div>
|
|
|
54 |
|
|
|
55 |
<div class="col-lg-3 form-group">
|
|
|
56 |
<input placeholder="Start End Date Time" id="startEndDateTime" name="startEndDateTime" type="text" value="" class="form-control input-sm">
|
|
|
57 |
</div>
|
|
|
58 |
|
|
|
59 |
<div class="col-xs-3" style="float:right;">
|
|
|
60 |
<button class="btn btn-primary" style="width:100%;border-radius:0px;" id="downloadItemLedgerReportButton" onclick="downloadItemLedgerReport()">Download Report</button>
|
|
|
61 |
</div>
|
|
|
62 |
|
|
|
63 |
</div>
|
|
|
64 |
|
|
|
65 |
</div>
|
|
|
66 |
</section>
|