Subversion Repositories SmartDukaan

Rev

Rev 28102 | Rev 28117 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
28102 tejbeer 1
 
2
<div class="col-lg-12">
28109 tejbeer 3
	<h4>Note</h4>
4
	<b>Hygiene Payout</b> - Hygiene Payout calculation is subject to sales
5
	hygiene including customer & other details entered in the system, pl
6
	refer to hygiene meter in your Dashboard.<br> <b>Tertiary
7
		Payout</b> - Tertiary Payout calculation is subject to activation of the
8
	handset against the sales entered in system. <br> <b>Investment
9
		Payout</b> - Investment Payout calculation is subject to maintenance of
10
	90% of minimum Investments for minimum 12 days in a month as per below
11
	slabs
12
	<ul>
13
		<li>a) 2% in case minimum investment is 90% or above for 12 days
14
			or more in a month</li>
15
		<li>b) 1% in case of minimum investment is 90% or above for 8-11
16
			days in a month</li>
17
		<li>c) No payout in case of minimum investment is less than 8
18
			days in a month to change at the discretion of SmartDukaan.</li>
19
	</ul>
20
	<b>Below Price Structure is subject to change at the discretion of
21
		SmartDukaan.</b>
22
 
28102 tejbeer 23
</div>
24
 
25
<div class="col-lg-12">
26
	<table class="table table-border table-condensed table-bordered"
27
		id="circular-table">
28
 
29
		<thead>
30
			<tr>
31
 
32
				<th rowspan=2>Item Id</th>
33
				<th rowspan=2>Model</th>
34
				<th rowspan=2>Type</th>
35
				<th rowspan=2>MRP</th>
36
				<th rowspan=2>MOP</th>
37
				<th rowspan=2>DP</th>
28109 tejbeer 38
				<th colspan=2 style="text-align: center">Sell In Margin</th>
39
				<th colspan=4 style="text-align: center">Sell Out Margin</th>
28102 tejbeer 40
				<th rowspan=2>Activation Payout</th>
41
				<th rowspan=2>Total Scheme</th>
42
				<th rowspan=2>Landing Price</th>
43
				<th rowspan=2>MOP-DP</th>
44
				<th rowspan=2>Net Price</th>
45
				<th rowspan=2>Net % Margin</th>
46
 
47
			</tr>
48
 
49
			<tr>
50
 
51
 
52
				<th>Base Payout</th>
53
				<th>Cash Discount</th>
54
				<th>Tertiary Payout</th>
55
				<th>Hygiene Payout</th>
56
				<th>Category Payout</th>
57
				<th>Investment Payout</th>
58
 
59
 
60
 
61
			</tr>
62
 
63
 
64
 
65
		</thead>
66
		<tbody>
67
			#foreach($pc in $priceCircular )
68
			<tr>
69
 
70
				<td>$pc.getItemId()</td>
71
				<td>$pc.getModelName() $pc.getModelNumber() ($pc.getColor())</td>
72
				<td>$pc.getType()</td>
73
				<td class="currency">$pc.getMrp()</td>
74
				<td class="currency">$pc.getMop()</td>
75
				<td class="currency">$pc.getSellingPrice()</td>
76
				<td class="currency">$pc.getBasePayout()</td>
77
				<td class="currency">$pc.getCashDiscount()</td>
78
				<td class="currency">$pc.getTertiaryPayout()</td>
79
				<td class="currency">$pc.getHygienePayout()</td>
80
				<td class="currency">$pc.getCategoryPayout()</td>
81
				<td class="currency">$pc.getInvestmentPayout()</td>
82
				<td class="currency">$pc.getModelSpecfic()</td>
83
				<td class="currency">$pc.getTotalScheme()</td>
84
				<td class="currency">$pc.getNetPrice()</td>
85
				<td class="currency">$pc.getMopdp()</td>
86
				<td class="currency">$pc.getNetPrice2()</td>
87
				<td>$pc.getNetMargin()</td>
88
 
89
			</tr>
90
			#end
91
		</tbody>
92
	</table>
93
</div>
94
 
95
<script type="text/javascript">
96
	$(document).ready(function() {
97
		var dtable = $('#circular-table').DataTable({
98
 
99
			"bPaginate" : true,
100
			"bLengthChange" : true,
101
			"bFilter" : true,
102
			"bInfo" : false,
103
			"bAutoWidth" : false,
104
 
105
		}
106
 
107
		);
108
	});
109
</script>