Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
19699 naman 1
<div class="container">
2
	<div class="row">
3
		<div class="col-lg-12 table-responsive">
4
		<h2>Address Report</h2>
5
			<table class="table table-striped">
6
				<tr>
7
					<th>Type</th>
8
					<th>Store Name</th>
9
					<th>Address</th>
10
					<th>City</th>
11
					<th>State</th>
12
					<th>Pincode</th>
13
				</tr>
14
			<tr>
15
				<th width="15%">New Retailer Address</th>
16
				<th><?php if( isset($newaddress[0]['r']['title'])){
17
						echo($newaddress[0]['r']['title']);}
18
						else{echo('');}?>
19
				</th>
20
				<th><?php if( isset($newaddress[0]['r']['address'])){
21
						echo($newaddress[0]['r']['address']);}
22
						else{echo('');}?>
23
				</th>
24
				<th><?php if( isset($newaddress[0]['r']['city'])){
25
						echo($newaddress[0]['r']['city']);}
26
						else{echo('');}?>
27
				</th>
28
				<th><?php if( isset($newaddress[0]['r']['state'])){
29
						echo($newaddress[0]['r']['state']);}
30
						else{echo('');}?>
31
				</th>
32
				<th><?php if( isset($newaddress[0]['r']['pin'])){
33
						echo($newaddress[0]['r']['pin']);}
34
						else{echo('');}?>
35
				</th>	
36
			</tr>
37
			<tr>
38
				<th width="15%">Address</th>
39
 
40
				<th>
41
				<?php if( isset($retaileraddress[0]['r']['title'])){
42
						echo($retaileraddress[0]['r']['title']);}
43
						else{echo('');}?>
44
				</th>
45
				<th>
46
				<?php if( isset($retaileraddress[0]['r']['address'])){
47
						echo($retaileraddress[0]['r']['address']);}
48
						else{echo('');}?>
49
				</th>
50
				<th>
51
				<?php if( isset($retaileraddress[0]['r']['city'])){
52
						echo($retaileraddress[0]['r']['city']);}
53
						else{echo('');}?>
54
				</th>
55
				<th>
56
				<?php if( isset($retaileraddress[0]['r']['state'])){
57
						echo($retaileraddress[0]['r']['state']);}
58
						else{echo('');}?>
59
				</th>
60
				<th>
61
				<?php if( isset($retaileraddress[0]['r']['pin'])){
62
						echo($retaileraddress[0]['r']['pin']);}
63
						else{echo('');}?>
64
				</th>	
65
			</tr>
66
			<tr>
67
				<th width="15%">User Address (Updated)</th>
68
				<th>
69
				<?php if( isset($userupdateaddress[0]['ua']['store_name'])){
70
						echo($userupdateaddress[0]['ua']['store_name']);}
71
						else{echo('');}?>
72
				</th>
73
				<th>
74
				<?php if( isset($userupdateaddress[0]['ua']['address'])){
75
						echo($userupdateaddress[0]['ua']['address']);}
76
						else{echo('');}?>
77
				</th>
78
				<th>
79
				<?php if( isset($userupdateaddress[0]['ua']['city'])){
80
						echo($userupdateaddress[0]['ua']['city']);}
81
						else{echo('');}?>
82
				</th>
83
				<th>
84
				<?php if( isset($userupdateaddress[0]['ua']['state'])){
85
						echo($userupdateaddress[0]['ua']['state']);}
86
						else{echo('');}?>
87
				</th>	
88
				<th>
89
				<?php if( isset($userupdateaddress[0]['ua']['pincode'])){
90
						echo($userupdateaddress[0]['ua']['pincode']);}
91
						else{echo('');}?>
92
				</th>
93
			</tr>
94
			<tr>
95
				<th width="15%">My Profile Address</th>
96
				<th><?php echo('')?></th>	
97
				<th><?php echo($useraddress[0][0]['address'])?></th>	
98
				<th><?php echo($useraddress[0]['users']['city'])?></th>	
99
				<th><?php echo($useraddress[0]['users']['state'])?></th>	
100
				<th><?php echo($useraddress[0]['users']['pincode'])?></th>	
101
			</tr>
102
			</table>
103
		</div>
104
	</div>
105
</div>