Subversion Repositories SmartDukaan

Rev

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

Rev 27748 Rev 27866
Line 1... Line -...
1
 <div class="modal-header">
-
 
2
	        <button type="button" class="close" data-dismiss="modal">&times;</button>
-
 
3
	        <h4 class="modal-title">Secondary Billing
-
 
4
	        </h4>
1
 
5
       </div>
2
  
6
  <div class="modal-body" style="height:400px;overflow:auto;">
3
  <h3 style="padding-top:2%;font-weight:bold;">Brand: $brand ($date.format($dateMonthFormatter))</h3>
7
    <div class = "row">
4
    <div class = "row">
8
  
5
  
9
			<div class="col-lg-12">
6
			<div class="col-lg-12">
10
				 <table id="billingBrandItem" class="table table-striped table-advance table-hover">
7
				 <table id="billingBrandPartnerItem" class="table table-striped table-advance table-hover">
11
				 <thead>
8
				 <thead>
12
	    			<tr>
9
	    			<tr>
13
	    				<th>Item</th>
10
	    				<th>Item</th>
14
	    				<th>Partner Name</th>
11
	    				<th>Partner Name</th>
15
	    				<th>Unit Price</th>
12
	    				<th>Unit Price</th>
Line 29... Line 26...
29
	    				
26
	    				
30
	    		    </tbody>
27
	    		    </tbody>
31
	    		</table>
28
	    		</table>
32
			</div>
29
			</div>
33
			</div>
30
			</div>
34
	</div>
-
 
35
 
31
 
36
	  	<div class="modal-footer">
-
 
37
		        <button type="button" data-dismiss="modal" class="btn btn-default view-close">Close</button>
-
 
38
	
-
 
39
	   </div>
-
 
40
	   
32
	   
41
<script type="text/javascript">
33
<script type="text/javascript">
42
 
34
 
43
$(document).ready(function() {
35
$(document).ready(function() {
44
  var table = $('#billingBrandItem').DataTable( {
36
  var table = $('#billingBrandPartnerItem').DataTable( {
45
        "pageLength": 100
37
        "pageLength": 100
46
    });
38
    });
47
});
39
});
48
</script>
40
</script>
49
41