Subversion Repositories SmartDukaan

Rev

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

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