Subversion Repositories SmartDukaan

Rev

Rev 24919 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<style>
        .table-striped > tbody > tr:nth-child(odd) > td{
  background: white;
  background-color: white;
}
.table-striped > tbody > tr:nth-child(even) > td{
  background: white;
  background-color:white;
}
.table-striped > tbody > tr:hover > td,
        .table-striped > tbody > tr:hover {
          background-color: #e98c8f;
          color:white;
        }
        .btn:hover{
        color: grey;
        text-decoration: none;
        }
        .btn-primary:hover{
        color: grey;
        text-decoration: none;
        }
        .add-to-bag{
                cursor:pointer;
        }
        modal-dialog.modal-lg{
                left:10%;
                right:auto;
                width:80%;
        }
        .modal-content{
                background : white;
        }
        .modelHeaderCustom{
                font-size:14px;
                font-weight:bold;
        }
        hr{
                background-color:#007aff;
                border:none;
                height:1px;
                background:#007aff;
        }
        tr.selected{background-color:#B0BED9}
</style>
<section class="wrapper">
        <div class="row">
                <div class="col-lg-12">
                        <h3 class="page-header"><i class="icon_genius"></i>     NOTIFIED ORDER</h3>
                        <ol class="breadcrumb">
                                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
                                <li><i class="icon_genius"></i>Notified Order</li>
                        </ol>
                </div>
        </div>
        
                
 <div class="row">
                        <div class="col-lg-12" id="catalog-container">
                                <table class="table table-border table-condensed table-bordered" id="notify-order-status-table">
                                        <thead>
                                            <tr>
                                                                
                                                        <th>OrderId</th>
                                                        <th>Old ItemDescription</th>
                                                        <th>Customer Name </th>
                                                        <th>Status</td>
                                                        <th>Created Timestamp </th>
                                                        <th>UpdatedTimestamp </th>
                                                </tr>
                                                        
                                        </thead>
                                        <tbody>
                                                
                                        #if(!$notifyOrders.isEmpty())
                                                         #foreach($taborder in $notifyOrders)
                                                                <tr>
                                                                        
                                                                    
                                                                <td>$taborder.getOrderId()</td>
                                                                        <td>$itemdescription.get($taborder.getItemId())</td>
                                                                        <td>$fofoIdsAndRetailerName.get($taborder.getFofoId()).getBusinessName()</td>   
                                         <td>$taborder.getStatus()</td> 
                                        <td>$notifyIdNotifyColorMap.get($taborder.getNotifyId()).getCreated().format($dateTimeFormatter)</td>
                                         #if($taborder.getUpdateTimestamp())
                                                                     <td>$taborder.getUpdateTimestamp().format($dateTimeFormatter)</td>
                                                                     #else
                                                                     <td> </td>
                                                                     #end
                                       
                                                                    
                                                                         
                                                </tr>
                                                #end
                                                #end
                                        </tbody>
                                </table>
                        </div>
                        </div>
                        
                </section>      
                

 <script type="text/javascript">
  $(document).ready(function() { 
 var dtable =  $('#notify-order-status-table').DataTable(
  {
 
    "bPaginate": true,
    "bLengthChange": true,
    "bFilter": true,
    "bInfo": false,
    "bAutoWidth": false ,
     
    }
     
  );
  });
  </script>