Subversion Repositories SmartDukaan

Rev

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

Rev 35638 Rev 35645
Line 75... Line 75...
75
    <table id="rbm-call-target-table" class="table table-bordered table-striped">
75
    <table id="rbm-call-target-table" class="table table-bordered table-striped">
76
        <thead>
76
        <thead>
77
        <tr>
77
        <tr>
78
            <th>RBM Name</th>
78
            <th>RBM Name</th>
79
            <th>Partner Count</th>
79
            <th>Partner Count</th>
80
            <th>ARR (Ach/Tgt)</th>
80
            <th>(Ach/Tgt)</th>
81
            <th>Calling Target</th>
81
            <th>Calling Target</th>
82
            <th>Called</th>
82
            <th>Called</th>
83
            <th class="highlight-plan-today">Plan Today</th>
83
            <th class="highlight-plan-today">Plan Today</th>
84
            <th class="highlight-carry-forward">Carry Forward</th>
84
            <th class="highlight-carry-forward">Carry Forward</th>
85
            <th style="background-color: #1e6e0e; color: white;">Zero Billing</th>
85
            <th style="background-color: #1e6e0e; color: white;">Zero Billing</th>
86
            <th class="highlight-untouched">Untouched</th>
86
            <th class="highlight-untouched">Untouched</th>
87
            <th class="highlight-future-plan">Future Plan</th>
87
            <th class="highlight-future-plan">Future Plan</th>
88
            <th>Normal</th>
88
            <th>Normal</th>
89
            <th style="background-color: #c0392b;">Out of Sequence</th>
89
            <th style="background-color: #c0392b;">Out of Sequence</th>
-
 
90
            <th>Download</th>
90
        </tr>
91
        </tr>
91
        </thead>
92
        </thead>
92
        <tbody>
93
        <tbody>
93
            #set($totalPartnerCount = 0)
94
            #set($totalPartnerCount = 0)
94
            #set($totalTodayTarget = 0)
95
            #set($totalTodayTarget = 0)
Line 142... Line 143...
142
            <td><strong>$totalZeroBilling</strong></td>
143
            <td><strong>$totalZeroBilling</strong></td>
143
            <td class="highlight-untouched"><strong>$totalUntouched</strong></td>
144
            <td class="highlight-untouched"><strong>$totalUntouched</strong></td>
144
            <td class="highlight-future-plan"><strong>$totalFuturePlan</strong></td>
145
            <td class="highlight-future-plan"><strong>$totalFuturePlan</strong></td>
145
            <td><strong>$totalNormal</strong></td>
146
            <td><strong>$totalNormal</strong></td>
146
            <td class="highlight-oos"><strong>$totalOutOfSequence</strong></td>
147
            <td class="highlight-oos"><strong>$totalOutOfSequence</strong></td>
-
 
148
            <td></td>
147
        </tr>
149
        </tr>
148
 
150
 
149
            #foreach($model in $rbmCallTargetModels)
151
            #foreach($model in $rbmCallTargetModels)
150
                #set($rowTarget = $model.getTodayTargetOfCall() + $model.getMovedToFuture())
152
                #set($rowTarget = $model.getTodayTargetOfCall() + $model.getMovedToFuture())
151
                #set($rowAchieved = $model.getValueTargetAchieved() + $model.getMovedToFuture())
153
                #set($rowAchieved = $model.getValueTargetAchieved() + $model.getMovedToFuture())
Line 179... Line 181...
179
                              onclick="showOutOfSequenceDetails($model.getAuthId(), '$model.getRbmName()')">$model.getOutOfSequenceCount()</span>
181
                              onclick="showOutOfSequenceDetails($model.getAuthId(), '$model.getRbmName()')">$model.getOutOfSequenceCount()</span>
180
                    #else
182
                    #else
181
                        0
183
                        0
182
                    #end
184
                    #end
183
                </td>
185
                </td>
-
 
186
                <td>
-
 
187
                    <a href="/indent/rbm_call_target/download_raw_data?authId=$model.getAuthId()" target="_blank"
-
 
188
                       class="btn btn-sm btn-outline-success">CSV</a>
-
 
189
                </td>
184
            </tr>
190
            </tr>
185
            #end
191
            #end
186
        </tbody>
192
        </tbody>
187
    </table>
193
    </table>
188
</div>
194
</div>