Subversion Repositories SmartDukaan

Rev

Rev 23951 | Rev 24019 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23951 Rev 23968
Line 83... Line 83...
83
	  <div class="row">
83
	  <div class="row">
84
			<div class="col-lg-12" id="priceDrop" >
84
			<div class="col-lg-12" id="priceDrop" >
85
				<table class="table table-striped table-condensed table-bordered">
85
				<table class="table table-striped table-condensed table-bordered">
86
	    			<thead>
86
	    			<thead>
87
			            <tr>
87
			            <tr>
88
			            	<th>Item Id</th>
88
							<th>Item Name</th>
89
							<th>Item Description</th>
89
							<th>Old DP</th>
90
							<th>Price Drop<br/>Amount</th>
90
							<th>Price Drop</th>
-
 
91
							<th>New DP</th>
-
 
92
							<th>TP</th>
-
 
93
							<th>NLC </th>
91
							<th>Affetced On</th>
94
							<th>Affected On</th>
92
							<th>Created On</th>
95
							<th>Created On</th>
93
							<th>Partner Payout</th>
-
 
94
							<th>Price Drop In</th>
96
							<th>Price Drop In</th>
-
 
97
							<th>Partner Payout</th>
95
							<th>Processed On</th>
98
							<th>Processed On</th>
96
							<th>Download IMEIs</th>
99
							<th>Download IMEIs</th>
97
							
100
							
98
			            </tr>
101
			            </tr>
99
			        </thead>
102
			        </thead>
100
					<tbody>
103
					<tbody>
101
						#foreach($priceDrop in $priceDrops )
104
						#foreach($priceDrop in $priceDrops )
102
						<tr data-priceDropId="$priceDrop.getId()">
105
						<tr data-pricedropid="$priceDrop.getId()">
103
							<td>$priceDrop.getItemId()</td>
106
							<td>$catalogDescription.get($priceDrop.getCatalogItemId())</td>
104
							<td>$tagListingMap.get($priceDrop.getItemId()).getItemDescription()</td>
107
							<td>$priceDrop.getOldDp()</td>
105
							<td>$priceDrop.getAmount()</td>
108
							<td>$priceDrop.getAmount()</td>
-
 
109
							<td>$priceDrop.getNewDp()</td>
-
 
110
							<td>$priceDrop.getTp()</td>
-
 
111
							<td>$priceDrop.getNlc()</td>
106
							<td>$priceDrop.getAffectedOn().format($dateFormatter)</td>
112
							<td>$priceDrop.getAffectedOn().format($dateFormatter)</td>
107
							<td>$priceDrop.getCreatedOn().format($dateTimeFormatter)</td>
113
							<td>$priceDrop.getCreatedOn().format($dateTimeFormatter)</td>
108
							#if($priceDrop.getProcessTimestamp())
114
							#if($priceDrop.getProcessTimestamp())
109
							<td>$priceDrop.getPriceDropIn()</td>
115
							<td>$priceDrop.getPriceDropIn()</td>
110
							<td>$priceDrop.getPartnerPayout()</td>
116
							<td>$priceDrop.getPartnerPayout()</td>
111
							<td>$priceDrop.getProcessTimestamp().format($dateTimeFormatter)</td>	
117
							<td>$priceDrop.getProcessTimestamp().format($dateTimeFormatter)</td>	
112
							#else
118
							#else
113
							<td>
119
							<td>
114
									<input type="number" name="priceDropIn" placeholder = "Price Drop In"   class="form-control phone input-sm"/>
120
									<input type="number" name="priceDropIn" placeholder = "Price Drop In"   class="form-control price-drop-in input-sm"/>
115
							</td>
121
							</td>
116
							<td>
122
							<td>
117
									<input type="number" name="partnerPayout" placeholder = "Partner Payout"   class="form-control phone input-sm"/>
123
									<input type="number" name="partnerPayout" placeholder = "Partner Payout"   class="form-control partner-payout input-sm"/>
118
							</td>
124
							</td>
119
							<td>
125
							<td>
120
								<input class="btn btn-info btn-sm" data-cashback="$priceDrop.getId()" type="submit" value="Process" id="cashTopartner"/>
126
								<input class="btn btn-info btn-sm mk_process_price_drop" data-cashback="$priceDrop.getId()" type="submit" value="Process"/>
121
							</td>
127
							</td>
122
							#end
128
							#end
123
							<td>
129
							<td>
124
								<input class="downloadtotalIMEI btn btn-info btn-sm" value="Download" type="submit" />
130
								<input class="downloadtotalIMEI btn btn-info btn-sm" value="Download" type="submit" />
125
							</td>
131
							</td>