Subversion Repositories SmartDukaan

Rev

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