Subversion Repositories SmartDukaan

Rev

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


<style>
.table {
        background-image:
                url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='100px' width='100px'><text transform='translate(20, 100) rotate(-45)' fill='rgb(211,211,211)' font-size='20'>$partnerId</text></svg>");
}
</style>

<script type="text/javascript">
        $(document).ready(function() {
                $('#circular-table').contextmenu(function() {
                        return false;
                });
        });
</script>
<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 to change at the discretion of SmartDukaan.</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="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=2 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>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.getItemId()</td>
                                <td>$pc.getModelName() $pc.getModelNumber() ($pc.getColor())</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.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>

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

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

                }

                );
        });
</script>