Subversion Repositories SmartDukaan

Rev

Rev 32300 | Rev 32382 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32300 Rev 32349
Line 1... Line 1...
1
<section class="wrapper">            
1
<section class="wrapper">
2
	<div class="row">
2
    <div class="row">
3
		<div class="col-lg-12">
3
        <div class="col-lg-12">
4
			<h3 class="page-header"><i class="icon_document_alt"></i>Debit Note</h3>
4
            <h3 class="page-header"><i class="icon_document_alt"></i>Debit Note</h3>
5
			<ol class="breadcrumb">
5
            <ol class="breadcrumb">
6
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
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>
7
                <li><i class="icon_document_alt"></i>Debit Note</li>
8
			</ol>
8
            </ol>
9
		</div>
9
        </div>
10
	</div>
10
    </div>
11
	
11
 
12
	 <div class="row">
12
    <div class="row">
13
 
13
 
14
<div class="col-lg-12">
14
        <div class="col-lg-12">
15
            <table id="open-invoices" class="table table-striped table-advance table-hover" >
15
            <table id="open-invoices" class="table table-striped table-advance table-hover">
16
              <thead>
16
                <thead>
17
                <tr>
17
                <tr>
18
                 <th> Debit Note Number</th>
18
                    <th>Number</th>
-
 
19
                    <th>Warehouse</th>
19
                 <th> Type</th>
20
                    <th>Supplier</th>
-
 
21
                    <th>Supplier Invoice</th>
-
 
22
                    <th>Invoice Date</th>
20
                 <th> date</th>
23
                    <th>Type</th>
21
                 <th> View </th>
24
                    <th>Date</th>
22
               
25
                    <th>View</th>
23
                </tr>
26
                </tr>
24
              </thead> 
27
                </thead>
25
                
-
 
26
              <tbody> 
28
                <tbody>
27
              
29
 
28
              
30
 
29
               #foreach($debitNote in $debitNotes)
31
                    #foreach($debitNote in $debitNotes)
30
                <tr>
32
                    <tr>
31
                <td>$debitNote.getDebitNoteNumber()</td>
33
                        <td>$debitNote.getDebitNoteNumber()</td>
32
                <td>$debitNote.getType().getValue()</td>
34
                        <td>$debitNote.getDnDate().format($dateTimeFormatter)</td>
-
 
35
                        <td>$warehouseMap.get($invoicesMap.get($debitNote.getInvoiceId()).getWarehouseId())</td>
-
 
36
                        <td>$supplierMap.get($invoicesMap.get($debitNote.getInvoiceId()).getSupplierId()).getName()</td>
-
 
37
                        <td>$invoicesMap.get($debitNote.getInvoiceId()).getInvoiceNumber()</td>
33
                <td>$debitNote.getDnDate().format($dateTimeFormatter)</td>
38
                        <td>$invoicesMap.get($debitNote.getInvoiceId()).getInvoiceDate().format($dateTimeFormatter)</td>
-
 
39
                        <td>$debitNote.getType().getValue()</td>
34
                <td><a href="${rc.contextPath}/generateDebitNote?id=$debitNote.getId()" target="_blank" class="download">View</a> </td> 
40
                        <td><a href="${rc.contextPath}/generateDebitNote?id=$debitNote.getId()" target="_blank"
35
            
41
                               class="download">View</a></td>
-
 
42
 
36
               </tr>
43
                    </tr>
37
               #end
44
                    #end
38
                 
-
 
-
 
45
 
39
             </tbody>
46
                </tbody>
40
           </table>
47
            </table>
41
  </div>
48
        </div>
42
  </div>
49
    </div>
43
</section>
50
</section>
44
51