?
Current Path : /home1/savoy/public_html/oscarerp.com/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/public_html/oscarerp.com/application/views/accounting/view_bank_reconciliation.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); ?> <script src="<?= base_url() ?>assets/js/jquery.autocomplete.js"></script> <script> $(document).ready(function() { suggest_bank_account('#account'); }); function check_rec_date() { if($('#rec_from').val()==""|| $('#rec_to').val()=="") { alert("Enter From & To Date"); return false; } else return true; } </script> <div id="viewmsg2" style="width: 100%;float: left;height: 25px;"></div> <div class="icons_main"> <div class="icons"> </div> <div class="icons_caption"> <h4>Bank Reconciliation Statement</h4> </div> </div> <?php $accounts = $this->mastermodel->getdatas('finance_chart_master', 'chart_type_id', '', 'chart_master_id'); //$reconcile = $this->mastermodel->getdistinct_rec_date(); $attributes = array('id' => 'validateform', 'class' => 'validate'); echo form_open('accounting/generate_report/get_bank_reconciliation/xls_bank_reconciliation_statement',$attributes); ?> <div class="clean"></div> <div class="grid_12"> <div class="box"> <div class="header main no-icon">Bank Reconciliation Statement <span></span> </div> <div class="content no-padding"> <table class="table"> <tr> <th width="30%">Account :</th> <th>From :</th> <th>To :</th> </tr> <tr> <td> <input type="text" name="account" id="account" style="width: 300px;" onchange="empty_text('account_id')"/> <input type="hidden" name="account_id" id="account_id" /> </td> <td> <input type="text" name="rec_from" id="rec_from" class="medium required calfocus"/> </td> <td> <input type="text" name="rec_to" id="rec_to" class="medium required calfocus"/> </td> </tr> </table> </div> <div class="actions"> <div class="actions-left"> <input type="reset"> </div> <div class="actions-right"> <button style="margin-left: 130px;" type="submit" id="submit" class="clickimage" onclick="check_rec_date()" >Generate</button> </div> </div> </div> </div> <?php echo form_close(); ?> <div id="loadresult"></div> <div style="display: none"> <div id="color"></div> </div> <?php