Subversion Repositories SmartDukaan

Rev

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

Rev 36080 Rev 36513
Line 13... Line 13...
13
    <div class="row col-lg-12" style="float: right;">
13
    <div class="row col-lg-12" style="float: right;">
14
 
14
 
15
 
15
 
16
        #if($isAdmin)
16
        #if($isAdmin)
17
            #set($counter =0)
17
            #set($counter =0)
18
            #foreach($walletSummart in $walletSummartList )
18
            #foreach($walletSummary in $walletSummaryList )
19
                #if($counter==1)
19
                #if($counter==1)
20
                    #break
20
                    #break
21
                #end
21
                #end
22
                <h4 style="color:#055fb7;margin-top: 20px;margin-bottom: 10px;margin-left:auto:">
22
                <h4 style="color:#055fb7;margin-top: 20px;margin-bottom: 10px;margin-left:auto:">
23
                    $walletSummart.getCode() - $walletSummart.getName()(
23
                    $walletSummary.getCode() - $walletSummary.getName()(
24
                    $walletSummart.getPhone()-$walletSummart.getEmail()
24
                    $walletSummary.getPhone()-$walletSummary.getEmail()
25
                    ) (
25
                    ) (
26
                    #if($userWallet.getAmount())
26
                    #if($userWallet.getAmount())
27
                        Wallet Amount : $userWallet.getAmount()
27
                        Wallet Amount : $userWallet.getAmount()
28
                    #end)
28
                    #end)
29
                </h4>
29
                </h4>
Line 100... Line 100...
100
 
100
 
101
 
101
 
102
            </tr>
102
            </tr>
103
            </thead>
103
            </thead>
104
            <tbody>
104
            <tbody>
105
                #foreach($walletSummart in $walletSummartList )
105
                #foreach($walletSummary in $walletSummaryList )
106
                <tr>
106
                <tr>
107
                    <td>$walletSummart.getAmount()</td>
107
                    <td>$walletSummary.getAmount()</td>
108
                    <td>$walletSummart.getReference()</td>
108
                    <td>$walletSummary.getReference()</td>
109
                    <td>$walletSummart.getReferenceType()</td>
109
                    <td>$walletSummary.getReferenceType()</td>
110
                    <td>
-
 
111
                        #set($runningBalance = $openingBalance+$walletSummart.getAmount())
-
 
112
                        $runningBalance
110
                    <td>$walletSummary.getRunningBalance()</td>
113
                    </td>
-
 
114
                    <td>$walletSummart.getTimestamp().format($datehiphenFormatter)</td>
111
                    <td>$walletSummary.getTimestamp().format($datehiphenFormatter)</td>
115
                    <td>$walletSummart.getDescription()</td>
112
                    <td>$walletSummary.getDescription()</td>
116
                </tr>
113
                </tr>
117
                #end
114
                #end
118
 
115
 
119
            </tbody>
116
            </tbody>
120
 
117