Subversion Repositories SmartDukaan

Rev

Rev 32294 | Rev 32349 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
32256 tejbeer 1
<section class="wrapper">            
2
	<div class="row">
3
		<div class="col-lg-12">
4
			<h3 class="page-header"><i class="icon_document_alt"></i>Debit Note</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>Debit Note</li>
8
			</ol>
9
		</div>
10
	</div>
11
 
12
	 <div class="row">
13
 
14
<div class="col-lg-12">
15
            <table id="open-invoices" class="table table-striped table-advance table-hover" >
16
              <thead>
17
                <tr>
18
                 <th> Debit Note Number</th>
19
                 <th> Type</th>
20
                 <th> date</th>
21
                 <th> View </th>
22
 
23
                </tr>
24
              </thead> 
25
 
26
              <tbody> 
27
 
28
 
29
               #foreach($debitNote in $debitNotes)
30
                <tr>
31
                <td>$debitNote.getDebitNoteNumber()</td>
32300 tejbeer 32
                <td>$debitNote.getType().getValue()</td>
32256 tejbeer 33
                <td>$debitNote.getDnDate().format($dateTimeFormatter)</td>
32294 tejbeer 34
                <td><a href="${rc.contextPath}/generateDebitNote?id=$debitNote.getId()" target="_blank" class="download">View</a> </td> 
32256 tejbeer 35
 
36
               </tr>
37
               #end
38
 
39
             </tbody>
40
           </table>
41
  </div>
42
  </div>
43
</section>