Subversion Repositories SmartDukaan

Rev

Rev 30122 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<script type="text/javascript">
        
</script>

<body>
        <div class="col-lg-12">
                <h4>Note</h4>
                <b>Hygiene Payout</b> - Hygiene Payout calculation is subject to sales
                hygiene including customer & other details entered in the system, pl
                refer to hygiene meter in your Dashboard.<br> <b>Tertiary
                        Payout</b> - Tertiary Payout calculation is subject to activation of the
                handset against the sales entered in system. <br> <b>Investment
                Payout</b> - Investment Payout calculation is subject to maintenance of
                90% of minimum Investments for minimum 12 days in a month as per below
                slabs
                <ul>
                        <li>a) 2% in case minimum investment is 90% or above for 12 days
                                or more in a month
                        </li>
                        <li>b) 1% in case of minimum investment is 90% or above for 8-11
                                days in a month
                        </li>
                        <li>c) No payout in case of minimum investment is less than 8
                                days in a month
                        </li>
                </ul>
                <b>Below Price Structure is subject to change at the discretion of
                        SmartDukaan.</b>

        </div>

        <div class="col-lg-12">
                <table class="table table-border table-condensed table-bordered"
                           id="price-circular-table">

                        <thead>
                                <tr>

                                        <th rowspan=2>Item Id</th>
                                        <th rowspan=2>Model</th>
                                        <th rowspan=2>Type</th>
                                        <th rowspan=2>MRP</th>
                                        <th rowspan=2>MOP</th>
                                        <th rowspan=2>DP</th>
                                        <th colspan=3 style="text-align: center">Sell In Margin</th>
                                        <th colspan=4 style="text-align: center">Sell Out Margin</th>
                                        <th rowspan=2>Activation Payout</th>
                                        <th rowspan=2>Total Margin</th>
                                        <th rowspan=2>Net Landing Price</th>
                                        <th rowspan=2>MOP-DP</th>
                                        <th rowspan=2>Total Profit</th>
                                        <th rowspan=2>Net % Margin</th>

                                </tr>

                                <tr>


                                        <th>Base Payout</th>
                                        <th>Cash Discount</th>
                                        <th>Upfront Margin</th>
                                        <th>Tertiary Payout</th>
                                        <th>Hygiene Payout</th>
                                        <th>Category Payout</th>
                                        <th>Investment Payout</th>



                                </tr>



                        </thead>
                        <tbody>
                                #foreach($pc in $priceCircular )
                                <tr>

                                        <td>$pc.getBrand() $pc.getModelName() $pc.getModelNumber()</td>
                                        <td>$pc.getType()</td>
                                        <td class="currency">$pc.getMrp()</td>
                                        <td class="currency">$pc.getMop()</td>
                                        <td class="currency">$pc.getSellingPrice()</td>
                                        <td class="currency">$pc.getBasePayout()</td>
                                        <td class="currency">$pc.getCashDiscount()</td>
                                        <td class="currency">$pc.getUpfrontMargin()</td>
                                        <td class="currency">$pc.getTertiaryPayout()</td>
                                        <td class="currency">$pc.getHygienePayout()</td>
                                        <td class="currency">$pc.getCategoryPayout()</td>
                                        <td class="currency">$pc.getInvestmentPayout()</td>
                                        <td class="currency">$pc.getModelSpecfic()</td>
                                        <td class="currency">$pc.getTotalScheme()</td>
                                        <td class="currency">$pc.getNetPrice()</td>
                                        <td class="currency">$pc.getMopdp()</td>
                                        <td class="currency">$pc.getTotalProfit()</td>
                                        <td>$pc.getNetMargin()</td>

                                </tr>
                                #end
                        </tbody>
                </table>
        </div>
</body>
<script type="text/javascript">
        $(document).ready(function() {
                var dtable = $('#price-circular-table').DataTable({

                        "bPaginate" : true,
                        "bLengthChange" : true,
                        "bFilter" : true,
                        "bInfo" : false,
                        "bAutoWidth" : false,

                }

                );
        });
</script>