Subversion Repositories SmartDukaan

Rev

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

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