Subversion Repositories SmartDukaan

Rev

Rev 28277 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28277 Rev 30029
Line 19... Line 19...
19
	border-right-color: transparent;
19
	border-right-color: transparent;
20
}
20
}
21
</style>
21
</style>
22
 
22
 
23
 
23
 
-
 
24
<div class="row">
-
 
25
<form id="brand-limit-container">
24
 
26
 
25
<form id="brand-limit-container" style="width: 30%;">
27
<div class="col-lg-5">
26
	<table class="table table-striped brands-container">
28
	<table class="table table-striped brands-container">
27
		<thead>
29
		<thead>
28
 
30
 
29
			<h3>Set Limit Of $brand For All Partners</h3>
31
			<h3>Set Limit Of $brand For All Partners</h3>
30
			<tr>
32
			<tr>
Line 63... Line 65...
63
 
65
 
64
 
66
 
65
 
67
 
66
		</tbody>
68
		</tbody>
67
	</table>
69
	</table>
-
 
70
</div>
-
 
71
<div class="col-lg-5">
-
 
72
	<table class="table table-striped brands-container">
-
 
73
		<thead>
-
 
74
 
-
 
75
			<h3>Set Stock Limit Of $brand For All Partners</h3>
-
 
76
			<tr>
-
 
77
				<th>Brand</th>
-
 
78
				<th>New stock Limit</th>
-
 
79
				<th>Submit</th>
-
 
80
			</tr>
-
 
81
 
-
 
82
		</thead>
-
 
83
 
-
 
84
		<tbody>
-
 
85
			<div class="row">
-
 
86
				#if($brandLimit)
-
 
87
				<tr>
-
 
88
 
-
 
89
					<td value="$brandLimit.getBrandName()" id="inputBrand">$brandLimit.getBrandName()</td>
-
 
90
					<td><input type="text" value="$brandLimit.getStockLimit()"
-
 
91
						class="form-control" name="stockLimit" placeholder="Limit"
-
 
92
						required></td>
-
 
93
					<td><button type="button"
-
 
94
							class="btn btn-primary set-stock-limit"
-
 
95
							data-brand="$brandLimit.getBrandName()">submit</button></td>
-
 
96
				</tr>
-
 
97
				#else
-
 
98
				<tr>
-
 
99
 
-
 
100
					<td value="$brand" id="inputBrand">$brand</td>
-
 
101
					<td><input type="text" class="form-control" name="stockLimit"
-
 
102
						placeholder="Limit" required></td>
-
 
103
					<td><button type="button"
-
 
104
							class="btn btn-primary set-stock-limit" data-brand="$brand">submit</button></td>
-
 
105
				</tr>
-
 
106
 
-
 
107
				#end
-
 
108
			</div>
-
 
109
 
-
 
110
 
-
 
111
 
-
 
112
		</tbody>
-
 
113
	</table>
-
 
114
</div>
68
 
115
 
69
</form>
116
</form>
-
 
117
</div>
-
 
118
 
70
 
119
 
71
<form id="brand-limit-partners" style="width: 60%;">
120
<form id="brand-limit-partners" style="width: 60%;">
72
	<table class="table table-border table-condensed table-bordered"
121
	<table class="table table-border table-condensed table-bordered"
73
		id="brand-dataTable-limit" style="width: 100%;">
122
		id="brand-dataTable-limit" style="width: 100%;">
74
 
123
 
Line 77... Line 126...
77
			<tr>
126
			<tr>
78
				<th>Brand</th>
127
				<th>Brand</th>
79
				<th>Partner Id</th>
128
				<th>Partner Id</th>
80
				<th>Limit</th>
129
				<th>Limit</th>
81
				<th>New Limit</th>
130
				<th>New Limit</th>
-
 
131
				<th>Stock Limit</th>
-
 
132
				<th>New Min Stock Limit</th>
-
 
133
			
82
				<th>Submit</th>
134
				<th>Submit</th>
83
			</tr>
135
			</tr>
84
 
136
 
85
		</thead>
137
		</thead>
86
 
138