Subversion Repositories SmartDukaan

Rev

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

Rev 31294 Rev 31295
Line 19... Line 19...
19
                <thead>
19
                <thead>
20
                <tr>
20
                <tr>
21
                    <th>Name</th>
21
                    <th>Name</th>
22
                    #foreach($ym in $yearMonth)
22
                    #foreach($ym in $yearMonth)
23
                
23
                
24
                    <th>$ym</th>
24
                    <th>$ym.format($dateYearMonthFormatter)</th>
25
                    #end
25
                    #end
26
                     </tr>
26
                     </tr>
27
                </thead>
27
                </thead>
28
                <tbody>
28
                <tbody>
29
                    #foreach($name in $customRetailerMap.entrySet())
29
                    #foreach($name in $customRetailerMap.entrySet())
30
                    <tr>
30
                    <tr>
31
                     <td>$name.getValue().getBusinessName()</td>
31
                     <td>$name.getValue().getBusinessName()</td>
32
                    #foreach($ym in $yearMonth)
32
                    #foreach($ym in $yearMonth)
-
 
33
                     #if($partnerMonthSaleMap.get($name.getValue().getPartnerId()).get($ym))
-
 
34
                    <td class="currency">$partnerMonthSaleMap.get($name.getValue().getPartnerId()).get($ym)</td>
33
                
35
                    #else
34
                    <td>$partnerMonthSaleMap.get($name.getValue().getPartnerId()).get($ym)</td>
36
                    <td>0</td>
35
                    #end
37
                    #end
36
                     
38
                     
37
                     </tr>
39
                     </tr>
38
                    #end
40
                    #end
39
                </tbody>
41
                </tbody>