Subversion Repositories SmartDukaan

Rev

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

Rev 29988 Rev 29994
Line 30... Line 30...
30
        }
30
        }
31
    </style>
31
    </style>
32
    <link href="../resources/css/brand-logo.css" rel="stylesheet"/>
32
    <link href="../resources/css/brand-logo.css" rel="stylesheet"/>
33
</head>
33
</head>
34
<body>
34
<body>
-
 
35
<div class="container-fluid">
35
    #foreach($brands in $brandParts)
36
    #foreach($brands in $brandParts)
36
    <div class="container-fluid">
-
 
37
        <table class="table table-bordered table-striped">
37
        <table class="table table-bordered table-striped">
38
            <thead>
38
            <thead>
39
            <tr>
39
            <tr>
40
                <th rowspan="2">Region</th>
40
                <th rowspan="2">Region</th>
41
                #foreach($brand in $brands)
41
                #foreach($brand in $brands)
Line 55... Line 55...
55
                <tr>
55
                <tr>
56
                    <td><b>$warehouseMap.get($brandRegionModelEntry.getKey())</b></td>
56
                    <td><b>$warehouseMap.get($brandRegionModelEntry.getKey())</b></td>
57
                    #foreach($brand in $brands)
57
                    #foreach($brand in $brands)
58
                        #set($obj = $brandRegionModelEntry.getValue().get($brand))
58
                        #set($obj = $brandRegionModelEntry.getValue().get($brand))
59
                        #if($obj.getTodayPOValue())
59
                        #if($obj.getTodayPOValue())
60
                            <td>$obj.getTodayPOValue()</td>
60
                            <td>$nf.format($obj.getTodayPOValue())</td>
61
                        #else
61
                        #else
62
                            <td>-</td>
62
                            <td>-</td>
63
                        #end
63
                        #end
64
                        #if($obj.getTodayPOBilledValue())
64
                        #if($obj.getTodayPOBilledValue())
65
                            <td>$obj.getTodayPOBilledValue()</td>
65
                            <td>$nf.format($obj.getTodayPOBilledValue())</td>
66
                        #else
66
                        #else
67
                            <td>-</td>
67
                            <td>-</td>
68
                        #end
68
                        #end
69
                        #if($obj.getTodayBilledValue())
69
                        #if($obj.getTodayBilledValue())
70
                            <td>$obj.getTodayBilledValue()</td>
70
                            <td>$nf.format($obj.getTodayBilledValue())</td>
71
                        #else
71
                        #else
72
                            <td>-</td>
72
                            <td>-</td>
73
                        #end
73
                        #end
74
                    #end
74
                    #end
75
 
75
 
Line 77... Line 77...
77
                #end
77
                #end
78
            </tbody>
78
            </tbody>
79
        </table>
79
        </table>
80
    </div>
80
    </div>
81
    #end
81
    #end
82
 
-
 
-
 
82
<div class="container">
83
<h3>Total Collection</h3>
83
    <h3>Total Collection</h3>
84
<div class="row">
84
    <div class="row">
85
    #foreach($warehouseEntry in $warehouseMap.entrySet())
85
        #foreach($warehouseEntry in $warehouseMap.entrySet())
86
        <div class="col-lg-3" style="font-size: 24px">
86
            <div class="col-lg-3" style="font-size: 24px">
87
            $warehouseEntry.getValue() -
87
                $warehouseEntry.getValue() -
88
            #if($warehouseCollectionMap.get($warehouseEntry.getKey()))
88
                #if($warehouseCollectionMap.get($warehouseEntry.getKey()))
89
                $warehouseCollectionMap.get($warehouseEntry.getKey())
89
                    $nf.format($warehouseCollectionMap.get($warehouseEntry.getKey()))
90
            #else
90
                #else
91
                0
91
                    0
92
            #end
92
                #end
93
        </div>
93
            </div>
94
    #end
94
        #end
-
 
95
    </div>
95
</div>
96
</div>
96
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
97
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
97
        integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
98
        integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
98
        crossorigin="anonymous"></script>
99
        crossorigin="anonymous"></script>
99
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"
100
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"