Subversion Repositories SmartDukaan

Rev

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

Rev 35636 Rev 35637
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 in L (Ach/Tgt)</th>
80
            <th>ARR (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>
Line 190... Line 190...
190
<script type="text/javascript">
190
<script type="text/javascript">
191
    $(document).ready(function () {
191
    $(document).ready(function () {
192
        $('.lakh').each(function () {
192
        $('.lakh').each(function () {
193
            var val = parseInt($(this).text().trim());
193
            var val = parseInt($(this).text().trim());
194
            if (!isNaN(val)) {
194
            if (!isNaN(val)) {
195
                $(this).text((val / 100000).toFixed(1));
195
                $(this).text((val / 100000).toFixed(1) + 'L');
196
            }
196
            }
197
        });
197
        });
198
    });
198
    });
199
 
199
 
200
    function showOutOfSequenceDetails(authId, rbmName) {
200
    function showOutOfSequenceDetails(authId, rbmName) {