Subversion Repositories SmartDukaan

Rev

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

Rev 33815 Rev 34011
Line 17... Line 17...
17
            #set($counter =0)
17
            #set($counter =0)
18
            #foreach($walletSummart in $walletSummartList )
18
            #foreach($walletSummart in $walletSummartList )
19
                #if($counter==1)
19
                #if($counter==1)
20
                    #break
20
                    #break
21
                #end
21
                #end
22
                <h2 style="color:red;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
                    $walletSummart.getCode() - $walletSummart.getName()(
24
                    $walletSummart.getPhone()-$walletSummart.getEmail()
24
                    $walletSummart.getPhone()-$walletSummart.getEmail()
25
                    ) (
25
                    ) (
26
                    #if($openingBalance)
26
                    #if($openingBalance)
27
                        Opening Balance : $openingBalance
27
                        Opening Balance : $openingBalance
28
                    #end)
28
                    #end)
29
                </h2>
29
                </h4>
30
                #set($counter =$counter+1)
30
                #set($counter =$counter+1)
31
            #end
31
            #end
32
            <div class="row col-lg-12" style="float: right;">
32
            <div class="row col-lg-12" style="float: right;">
33
                <div class="col-lg-2">
33
                <div class="col-lg-2">
34
                    <div class="input-group">
34
                    <div class="input-group">
35
                        <input placeholder="Enter Partner Name" type="text" class="typeahead form-control"
35
                        <input placeholder="Enter Partner Name" type="text" class="typeahead form-control"
36
                               id="typeaheadpartner"
36
                               id="typeaheadpartner"
37
                               name="Item" data-provide="typeahead" autocomplete="off"
37
                               name="Item" data-provide="typeahead" autocomplete="off"
38
                               style="margin-bottom: 10px;margin-left: -9px"> <input id="partnerId"
38
                               style="margin-bottom: 10px;margin-left: -9px">
39
                                                                                     type="hidden">
39
                        <input id="partnerId" type="hidden">
40
                        <br>
40
                        <br>
41
                    </div>
41
                    </div>
42
                </div>
42
                </div>
43
            </div>
43
            </div>
44
        #end
44
        #end
Line 60... Line 60...
60
        <table class="table table-border table-condensed table-bordered" id="walletSummaryReport" style="width:100%">
60
        <table class="table table-border table-condensed table-bordered" id="walletSummaryReport" style="width:100%">
61
 
61
 
62
            <thead class="row htable" style="background:#F5F5F5;">
62
            <thead class="row htable" style="background:#F5F5F5;">
63
 
63
 
64
            <tr style="color:black;">
64
            <tr style="color:black;">
65
                ##                <th> #springMessage("reportswalletstatement.id")</th>
-
 
66
                ##                <th> #springMessage("reportswalletstatement.code")</th>
-
 
67
                ##                <th> #springMessage("reportswalletstatement.name")</th>
-
 
68
                ##                <th> #springMessage("reportswalletstatement.email")</th>
-
 
69
                ##                <th>  #springMessage("reportswalletstatement.phone")</th>
-
 
70
                <th> #springMessage("reportswalletstatement.amount")</th>
-
 
71
 
65
 
-
 
66
            <th> #springMessage("reportswalletstatement.amount")</th>
72
                <th>  #springMessage("reportswalletstatement.reference")</th>
67
                <th>  #springMessage("reportswalletstatement.reference")</th>
73
                <th>  #springMessage("reportswalletstatement.referencetype")</th>
68
                <th>  #springMessage("reportswalletstatement.referencetype")</th>
74
                <th>Running Balance</th>
69
                <th>Running Balance</th>
75
                <th> Created On</th>
70
                <th> Created On</th>
76
                ##                <th> Business Date</th>
-
 
77
                <th> #springMessage("reportswalletstatement.description")</th>
71
                <th> #springMessage("reportswalletstatement.description")</th>
78
 
72
 
79
 
73
 
80
            </tr>
74
            </tr>
81
            </thead>
75
            </thead>
82
            <tbody>
76
            <tbody>
83
                #foreach($walletSummart in $walletSummartList )
77
                #foreach($walletSummart in $walletSummartList )
84
                <tr>
78
                <tr>
85
                    ##                    <td>$walletSummart.getId()</td>
-
 
86
                    ##                    <td>$walletSummart.getCode()</td>
-
 
87
                    ##                    <td>$walletSummart.getName()</td>
-
 
88
                    ##                    <td>$walletSummart.getEmail()</td>
-
 
89
                    ##                    <td>$walletSummart.getPhone()</td>
-
 
90
                    <td>$walletSummart.getAmount()</td>
79
                    <td>$walletSummart.getAmount()</td>
91
                    <td>$walletSummart.getReference()</td>
80
                    <td>$walletSummart.getReference()</td>
92
                    <td>$walletSummart.getReferenceType()</td>
81
                    <td>$walletSummart.getReferenceType()</td>
93
                    <td>
82
                    <td>
94
                        #set($runningBalance = $openingBalance+$walletSummart.getAmount())
83
                        #set($runningBalance = $openingBalance+$walletSummart.getAmount())
95
                        $runningBalance
84
                        $runningBalance
96
                    </td>
85
                    </td>
97
 
-
 
98
 
-
 
99
                    <td>$walletSummart.getTimestamp().format($datehiphenFormatter)</td>
86
                    <td>$walletSummart.getTimestamp().format($datehiphenFormatter)</td>
100
 
-
 
101
                    ##                    #if($walletSummart.getBusinessTimestamp())
-
 
102
                    ##                        <td>$walletSummart.getBusinessTimestamp().format($datehiphenFormatter)</td>
-
 
103
                    ##                    #else
-
 
104
                    ##                        <td>--</td>
-
 
105
                    ##                    #end
-
 
106
                    <td>$walletSummart.getDescription()</td>
87
                    <td>$walletSummart.getDescription()</td>
107
 
-
 
108
                </tr>
88
                </tr>
109
                #end
89
                #end
110
 
90
 
111
            </tbody>
91
            </tbody>
112
 
92