sparqapi/api/application/views/report_templates/JSONTOREPORT.php
2018-12-27 13:09:31 +05:30

153 lines
4.0 KiB
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
::selection { background-color: #E13300; color: white; }
::-moz-selection { background-color: #E13300; color: white; }
body {
background-color: #fff;
margin: 40px;
font: 13px/20px normal Helvetica, Arial, sans-serif;
color: #4F5155;
}
a {
color: #003399;
background-color: transparent;
font-weight: normal;
}
h1 {
color: #444;
background-color: transparent;
border-bottom: 1px solid #D0D0D0;
font-size: 19px;
font-weight: normal;
margin: 0 0 14px 0;
padding: 14px 15px 10px 15px;
}
code {
font-family: Consolas, Monaco, Courier New, Courier, monospace;
font-size: 12px;
background-color: #f9f9f9;
border: 1px solid #D0D0D0;
color: #002166;
display: block;
margin: 14px 0 14px 0;
padding: 12px 10px 12px 10px;
}
#body {
margin: 0 15px 0 15px;
}
p.footer {
text-align: right;
font-size: 11px;
border-top: 1px solid #D0D0D0;
line-height: 32px;
padding: 0 10px 0 10px;
margin: 20px 0 0 0;
}
#container {
margin: 10px;
border: 1px solid #D0D0D0;
box-shadow: 0 0 8px #D0D0D0;
}
data{
font-weight:bold;
}
table {
font-family: arial, sans-serif;
font-size:10px;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: center;
padding: 2px;
}
<! -- tr:nth-child(even) {
background-color: #dddddd;
} -->
</style>
</head>
<body>
<div id="container">
<ul>
<li>Name of the Business Entity : <data> <?php echo $profession_name?><data></li>
<li>Business Entity Type : <data><?php echo $business_entity_type?></data></li>
<li>Business Vintage : <data><?php echo $business_years .' Year(s) & '.$business_month .' Month(s)'?></data></li>
<?php
$type_of_business_activity = "";
foreach($select_business_activity_type as $key => $value)
{
$type_of_business_activity .= $value['name'].',';
}
?>
<li>Type of Business Activity : <data><?php echo substr($type_of_business_activity,0,strlen($type_of_business_activity)-1)?></data></li>
<li>Key Products : <data><?php echo $profession_name?></data></li>
<li>Brief of key persons connected with the business / profession : </li>
</ul>
<p></p>
<table style="width:100%">
<thead><tr> <th>S.NO</th> <th>Name</th> <th>Relation To</th> <th>Relationship</th> <th>Business Started By</th> <th>Loan Applicant (As per person met)</th> <th>Actively Involved in Business</th> <th> Share of Profit / Shareholding (%)</th> <th> No of years in (Name of Business Entity)</th> <th>Total Business Experience
(Years) </th> </tr></thead>
<tbody>
<?php
foreach($partners as $partners_key => $partner)
{
echo "<tr><td>".($partners_key + 1)."</td>
<td>".$partner['partner_name']."</td>
<td>".$profession_name."</td>
<td>". "XXX"."</td>
<td>"."XXX"."</td>
<td>".'XXX'."</td>
<td>".'XXX'."</td>
<td>".$partner['shareholding']."%</td>
<td>".$partner['current_business_experiance_year'].'.'.$partner['current_business_experiance_month']."</td>
<td>".$partner['total_business_experiance']."</td> </tr>";
}
foreach($persons_with_relationships as $persons_with_relationships_key => $persons_with_relationship)
{
echo "<tr><td>".(count($partners) + 1)."</td>
<td>".$persons_with_relationship['family_member_name']."</td>
<td>".$persons_with_relationship['relation_to']."</td>
<td>".$persons_with_relationship['other_family_relationship_name']."</td>
<td>".$persons_with_relationship['started_business']."</td>
<td>".'XXX'."</td>
<td>".$persons_with_relationship['currently_active_status']."</td>
<td>".'NA'."</td>
<td>".'NA'."</td>
<td>".'XXX'."</td> </tr>";
}
?>
</tbody>
</table>
</div>
<p class="footer">Page rendered in <strong>{elapsed_time}</strong> seconds. <?php echo (ENVIRONMENT === 'development') ? 'CodeIgniter Version <strong>' . CI_VERSION . '</strong>' : '' ?></p>
</div>
</body>
</html>