Subversion Repositories SmartDukaan

Rev

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