Subversion Repositories SmartDukaan

Rev

Rev 33923 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<style>
    #rbm-arr-table th {
        font-size: 17px;
    }

    #rbm-arr-table td {
        font-size: 16px;
    }
</style>

<section class="wrapper">
    ##    <div class="row">
    ##        <div class="col-lg-12">
    ##            <h3 class="page-header"><i class="icon_document_alt"></i>RBM ARR</h3>
    ##            <ol class="breadcrumb">
    ##                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
    ##                <li><i class="icon_document_alt"></i>RBM Wise Today's ARR (Basis Product Movement)</li>
    ##            </ol>
    ##        </div>
    ##    </div>

    <div class="row">
        ##        <div class="col-lg-4">
        ##         <table>
        ##             <tr>
        ##                 <td style="margin-right: 10px;"><input type="date" class="form-control arr-start_date" placeholder="select date"> </td>
        ##                 <td><button type="button" class="btn btn-info arr-button-mk">Submit</button> </td>
        ##             </tr>
        ##         </table>
        ##        </div>
        ##        <div class="col-lg-8"></div>
        <div class="clearfix"></div>
        <br>
        <div class="col-lg-12">
            <table id="rbm-arr-table" class="table table-border table-condensed table-bordered" style="width:100%">

                <thead>
                <tr>
                    <th rowspan="2" width="16%">RBM</th>
                    <th colspan="2">HID</th>
                    <th colspan="2">RUN</th>
                    <th colspan="2">SLOW</th>
                    <th colspan="2">EOL</th>
                    <th colspan="2">Other</th>
                    <th colspan="2">Total</th>
                </tr>
                <tr>
                    <th>Target</th>
                    <th>Achieved</th>

                    <th>Target</th>
                    <th>Achieved</th>

                    <th>Target</th>
                    <th>Achieved</th>

                    <th>Target</th>
                    <th>Achieved</th>

                    <th>Target</th>
                    <th>Achieved</th>

                    <th>Target</th>
                    <th>Achieved</th>
                </tr>

                </thead>
                #foreach($target in $rbmArrViewModels)
                    <tbody>
                    <tr>
                        <td>$target.getRbmName()- $target.getWarehouseName()</td>

                        <td>$target.getTodayHidTarget()</td>
                        <td>$target.getTodayAchievedHidTarget()</td>

                        <td>$target.getTodayFastMovingTarget()</td>
                        <td>$target.getTodayAchievedFastMovingTarget()</td>

                        <td>$target.getTodaySlowMovingTarget()</td>
                        <td>$target.getTodayAchievedSlowMovingTarget()</td>

                        <td>$target.getTodayEolTarget()</td>
                        <td>$target.getTodayAchievedEolTarget()</td>

                        <td>$target.getTodayOtherMovingTarget()</td>
                        <td>$target.getTodayAchievedOtherMovingTarget()</td>

                        <td>$target.getTodayTarget()</td>
                        <td>$target.getTotalAchievedTarget()</td>
                    </tr>
                    </tbody>
                #end

            </table>
        </div>


    </div>


</section>