Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
27723 tejbeer 1
 
2
<section class="wrapper">
3
	<div class="row">
4
		<div class="col-lg-12">
5
			<h3 class="page-header"><i class="icon_document_alt"></i>Inventory</h3>
6
			<ol class="breadcrumb">
7
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
8
				<li><i class="icon_document_alt"></i>Inventory</li>						  	
9
			</ol>
10
		</div>
11
	</div>
12
 
13
 
14
	<table style="Width:100%; margin:15px">
15
		<tr>
16
			<td  style="Width:40%; float:left">
17
		     <div class = "row">
18
		       <div class="col-lg-6">
19
			    <div class="input-group">
20
		    		<select class="form-control input-sm" id = "warehouseMap" name="warehouseMap" placeholder="Warehouse">
21
						<option value="" disabled selected>Warehouse</option>
22
						#if($warehouseId.contains(0))
23
						<option value="0" selected>All</option>
24
						#else 
25
							<option value="0">All</option>
26
							#end
27
						  #foreach($wm in $warehouseMap.entrySet()))
28
	                      #if($warehouseId.contains($wm.getKey()) && !$warehouseId.contains(0))
29
		             		<option value="$wm.getKey()" selected>$wm.getValue()</option>
30
		             	  #else
31
		             		<option value="$wm.getKey()">$wm.getValue()</option>
32
		             	  #end
33
		             	  #end
34
		             	</select>
35
	    		<span class="input-group-btn">
36
	      			<button class="btn btn-primary submit" id="warehouse-wise-billing" type="button">Go!</button>
37
	    		</span>
38
	          </div>
39
	          </div>
40
	         </div>
41
	        </td>
42
 
43
 
44
		</tr>
45
    </table>
46
	<div class="row">
47
	<div class="col-lg-6">
48
 
49
				 <div class="row col-lg-3">
50
						<h3 style="margin-top:-2px;margin-bottom:24px"><strong>Open PO</strong></h3>
51
				 </div>
52
				 <table class="table table-striped table-advance table-hover">
53
	    			<tbody>
54
	    				<tr>
55
	    				 <th>Brand</th>
56
	    				 <th>today Qty</th>
57
	    				 <th>today</th>
58
	    				 <th>3 Days Qty</th>
59
                         <th>3 Days</th>
60
                         <th>7 Days Qty</th>
61
	    				 <th>7 Days</th>
62
	    				</tr>
63
	    				#foreach($po in $openPO)
64
	    				<tr onclick="">
65
	    	 		     <td>$po.getBrand()</td>
66
	    	 		     <td class="currency">$po.getTodayQty()</td>
67
	    	 		     <td class="currency">$po.getTodayValue()</td> 
68
	    	 		     <td class="currency">$po.getThreedaysQty()</td> 
69
	    	 		     <td class="currency">$po.getThreedaysValue()</td>
70
	    	 		     <td class="currency">$po.getSevendaysQty()</td>
71
	    	 		     <td class="currency">$po.getSevendaysValue()</td>
72
	    	 		   </tr>
73
	    				 #end
74
 
75
	    		    </tbody>
76
	    		</table>
77
 
78
	    	 <div class="row col-lg-3">
79
						<h3 style="margin-top:-2px;margin-bottom:24px"><strong>Our Purchase</strong></h3>
80
				 </div>
81
				 <table class="table table-striped table-advance table-hover">
82
	    			<tbody>
83
	    				<tr>
84
	    				 <th>Brand</th>
85
	    				  <th>today Qty</th>
86
	    				  <th>today</th>
87
	    				  <th>3 Days Qty</th>
88
                          <th>3 Days</th>
89
                          <th>15 Days Qty</th>
90
	    				  <th>last 15 Days</th>
91
	    				  <th>MTD Qty</th>
92
	    				  <th>MTD</th>
93
 
94
	    				</tr>
95
	    				#foreach($pur in $purchase)
96
	    				<tr onclick="">
97
	    	 		     <td>$pur.getBrand()</td>
98
			 		       <td class="currency">$pur.getTodayQty()</td>
99
			 		       <td class="currency">$pur.getTodayValue()</td>
