Subversion Repositories SmartDukaan

Rev

Rev 32565 | Go to most recent revision | Details | 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>GRN Request</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>GRN Request</li>
8
			</ol>
9
		</div>
10
	</div>
11
 
12
<div class="row">
13
 
14
<div class="col-lg-4">
15
            <table id="grn-pending-request" class="table table-striped table-advance table-hover" >
16
              <thead>
17
                <tr>
18
                 <th> Invoice Id</th>
19
                 <th> Invoice Date</th>            
20
                 <th> Supplier</th>
21
                 <th> Status</th>
22
                </tr>
23
              </thead> 
24
 
25
              <tbody> 
26
 
27
 
28
               #foreach($grnRequest in $grnRequests)
29
                <tr>
30
                <td><a  onclick="getGrnRequestItems($grnRequest.getId(),$grnRequest.getInvoiceId())">$grnRequest.getInvoiceId()</a></td>
31
                <td>$warehouseSupplierInvoiceMap.get($grnRequest.getInvoiceId()).getInvoiceDate().format($dateFormatter)</td>       
32
                <td>$supplierMap.get($grnRequest.getSupplierId()).getName()</td>
33
                <td>$grnRequest.getStatus() </td>
34
 
35
               </tr>
36
               #end
37
 
38
             </tbody>
39
           </table>
40
  </div>
41
 
42
 
43
 
44
  <div class="col-lg-8">
45
	<div class="grnRequestItemContainer">
46
 
47
   </div>
48
  </div>
49
 
50
 
51
  </section>
52