Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
30164 manish 1
<section class="wrapper">            
2
	<div class="row">
3
		<div class="col-lg-12">
4
			<h3 class="page-header">Invoicewise Scheme Out Summary</h3>
5
			<ol class="breadcrumb">
6
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
7
				<li><i class="icon_document_alt"></i>Invoicewise Scheme Out Summary</li>						  	
8
			</ol>
9
		</div>
10
	</div>
11
		<div class="row col-lg-12"  style="float: right;">
12
 
13
 
14
			<button type="submit" class="download-invoicewise-scheme-out-report">Download Report </button>
15
		</div>
16
 
17
    <div class="col-lg-12">
18
        <table class="table table-border table-condensed table-bordered" id="invoicewiseSchemeOutReport" style="width:100%">
19
 
20
            <thead class="row htable" style="background:#F5F5F5;">
21
            <tr style="color:black;">
22
                    <th>InvoiceNumber </th>
23
 
24
                      <th>quantity </th>
25
                       <th> brand </th>
26
 
27
	                    <th> modelName </th>
28
 
29
	                   <th>modelNumber </th>
30
 
31
	                   <th>color </th>
32
 
33
	                     <th>amount </th>
34
              </tr>
35
            </thead>
36
            <tbody>
37
                #foreach($focoSchemeOutReport in $focoSchemeOutReports )
38
               <tr>
39
                      <td> $focoSchemeOutReport.getInvoiceNumber()</td>
40
                    <td>$focoSchemeOutReport.getQuantity()</td>
41
 
42
                    <td>$focoSchemeOutReport.getBrand()</td>
43
 
44
                    <td>$focoSchemeOutReport.getModelName()</td>
45
                    <td>$focoSchemeOutReport.getModelNumber()</td>
46
 
47
 
48
                    <td>$focoSchemeOutReport.getColor()</td>
49
                    <td>$focoSchemeOutReport.getAmount()</td>
50
 
51
 
52
 
53
               </tr>
54
                #end
55
 
56
            </tbody>
57
 
58
        </table>
59
    </div>
60
 
61
</section>
62
 
63
 
64
 
65
<script>
66
 
67
        var dtable = $('#invoicewiseSchemeOutReport').DataTable(
68
                {
69
                    "scrollX": true,
70
                    "bPaginate": true,
71
                    "bLengthChange": true,
72
                    "bFilter": true,
73
                    "bInfo": false,
74
                    "bAutoWidth": false,
75
 
76
 
77
     });
78
 
79
 
80
 
81
    </script>
82