-
Notifications
You must be signed in to change notification settings - Fork 1
/
report.php
128 lines (98 loc) · 5.1 KB
/
report.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?php include('./constant/layout/head.php');?>
<?php include('./constant/layout/header.php');?>
<?php include('./constant/layout/sidebar.php');?>
<div class="page-wrapper">
<div class="row page-titles">
<div class="col-md-5 align-self-center">
<h3 class="text-primary">Datewise Report Management</h3> </div>
<div class="col-md-7 align-self-center">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="javascript:void(0)">Home</a></li>
<li class="breadcrumb-item active">Datewise Report</li>
</ol>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-lg-8" style=" margin-left: 10%;">
<div class="card">
<div class="card-title">
</div>
<div id="add-brand-messages"></div>
<div class="card-body">
<div class="input-states">
<form class="form-horizontal" action="php_action/getOrderReport.php" method="post" id="getOrderReportForm">
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Start Date</label>
<div class="col-sm-9">
<input type="date" class="form-control" id="startDate" name="startDate" placeholder="Start Date" />
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">End Date</label>
<div class="col-sm-9">
<input type="date" class="form-control" id="endDate" name="endDate" placeholder="End Date" />
</div>
</div>
</div>
<button type="submit" id="generateReportBtn" class="btn btn-primary btn-flat m-b-30 m-t-30">Generate Report</button>
</form>
</div>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function() {
// order date picker
$("#startDate").date();
// order date picker
$("#endDate").date();
$("#getOrderReportForm").unbind('submit').bind('submit', function() {
var startDate = $("#startDate").val();
var endDate = $("#endDate").val();
if(startDate == "" || endDate == "") {
if(startDate == "") {
$("#startDate").closest('.form-group').addClass('has-error');
$("#startDate").after('<p class="text-danger">The Start Date is required</p>');
} else {
$(".form-group").removeClass('has-error');
$(".text-danger").remove();
}
if(endDate == "") {
$("#endDate").closest('.form-group').addClass('has-error');
$("#endDate").after('<p class="text-danger">The End Date is required</p>');
} else {
$(".form-group").removeClass('has-error');
$(".text-danger").remove();
}
} else {
$(".form-group").removeClass('has-error');
$(".text-danger").remove();
var form = $(this);
$.ajax({
url: form.attr('action'),
type: form.attr('method'),
data: form.serialize(),
dataType: 'date',
success:function(response) {
var mywindow = window.open('', 'Rupee Invoice System', 'height=400,width=600');
mywindow.document.write('<html><head><title>Order Report Slip</title>');
mywindow.document.write('</head><body>');
mywindow.document.write(response);
mywindow.document.write('</body></html>');
mywindow.document.close(); // necessary for IE >= 10
mywindow.focus(); // necessary for IE >= 10
mywindow.print();
mywindow.close();
} // /success
}); // /ajax
} // /else
return false;
});
});
</script>
<?php include('./constant/layout/footer.php');?>