Subversion Repositories SmartDukaan

Rev

Rev 29646 | Go to most recent revision | Details | Last modification | View Log | RSS feed

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