Subversion Repositories SmartDukaan

Rev

Rev 22551 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 22551 Rev 36242
Line 8... Line 8...
8
					<th>Reference Type</th>
8
					<th>Reference Type</th>
9
					<th>+ / -</th>
9
					<th>+ / -</th>
10
					<th>Amount</th>
10
					<th>Amount</th>
11
					<th>Date</th>
11
					<th>Date</th>
12
					<th>Description</th>
12
					<th>Description</th>
-
 
13
                    <th>Doc</th>
13
				</tr>
14
				</tr>
14
				#if(!$walletHistories.isEmpty())
15
				#if(!$walletHistories.isEmpty())
15
	    			#foreach( $walletHistory in $walletHistories )
16
	    			#foreach( $walletHistory in $walletHistories )
16
	    				<tr class="wallet-details" data="$walletHistory.getId()">
17
	    				<tr class="wallet-details" data="$walletHistory.getId()">
17
	    					<td>$walletHistory.getId()</td>
18
	    					<td>$walletHistory.getId()</td>
Line 29... Line 30...
29
	    					#if($walletHistory.getDescription())
30
	    					#if($walletHistory.getDescription())
30
	    						<td>$walletHistory.getDescription()</td>
31
	    						<td>$walletHistory.getDescription()</td>
31
	    					#else
32
	    					#else
32
	    						<td></td>
33
	    						<td></td>
33
	    					#end
34
	    					#end
-
 
35
                            <td>
-
 
36
                                #if($walletAttachmentMap && $walletAttachmentMap.containsKey($walletHistory.getId()))
-
 
37
                                    <button type="button" class="btn btn-info btn-xs wallet-doc-view-btn"
-
 
38
                                            data-doc-url="${rc.contextPath}/document/$walletAttachmentMap.get($walletHistory.getId())">
-
 
39
                                        <i class="fa fa-eye"></i>
-
 
40
                                    </button>
-
 
41
                                #end
-
 
42
                            </td>
34
	    				</tr>
43
	    				</tr>
35
	    			#end
44
	    			#end
36
    			#else
45
    			#else
37
    				<tr>
46
    				<tr>
38
    					<td colspan="6" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
47
                        <td colspan="8" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
39
    				</tr>
48
    				</tr>
40
    			#end
49
    			#end
41
			</tbody>
50
			</tbody>
42
	    </table>
51
	    </table>
43
	</div>
52
	</div>