100
			 		       <td class="currency">$pur.getThreedaysQty()</td>
101
			 		      <td class="currency">$pur.getThreedaysValue()</td>
102
	    	 		     <td class="currency">$pur.getFifteendaysQty()</td>
103
	    	 		     <td class="currency">$pur.getFifteendaysValue()</td>
104
	    	 		     <td class="currency">$pur.getMtdQty()</td>
105
	    	 		     <td class="currency">$pur.getMtd()</td>
106
	    	 		   </tr>
107
	    				 #end
108
 
109
	    		    </tbody>
110
	    		</table>
111
	</div>
112
 
113
	<div class="col-lg-6">
114
			 <div class="row col-lg-4">
115
						<h3 style="margin-top:-2px;margin-bottom:24px"><strong>Secondary Billing</strong></h3>
116
				 </div>
117
				 <table class="table table-striped table-advance table-hover">
118
	    			<tbody>
119
	    				<tr>
120
	    				 <th>Brand</th>
121
	    				 <th>today Qty</th>
122
	    				 <th>today</th>
123
                         <th>3 Days Qty</th>
124
                         <th>3 Days</th>
125
                         <th>MTD Qty</th>
126
	    				 <th>MTD</th>
127
	    				  <th>LMTD Qty</th>
128
	    				  <th>LMTD</th>
129
 
130
	    				</tr>
27724 tejbeer 131
 
132
	    			  #foreach($bill in $billing)
27723 tejbeer 133
	    				<tr onclick="">
27724 tejbeer 134
	    	 		      <td>$bill.getBrand()</td>
135
	    	 		      <td class="currency">$bill.getTodayQty()</td>
136
	    	 		      <td class="currency">$bill.getTodayValue()</td>
137
	    	 		      <td class="currency">$bill.getThreedaysQty()</td>
138
	    	 		      <td class="currency">$bill.getThreedaysValue()</td>
139
	    	 		      <td class="currency">$bill.getMtdQty()</td>
140
	    	 		      <td class="currency">$bill.getMtd()</td>
141
	    	 		      <td class="currency">$bill.getLmtdQty()</td>
142
	    	 		       <td class="currency">$bill.getLmtd()</td>
143
	    	 		     </tr>
144
	    				 #end
145
 
27723 tejbeer 146
 
147
	    		    </tbody>
148
	    		</table>
149
 
150
	    			 <div class="row col-lg-3">
151
						<h3 style="margin-top:-2px;margin-bottom:24px"><strong>Partner Tertairy</strong></h3>
152
				 </div>
153
				 <table class="table table-striped table-advance table-hover">
154
	    			<tbody>
155
	    				<tr>
156
	    				 <th>Brand</th>
157
	    				 <th>today Qty</th>
158
	    				 <th>today</th>
159
                         <th>3 Days Qty</th>
160
                         <th>3 Days</th>
161
                         <th>MTD Qty</th>
162
	    				 <th>MTD</th>
163
	    				  <th>LMTD Qty</th>
164
	    				  <th>LMTD</th>
165
 
166
	    				</tr>
27724 tejbeer 167
	    				#foreach($ter in $tertiary)
27723 tejbeer 168
	    				<tr onclick="">
27724 tejbeer 169
	    	 		     <td>$ter.getBrand()</td>
170
	    	 		      <td class="currency">$ter.getTodayQty()</td>
171
	    	 		     <td class="currency">$ter.getTodayValue()</td>
172
	    	 		      <td class="currency">$ter.getThreedaysQty()</td>
173
	    	 		    <td class="currency">$ter.getThreedaysValue()</td>
174
	    	 		      <td class="currency">$ter.getMtdQty()</td>
175
	    	 		    <td class="currency">$ter.getMtd()</td>
176
	    	 		      <td class="currency">$ter.getLmtdQty()</td>
177
	    	 		    <td class="currency">$ter.getLmtd()</td>
178
	    	 		   </tr>
179
	    			#end
27723 tejbeer 180
	    		    </tbody>
181
	    		</table>	
182
 
183
	</div>
184
	</div>
185
 
186
</section>