sparqapi/api/application/views/report_templates/JSONTOREPORT.php
2018-12-28 13:22:29 +05:30

201 lines
5.2 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>
<?php
$name_of_the_business_entity = "Default";
if($profession_name_other != "") {$name_of_the_business_entity = $profession_name_other;}else { $name_of_the_business_entity = $profession_name; }
?>
<li>Name of the Business Entity : <data> <?php echo $name_of_the_business_entity; ?><data></li>
<li>Business Entity Type : <data><?php echo $business_entity_type_id?></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>".$name_of_the_business_entity."</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_id']."</td>
<td>".$persons_with_relationship['other_family_relationship_id']."</td>
<td>".$persons_with_relationship['started_business']."</td>
<td>".'XXX'."</td>
<td>".'XXX'."</td>
<td>".'NA'."</td>
<td>".'NA'."</td>
<td>".'XXX'."</td> </tr>";
}
?>
</tbody>
</table>
<p></p>
<ul>
<li>Brief of Business Entity, Ownership and Areas of Operations:</li>
<p>
<?php
echo $name_of_the_business_entity. ", is a ” ".$business_entity_type_id." “ concern, formed in ”".$business_date_object." .</br>" ;
switch($business_entity_type_id)
{
case 1:// Private Limited Company
foreach($partners as $partners_key => $partner)
{
echo $partner['partner_name']. " is (relation to company) of ".$name_of_the_business_entity." having ". $partner['shareholding']."% shareholding";
}
break;
case 2:// Public Ltd Company
break;
case 3:// Sole proprietorship
break;
case 4:// HUF (Hindu Undivided Family)
break;
case 5:// Partnership
break;
case 6:// Cooperative
break;
case 7:// Limited Liability Partnership(LLP)
break;
case 8:// OPC (One Person Company)
break;
case 9:// Society
break;
case 10:// Trust
break;
case 11:// Others (Please Specify)
break;
default: echo "Nothing Defined";
}
?>
</p>
</ul>
</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>