?
Current Path : /home1/savoy/www/savoyglobal.net/eduplus1/application/views/accounting/ |
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/www/savoyglobal.net/eduplus1/application/views/accounting/profit_loss.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); ?> <html class="no-js" lang="en"> <head> <?php $this->load->view('jsfiles'); $this->load->view('header'); $this->load->view('commonfunctions'); ?> </head> <body> <div id="height-wrapper"> <?php $this->load->view('menu'); ?> <div role="main" class="container_12" id="content-wrapper"> <div id="main_content"> <?php $this->load->view('top'); ?> <div id="inner_content"> <?php $attributes = array('id' => 'validateform', 'class' => 'validate'); echo form_open('accounting/getAccountingReports/get_balance_sheet/_profit_loss', $attributes); ?> <div class="clean"></div> <div class="grid_6"> <div class="box"> <div class="header main"> <span>Profit & Loss</span> </div> <div class="content no-padding"> <div class="section _100"> <label>Start Date</label> <div> <input style="width: 150px;float: left;" value="<?= date("d-m-Y", strtotime( date( "Y-m-d", strtotime( date("Y-m-d") ) ) . "-1 month" ) ) ?>" name="start_date" id="start_date" class="required calfocus" > </div> </div> <div class="section _100"> <label>End Date</label> <div> <input style="width: 150px;float: left;" value="<?= date('d-m-Y') ?>" name="end_date" id="end_date" class="required calfocus" > </div> </div> <div class="section _100"> <label>Report In</label> <div> <select name="reportin" id="reportin" class="chzn-done"> <option value="pdf" selected="selected">PDF</option> <option value="xls">XLS</option> </select> </div> </div> <div class="grid_12"> <div class="actions"> <div class="actions-left"> <input type="reset"> <input type="hidden" name="file_name" value="Profit & Loss"/> </div> <div class="actions-right"> <button style="margin-left: 130px;" type="submit" id="submit" class="clickimage" onclick="addformdata1('validateform')" >Generate</button> </div> </div> </div> </div> </div> <?php echo form_close(); ?> <!-- <div id="loadresult"></div>--> </div> </div> <div class="push clear"></div> </div> <div class="clear"></div> <div class="push"></div> </div> <?php $this->load->view('footer'); ?> </body> </html>