Subversion Repositories SmartDukaan

Rev

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

Rev 34524 Rev 35244
Line 210... Line 210...
210
                <div class="col-lg-6">
210
                <div class="col-lg-6">
211
                    <h3>Price Drop</h3>
211
                    <h3>Price Drop</h3>
212
                    <table class="table table-border table-condensed table-bordered"
212
                    <table class="table table-border table-condensed table-bordered"
213
                           id="offr-des">
213
                           id="offr-des">
214
                        <tr>
214
                        <tr>
-
 
215
                            <th>Price Drop Id</th>
-
 
216
                            <th>Price Drop Date</th>
215
                            <th>Status</th>
217
                            <th>Status</th>
216
                            <th>Amount</th>
218
                            <th>Amount</th>
-
 
219
                            <th>Credited On</th>
-
 
220
                            <th>Rejected On</th>
217
                            <th>Description</th>
221
                            <th>Description</th>
-
 
222
                            <th>Status</th>
-
 
223
                            <th>Amount</th>
218
 
224
 
219
 
225
 
220
                        </tr>
226
                        </tr>
221
                        #if($priceDropImeis && !$priceDropImeis.isEmpty())
227
                        #if($priceDropImeis && !$priceDropImeis.isEmpty())
222
                            #foreach( $pdi in $priceDropImeis )
228
                            #foreach( $pdi in $priceDropImeis )
223
                                <tr class="priceDrop-details">
229
                                <tr class="priceDrop-details">
-
 
230
                                    <td>$pdi.getPriceDrop().getId()</td>
-
 
231
                                    <td>$pdi.getPriceDrop().getAffectedOn().format($dateFormatter)</td>
224
                                    <td>$pdi.getStatus()</td>
232
                                    <td>$pdi.getStatus()</td>
225
                                    <td>$pdi.getPriceDrop().getAmount()</td>
233
                                    <td>$pdi.getPriceDrop().getAmount()</td>
-
 
234
                                    #if($pdi.getCreditTimestamp())
-
 
235
                                        <td>$pdi.getCreditTimestamp().format($dateTimeFormatter)</td>
-
 
236
                                    #else
-
 
237
                                        <td>-</td>
-
 
238
                                    #end
-
 
239
                                    #if($pdi.getRejectTimestamp())
-
 
240
                                        <td>$pdi.getRejectTimestamp().format($dateFormatter)</td>
-
 
241
                                    #else
-
 
242
                                        <td>-</td>
-
 
243
                                    #end
226
                                    #if($pdi.getRejectionReason())
244
                                    #if($pdi.getRejectionReason())
227
                                        <td>$pdi.getRejectionReason()</td>
245
                                        <td>$pdi.getRejectionReason()</td>
228
                                    #else
246
                                    #else
229
                                        <td>-</td>
247
                                        <td>-</td>
230
                                    #end
248
                                    #end