Subversion Repositories SmartDukaan

Rev

Rev 18910 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
18899 naman 1
<style>
2
	td:first-child { background-color: #F9FCF7; border:1px solid white;}
3
	td{
4
	padding:2px;
5
    border:1px solid #e6e6e6;
6
}
7
</style>
8
<?php if(isset($tinres['isError']) && $tinres['isError']== false):?>
9
	<div class='row card'>
10
		<div class='col-xs-12' style="padding:0px;">
11
 
12
				<table cellpadding="1" cellspacing="1">
13
					<tr width="100%"> 
14
					      <td width="100%" colspan="2" style="border:1px solid #58d936;">
15
					      	<div align="center">
16
					      		<strong>Retailer details by TIN : <?php echo $tin_num; ?></strong>
17
					      	</div>
18
					      </td>
19
	    			</tr>
20
 
21
					<?php if(isset($tinres['counter_name']) && !empty($tinres['counter_name'])):?>
22
						<tr>
23
							<td><strong>Counter Name</strong></td><td><?php echo $tinres['counter_name'];?></td>
24
						</tr>
25
					<?php endif;?>
26
					<?php if(isset($tinres['counter_address']) && !empty($tinres['counter_address'])):?>
27
						<tr>
28
							<td><strong>Counter Address</strong></td><td><?php echo $tinres['counter_address'];?></td>
29
						</tr>
30
					<?php endif;?>
31
					<?php if(isset($tinres['state']) && !empty($tinres['state'])):?>
32
						<tr>
33
							<td><strong>State</strong></td><td><?php echo $tinres['state'];?></td>
34
						</tr>
35
					<?php endif;?>
36
					<?php if(isset($tinres['pan']) && !empty($tinres['pan'])):?>
37
						<tr>
38
							<td><strong>PAN</strong></td><td><?php echo $tinres['pan'];?></td>
39
						</tr>
40
					<?php endif;?>
41
					<?php if(isset($tinres['registered_on']) && !empty($tinres['registered_on'])):?>
42
						<tr>
43
							<td><strong>Date of Registration</strong></td><td><?php echo $tinres['registered_on'];?></td>
44
						</tr>
45
					<?php endif;?>
46
 
47
				</table>
48
				<br>
49
				<div class="row">
50
 
51
					<?php if(isset($tinres['state']) && !empty($tinres['state'])):?>
52
						<div style="border:1px solid #58d936; padding:2px;margin-bottom:5px;">
53
							<?php if(trim($tinres['state']) == "Delhi"):?>	
54
								You will get tax invoice for orders shipped to counter address mentioned above.
55
							<?php else:?>
56
								Tax invoice is only available in delhi. We will get back to you when tax invoice is available in <?php echo $tinres['state'];?>.
57
							<?php endif;?>
58
						</div>
59
					<?php endif;?>
60
 
61
					<div class= "col-xs-12 text-center">
62
						<!--  <button type="button" class="btn btn-sm" style="background-color:#58d936;color:white;float:right;">Not OK</button>-->	
63
						<a href="<?php echo $base_url;?>tins/confirm">
64
							<button type="button" class="btn btn-sm" style="background-color:#58d936;color:white;">
65
							<?php if(isset($tinres['state']) && !empty($tinres['state']) && trim($tinres['state']) == "Delhi"):?>	
66
								Confirm to get tax invoice
67
							<?php else:?>
68
								Confirm your tax details
69
							<?php endif;?>
70
							</button>	
71
						</a>
72
					</div>
73
 
74
 
75
				</div>
76
 
77
				<br>
78
		</div>
79
 
80
	</div>
81
 
82
	<div class="row card" style="padding:0px;">
83
			<div class="col-xs-12" style="padding: 5px;">
84
				In case your tax details are incorrect send your tin rc copy to <b>help@profitmandi.com</b> from your registered email.<br>
85
			</div>
86
	</div>
87
 
88
	<?php else: ?>
89
				<br>
90
				<div class = "card" style="text-align:center;padding-bottom:5px;"><?php echo $tinres['errorMsg'];?></div>
91
				<br><br>
92
	<?php endif; ?>