Subversion Repositories SmartDukaan

Rev

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


<div class="col-lg-12">
        <h5>Note</h5>
        <b>Hygiene Payout</b> - This is basis the customer details entered in
        the system, pls refer to hygiene meter in your Dashboard. <br> <b>Tertiary
                Payout</b> - This is basis the activation of the handset. <br> <b>Investment
                Payout</b> - Investments in stocks should be above 90% for minimum 12 days
        in a month to earn 2%, between 8-11 days will earn 1%, less then 8 days
        there will be no payout. <br> <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>Sell In Margin</th>
                                <th colspan=4>Sell Out Margin</th>
                                <th rowspan=2>Activation Payout</th>
                                <th rowspan=2>Total Scheme</th>
                                <th rowspan=2>Landing Price</th>
                                <th rowspan=2>MOP-DP</th>
                                <th rowspan=2>Net Price</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.getNetPrice2()</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>