| 19747 |
naman |
1 |
|
|
|
2 |
<div class="container">
|
|
|
3 |
<div class = "row">
|
|
|
4 |
<div class="col-lg-12 table-responsive">
|
|
|
5 |
<h2><?php echo __('Pending Retailers'); ?></h2>
|
|
|
6 |
|
|
|
7 |
<table cellpadding="0" cellspacing="0" border="1" class="table table-striped" >
|
|
|
8 |
<tr>
|
|
|
9 |
|
|
|
10 |
<th style="text-align:center">Mobile No.</th>
|
|
|
11 |
<th style="text-align:center">Tin</th>
|
|
|
12 |
<th style="text-align:center">Address</th>
|
|
|
13 |
<th style="text-align:center">City</th>
|
|
|
14 |
<th style="text-align:center">State</th>
|
|
|
15 |
<th></th>
|
|
|
16 |
</tr>
|
|
|
17 |
|
|
|
18 |
<?php foreach($pending as $pkey => $pvalue):?>
|
|
|
19 |
<tr>
|
|
|
20 |
<td style="text-align:center"><?php echo $pvalue['Retailer']['contact1'];?></td>
|
|
|
21 |
<td style="text-align:center"><?php echo $pvalue['Retailer']['tinnumber'];?></td>
|
|
|
22 |
<td style="text-align:center"><?php echo $pvalue['Retailer']['address'];?></td>
|
|
|
23 |
<td style="text-align:center"><?php echo $pvalue['Retailer']['city'];?></td>
|
|
|
24 |
<td style="text-align:center"><?php echo $pvalue['Retailer']['state'];?></td>
|
|
|
25 |
|
|
|
26 |
<td style="text-align:center">
|
| 19751 |
naman |
27 |
<?php if(!empty($pvalue['Retailer']['tinnumber'])):?>
|
| 19747 |
naman |
28 |
<a href="/admin/retailers/retailerverify/<?php echo $pvalue['Retailer']['id']."/".$pvalue['Retailer']['tin'];?>"><button type="button" class="btn btn-success btn-xs">Get Tinxsys Info</button></a>
|
|
|
29 |
<?php else:?>
|
| 19751 |
naman |
30 |
<a href ="<?php echo $base_url."admin/retailers/verifycancel/".$pvalue['Retailer']['id'];?>/verify"><button type = "button" class = "btn btn-success btn-xs">Verify</button></a>
|
|
|
31 |
<a href ="<?php echo $base_url."admin/retailers/verifycancel/".$pvalue['Retailer']['id'];?>/cancel"><button type = "button" class = "btn btn-danger btn-xs">Cancel</button></a>
|
| 19747 |
naman |
32 |
<?php endif;?>
|
|
|
33 |
</td>
|
|
|
34 |
</tr>
|
|
|
35 |
|
|
|
36 |
<?php endforeach;?>
|
|
|
37 |
|
|
|
38 |
</table>
|
|
|
39 |
</div>
|
|
|
40 |
</div>
|
|
|
41 |
|
|
|
42 |
</div>
|