Subversion Repositories SmartDukaan

Rev

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

<section class="wrapper">            
        <div class="row">
                <div class="col-lg-12">
                        <h3 class="page-header"><i class="icon_document_alt"></i>Debit Note</h3>
                        <ol class="breadcrumb">
                                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
                                <li><i class="icon_document_alt"></i>Debit Note</li>
                        </ol>
                </div>
        </div>
        
         <div class="row">

<div class="col-lg-12">
            <table id="open-invoices" class="table table-striped table-advance table-hover" >
              <thead>
                <tr>
                 <th> Debit Note Number</th>
                 <th> Type</th>
                 <th> date</th>
                 <th> View </th>
               
                </tr>
              </thead> 
                
              <tbody> 
              
              
               #foreach($debitNote in $debitNotes)
                <tr>
                <td>$debitNote.getDebitNoteNumber()</td>
                <td>$debitNote.getType()</td>
                <td>$debitNote.getDnDate().format($dateTimeFormatter)</td>
                <td><a href="${rc.contextPath}/generateDebitNote?id=$debitNote.getId()" class="download">View</a> </td> 
            
               </tr>
               #end
                 
             </tbody>
           </table>
  </div>
  </div>
</section>