Subversion Repositories SmartDukaan

Rev

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

Rev 23342 Rev 23343
Line 147... Line 147...
147
		<div class="row">
147
		<div class="row">
148
	    	<div class="col-lg-12">
148
	    	<div class="col-lg-12">
149
	    		<table class="table table-striped table-advance table-hover">
149
	    		<table class="table table-striped table-advance table-hover">
150
	    			<tbody>
150
	    			<tbody>
151
	    				<tr>
151
	    				<tr>
152
	    					<th>Order Id</th>
-
 
153
	    					<th>Invoice Number</th>
152
	    					<th>Invoice Number</th>
154
	    					<th>Total Amount</th>
153
	    					<th>Total Amount</th>
155
	    					<th>Created On</th>
154
	    					<th>Created On</th>
156
	    				</tr>
155
	    				</tr>
157
	    				#if(!$saleHistories.isEmpty())
156
	    				#if(!$saleHistories.isEmpty())
158
			    			#foreach( $saleHistory in $saleHistories )
157
			    			#foreach( $saleHistory in $saleHistories )
159
			    				<tr class="sale-details" data="$saleHistory.getId()">
158
			    				<tr class="sale-details" data="$saleHistory.getId()">
160
			    					<td>$saleHistory.getId()</td>
-
 
161
			    					<td>$saleHistory.getInvoiceNumber()</td>
159
			    					<td>$saleHistory.getInvoiceNumber()</td>
162
			    					<td>$saleHistory.getTotalAmount()</td>
160
			    					<td>$saleHistory.getTotalAmount()</td>
163
			    					<td>$saleHistory.getFormattedDate()</td>
161
			    					<td>$saleHistory.getFormattedDate()</td>
164
			    				</tr>
162
			    				</tr>
165
			    			#end
163
			    			#end