?
Current Path : /home1/savoy/public_html/savoyglobal.net/sibs_draft/system/application/views/Report/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/savoyglobal.net/sibs_draft/system/application/views/Report/leadsagent.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <script type="text/javascript"> jQuery(document).ready(function () { $('.one').datepick({dateFormat: 'dd-mm-yyyy'}); $('.two').datepick({dateFormat: 'dd-mm-yyyy'}); suggestagent('agent'); suggestcovercode('cover_id_direct'); }); </script> <form id="customForm" name="customForm"> <fieldset> <div class="leftalign"> <li> <label>Agent Name:</label> <input type="text" id="agent" size="35"> <input type="hidden" name="agent_id" id="agent_id"> <span id="staffnameInfo" class="red_bold"></span> </li> <li id="stfinfodet"></li> <li> <?php echo '<label for="Segment">Insurance Classification</label>'; echo "<select name='segment_id' id='segment_id' onchange=\"showcover()\">"; echo "<option value='0'>Select Insurance Classification</option>"; if (count($segment)) { foreach ($segment as $key => $list) { echo "<option value='". $list['id'] . "'>" . $list['segment'] . "</option>"; } echo "</select>"; } ?> </li> <li id="coverlist"> <label for="country">Type Of Cover</label> <?php echo "<select name='cover_id' id='cover_id' >"; echo "<option value='0'>Select Type Of Cover</option></select>"; ?> </li> <li >OR</li> <li> <label>Cover Code</label><input type="text" name="cover_id" id="cover_id_direct" onchange="makefalsevalue()" /> <input type="hidden" id="cover_st" value="false" /> <img src="<?=base_url()?>/assets/images/use.png" class="clickimage" onclick="findcovercode($('input#cover_id_direct').val())" alt="" width="20" height="20" /> </li> <li id="coverdisp"></li> </div> <div class="rightalign"> <ul> <?php echo "<li> <label>Branch</label><select name='branchid' id='branchid'><option value=''>Select</option>"; $stat=$this->mastermodel->getdatas('ourbranch'); foreach($stat as $sta) { echo "<option value='". $sta['id'] . "'>" . $sta['branchname'] . "</option>"; } echo "</select></li>"; ?> <li><label>Start Date</label><label><input class="one" id="fromdate" name="fromdate" readonly="true" type="text" style="background-image: url(../../../../assets/images/datefocus.gif);"></label></li> <li><label>End Date</label><label><input class="two" id="todate" name="todate" readonly="true" type="text" style="background-image: url(../../../../assets/images/datefocus.gif);"></label></li> </ul> </div> <div class="centeralign"><ul> <li><label><input type="button" value="Generate Report" onclick="generateleadsagentwise();"></label></li> </ul> </div> </fieldset> </form>