Subversion Repositories SmartDukaan

Rev

Rev 32349 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32349 Rev 32614
Line 21... Line 21...
21
            <table id="open-invoices" class="table table-striped table-advance table-hover" >
21
            <table id="open-invoices" class="table table-striped table-advance table-hover" >
22
              <thead>
22
              <thead>
23
                <tr>
23
                <tr>
24
                 <th> Supplier</th>
24
                 <th> Supplier</th>
25
                 <th> Warehouse</th>
25
                 <th> Warehouse</th>
-
 
26
                 <th> Invoice Id</th>
26
                    <th> Invoice Number</th>
27
                    <th> Invoice Number</th>
-
 
28
                    <th> Invoice Value</th>
27
                    <th> Num Items</th>
29
                    <th> Num Items</th>
28
                    <th> Invoice Date</th>
30
                    <th> Invoice Date</th>
29
                    <th> Receive Date</th>
31
                    <th> Receive Date</th>
30
                 <th> Received By</th>
32
                 <th> Received By</th>
31
                 <th> Status </th>
33
                 <th> Status </th>
Line 39... Line 41...
39
              
41
              
40
               #foreach($supplierInvoice in $supplierInvoices)
42
               #foreach($supplierInvoice in $supplierInvoices)
41
                <tr>
43
                <tr>
42
                <td>$supplierMap.get($supplierInvoice.getSupplierId()).getName()</td>
44
                <td>$supplierMap.get($supplierInvoice.getSupplierId()).getName()</td>
43
                <td>$warehouseMap.get($supplierInvoice.getWarehouseId()) </td>
45
                <td>$warehouseMap.get($supplierInvoice.getWarehouseId()) </td>
-
 
46
                 <td> $supplierInvoice.getId() </td>
44
                <td> $supplierInvoice.getInvoiceNumber() </td>
47
                <td> $supplierInvoice.getInvoiceNumber() </td>
-
 
48
                <td> $supplierInvoice.getTotalValue() </td>
45
                    <td>$supplierInvoice.getNumItems()</td>
49
                    <td>$supplierInvoice.getNumItems()</td>
46
                    <td>$supplierInvoice.getInvoiceDate().format($dateTimeFormatter)</td>
50
                    <td>$supplierInvoice.getInvoiceDate().format($dateTimeFormatter)</td>
47
                    <td>$supplierInvoice.getCreateDate().format($dateTimeFormatter)</td>
51
                    <td>$supplierInvoice.getCreateDate().format($dateTimeFormatter)</td>
48
                    <td>$supplierInvoice.getReceivedFrom()</td>
52
                    <td>$supplierInvoice.getReceivedFrom()</td>
49
                    <td>$supplierInvoice.getStatus() </td>
53
                    <td>$supplierInvoice.getStatus() </td>