Subversion Repositories SmartDukaan

Rev

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

Rev 24992 Rev 32485
Line 1... Line -...
1
 
-
 
2
 <div class="row">
-
 
3
<div class="col-lg-12">
-
 
4
	    		
-
 
5
	    <h4 class="modelHeaderCustom" style="font-size:18px;">$customretailer.getBusinessName() ($customretailer.getEmail())</h4>
-
 
6
	    <h4 class="modelHeaderCustom" style="font-size:22px;">Amount:- $userWallet.getAmount()</h4>
-
 
7
 </div>
-
 
8
 </div>
-
 
9
 
-
 
10
 <div id="reference-table">
-
 
11
	         <div class="row">
-
 
12
	    		<div class="col-lg-12">
-
 
13
	    			<table class="table table-striped table-advance table-hover">
-
 
14
	    				<tbody>
-
 
15
	    					<tr>
-
 
16
	    					    <th>Description</th>
-
 
17
	    						<th>Amount</th>
-
 
18
	    						<th>Reference</th>
-
 
19
	    						<th>Reference Type</th>
-
 
20
	    						<th>Timestamp</th>
-
 
21
	    						
-
 
22
	    					</tr>
-
 
23
	    					#if(!$wallethistory.isEmpty())
-
 
24
		    					 #foreach( $wallet in $wallethistory )
-
 
25
		    					 	<tr>
-
 
26
		    					 	    <td>$wallet.getDescription()</td>
-
 
27
		    					 		<td class="currency">$wallet.getAmount()</td>
-
 
28
		    					 		<td>$wallet.getReference()</td>
-
 
29
		    					 		<td>$wallet.getReferenceType()</td>
-
 
30
		    					 		<td>$wallet.getTimestamp().format($dateTimeFormatter)</td>
-
 
31
		    					 		
-
 
32
		    					 	</tr>
-
 
33
		    					 #end
-
 
34
		    				#else
-
 
35
		    					<tr>
-
 
36
		    						<td colspan="5" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
-
 
37
		    					</tr>
-
 
38
		    				#end
-
 
39
	    				</tbody>
-
 
40
	    			</table>
-
 
41
	    		</div>
-
 
42
	    	</div>
-
 
43
    	</div>
-
 
44
1
<div class="row">
-
 
2
    <div class="col-lg-12">
-
 
3
 
-
 
4
        <h4 class="modelHeaderCustom" style="font-size:18px;">$customretailer.getBusinessName()
-
 
5
            ($customretailer.getEmail())</h4>
-
 
6
        <h4 class="modelHeaderCustom" style="font-size:22px;">Amount:- $userWallet.getAmount()</h4>
-
 
7
    </div>
-
 
8
</div>
-
 
9
 
-
 
10
<div id="reference-table">
-
 
11
    <div class="row">
-
 
12
        <div class="col-lg-12">
-
 
13
            <table class="table table-striped table-advance table-hover">
-
 
14
                <tbody>
-
 
15
                <tr>
-
 
16
                    <th>Description</th>
-
 
17
                    <th>Amount</th>
-
 
18
                    <th>Reference</th>
-
 
19
                    <th>Reference Type</th>
-
 
20
                    <th>Timestamp</th>
-
 
21
 
-
 
22
                </tr>
-
 
23
                    #if(!$wallethistory.isEmpty())
-
 
24
                        #foreach( $wallet in $wallethistory )
-
 
25
                        <tr>
-
 
26
                            <td>$wallet.getDescription()</td>
-
 
27
                            <td class="currency">$wallet.getAmount()</td>
-
 
28
                            <td>$wallet.getReference()</td>
-
 
29
                            <td>$wallet.getReferenceType()</td>
-
 
30
                            <td>$wallet.getTimestamp().format($dateTimeFormatter)</td>
-
 
31
 
-
 
32
                        </tr>
-
 
33
                        #end
-
 
34
                    #else
-
 
35
                    <tr>
-
 
36
                        <td colspan="5" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
-
 
37
                    </tr>
-
 
38
                    #end
-
 
39
                </tbody>
-
 
40
            </table>
-
 
41
        </div>
-
 
42
    </div>
-
 
43
</div>
-
 
44
45
45