Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
19745 naman 1
<div class="container">
2
	<div class = "row">
3
		<div class="col-lg-6">
4
			<div class = "row">
5
				<div class="col-lg-12 table-responsive">
6
 
7
					<h2><?php echo __('Retailer Detail'); ?></h2>
8
 
9
					<table cellpadding="0" cellspacing="0" border="1" class="table table-striped" >
10
						<tr>							
11
							<th style="text-align:center">Mobile No.</th>
12
							<td><?php echo $result['contact1'];?></td>
13
						</tr>
14
						<tr>
15
							<th style="text-align:center">Tin</th>
19746 naman 16
							<td><?php echo $result['tinnumber'];?></td>
19745 naman 17
						</tr>
18
						<tr>
19
							<th style="text-align:center">Address</th>
20
							<td><?php echo $result['address'];?></td>
21
						</tr>
22
						<tr>
23
							<th style="text-align:center">City</th>
24
							<td><?php echo $result['city'];?></td>
25
						</tr>
26
						<tr>
27
							<th style="text-align:center">State</th>
28
							<td><?php echo $result['state'];?></td>
29
						</tr>
30
					</table>
31
 
32
				</div>
33
 
34
			</div>
35
		</div>
36
 
37
		<?php if(!empty($tinresult)):?>
38
		<div class="col-lg-6">
39
			<div class = "row">
40
				<div class="col-lg-12 table-responsive">
41
 
42
					<h2><?php echo __('Tin Detail'); ?></h2>
43
 
44
					<table cellpadding="0" cellspacing="0" border="1" class="table table-striped" >
45
						<tr>							
46
							<th style="text-align:center">Counter Name</th>
47
							<td><?php echo $tinresult['counter_name'];?></td>
48
						</tr>
49
						<tr>
50
							<th style="text-align:center">Counter Address</th>
51
							<td><?php echo $tinresult['counter_address'];?></td>
52
						</tr>
53
						<tr>
54
							<th style="text-align:center">State	</th>
55
							<td><?php echo $tinresult['state'];?></td>
56
						</tr>
57
						<tr>
58
							<th style="text-align:center">PAN</th>
59
							<td><?php echo $tinresult['pan'];?></td>
60
						</tr>
61
						<tr>
62
							<th style="text-align:center">Date of Registration</th>
63
							<td><?php echo $tinresult['registered_on'];?></td>
64
						</tr>
65
					</table>
66
 
67
				</div>
68
 
69
			</div>
70
		</div>
71
		<?php endif;?>
72
 
73
	</div>
74
	<center>
75
		<a href ="<?php echo $base_url."admin/retailers/verifycancel/".$result['id'];?>/verify"><button type = "button" class = "btn btn-success">Verify</button></a>
76
		<a href ="<?php echo $base_url."admin/retailers/verifycancel/".$result['id'];?>/cancel"><button type = "button" class = "btn btn-danger">Cancel</button></a>
77
	</center>
78
</div>
79
 
80