Subversion Repositories SmartDukaan

Rev

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

Rev 31296 Rev 31751
Line 17... Line 17...
17
        <div class="col-lg-12">
17
        <div class="col-lg-12">
18
            <table id="saleDetail" class="table table-striped table-advance table-hover" style="width:100%">
18
            <table id="saleDetail" class="table table-striped table-advance table-hover" style="width:100%">
19
                <thead>
19
                <thead>
20
                <tr>
20
                <tr>
21
                    <th>Name</th>
21
                    <th>Name</th>
-
 
22
                    <th>Code</th>
22
                    #foreach($ym in $yearMonth)
23
                    #foreach($ym in $yearMonth)
23
                
24
                
24
                    <th>$ym.format($dateYearMonthFormatter)</th>
25
                    <th>$ym.format($dateYearMonthFormatter)</th>
25
                    #end
26
                    #end
26
                     </tr>
27
                     </tr>
27
                </thead>
28
                </thead>
28
                <tbody>
29
                <tbody>
29
                    #foreach($name in $customRetailerMap.entrySet())
30
                    #foreach($name in $customRetailerMap.entrySet())
30
                    <tr>
31
                    <tr>
31
                     <td>$name.getValue().getBusinessName()</td>
32
                     <td>$name.getValue().getBusinessName()</td>
-
 
33
                       <td>$name.getValue().getCode()</td>
32
                    #foreach($ym in $yearMonth)
34
                    #foreach($ym in $yearMonth)
33
                     #if($partnerMonthSaleMap.get($name.getValue().getPartnerId()).get($ym))
35
                     #if($partnerMonthSaleMap.get($name.getValue().getPartnerId()).get($ym))
34
                    <td class="currency">$partnerMonthSaleMap.get($name.getValue().getPartnerId()).get($ym)</td>
36
                    <td class="currency">$partnerMonthSaleMap.get($name.getValue().getPartnerId()).get($ym)</td>
35
                    #else
37
                    #else
36
                    <td>0</td>
38
                    <td>0</td>