Subversion Repositories SmartDukaan

Rev

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

Rev 19752 Rev 19769
Line 10... Line 10...
10
						<th style="text-align:center">Mobile No.</th>
10
						<th style="text-align:center">Mobile No.</th>
11
						<th style="text-align:center">Tin</th>
11
						<th style="text-align:center">Tin</th>
12
						<th style="text-align:center">Address</th>
12
						<th style="text-align:center">Address</th>
13
						<th style="text-align:center">City</th>
13
						<th style="text-align:center">City</th>
14
						<th style="text-align:center">State</th>
14
						<th style="text-align:center">State</th>
-
 
15
						<th style="text-align:center">Comment</th>
15
						<th></th>
16
						<th></th>
16
					</tr>
17
					</tr>
17
				
18
				
18
					<?php foreach($pending as $pkey => $pvalue):?>
19
					<?php foreach($pending as $pkey => $pvalue):?>
19
					<tr>
20
					<tr>
20
						<td style="text-align:center"><?php echo $pvalue['Retailer']['contact1'];?></td>
21
						<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']['tinnumber'];?></td>
22
						<td style="text-align:center"><?php echo $pvalue['Retailer']['address'];?></td>
23
						<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']['city'];?></td>
24
						<td style="text-align:center"><?php echo $pvalue['Retailer']['state'];?></td>
25
						<td style="text-align:center"><?php echo $pvalue['Retailer']['state'];?></td>
-
 
26
						<td style="text-align:center"><?php echo $pvalue['Retailer']['comments'];?></td>
25
					
27
					
26
						<td style="text-align:center">
28
						<td style="text-align:center">
27
							<?php if(!empty($pvalue['Retailer']['tinnumber'])):?>
29
							<?php //if(!empty($pvalue['Retailer']['tinnumber'])):?>
28
								<a href="/admin/retailers/retailerverify/<?php echo $pvalue['Retailer']['id']."/".$pvalue['Retailer']['tinnumber'];?>"><button type="button" class="btn btn-success btn-xs">Get Tinxsys Info</button></a>
30
								<a href="/admin/retailers/retailerverify/<?php echo $pvalue['Retailer']['id']."/".$pvalue['Retailer']['tinnumber'];?>"><button type="button" class="btn btn-success btn-xs">Get Store Info</button></a>
29
							<?php else:?>
31
							<?php //else:?>
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>
32
							<!--  	<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>
33
								<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>-->
32
							<?php endif;?>
34
							<?php //endif;?>
33
						</td>
35
						</td>
34
					</tr>
36
					</tr>
35
						
37
						
36
					<?php endforeach;?>
38
					<?php endforeach;?>
37
				
39