?
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/add_cost_center.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() { checkfiscalyear(); $(".addRow_payment").btnAddRow({inputBoxAutoNumber: true}, function(row) { suggestchartaccount('.payment_account'); }); suggestchartaccount('.payment_account'); suggest_bank_account('#bankacc'); }); </script> <div class="icons_main"> <div class="icons"> <img src="<?= base_url() ?>assets/images/back.png" title="Back" class="clickimage" onclick="viewdata('accounting', 'viewinaccountingsearch', 'search_cost_center', 'view_cost_center', '<?= $_SESSION['pagenum']; ?>')" alt="Back" align = "center" width="32" height="32" /> </div> <div class="icons_caption"> <h4>Creating Cost Center</h4> </div> </div> <div id="viewmsg" style="width: 100%;float: left;height: 25px;"></div> <?php $attributes = array('id' => 'validateform', 'class' => 'validate'); echo form_open('accounting/addinaccounting/insert_cost_center/view_cost_center/1', $attributes); $bankacc = $this->mastermodel->getdatas('finance_bank_account', 'bank_account_id', 'asc', 'bank_account_id'); $payment_type = $this->mastermodel->getdatas('finance_payment_types', 'payment_type_id', 'asc'); $accounts = $this->mastermodel->getdatas('finance_chart_master', 'chart_type_id', '', 'chart_master_id'); ?> <input type="hidden" name="transaction_id" value="1"/> <div class="grid_12"> <div class="box"> <div class="content no-padding"> <div class="header main"> Account Payment Entry</div> <table class="table"> <tr> <th>Transaction No: </th> <th>From:</th> <th>Date:</th> <th>Payment Method</th> </tr> <tr> <td><input readonly="readonly" type="text" value="--Auto Generated--"/></td> <td> <input type="text" name="bankacc" id="bankacc" value='' class="required" style="width: 265px"/> <input type="hidden" name="bankacc_id" id="bankacc_id" /> </td> <td> <input class="w_90 required" type="dateonly" name="journal_date" id="journal_date" value="<?=date('d-m-Y')?>"/> </td> <td> <select name="payment_type_id" id="payment_type_id" class="required chzn-done" onchange="select_payment_mode(this.value, 'payment_mode','PV')"> <?php foreach ($payment_type as $value) { echo '<option value="' . $value['payment_type_id'] . '">' . $value["payment_type"] . '</option>'; } ?> </select> </td> </tr> </table> </div> </div> </div> <?php ?> <div class="grid_12"> <div class="box" id='payment_mode'> </div> </div> <div class="grid_12"> <div class="box"> <div class="content no-padding"> <div class="header main">Payment Items</div> <table class="table"> <tr> <th>Acc code</th> <th>Expense Type</th> <th>Description</th> <th>Amount</th> <th><input type="button" id="button2" value="Add More" class="addRow_payment" title="Add Row" style="width:75px;"/></th> </tr> <tr > <td> <input type="text" name="payment_to1" id="payment_to1" data-id='payment_to_id1' value='' class="required payment_account" /> <input type="hidden" name="payment_to_id1" id="payment_to_id1" /> </td> <td> <select name="expense_type1" id="expense_type1" class="required chzn-done"> <option value="">Select</option> <?php $expense = $this->mastermodel->getdatas('expense_type'); foreach($expense as $list) { ?> <option value="<?=$list['expense_type_id'];?>"><?=$list['expense_type_name'];?></option> <?php } ?> </select> </td> <td><textarea name="description1" id="description1"></textarea></td> <td><input class="w_90 number required text_r auto" type="text" name="amount1" id="amount1" onblur="checkamount(this.id)" /></td> <td> <img style="float: right; vertical-align: top;"src="<?= base_url() ?>assets/images/icons/close.png" alt="Delete Row" class="delRow clickimage" title="Delete Row"/> </td> </tr> </table> </div> </div> </div> <div class="grid_12"> <div class="box"> <div class="actions"> <div class="actions-left"> <input type="reset"> </div> <div class="actions-right"> <button type="submit" id="button1" class="clickimage" onclick="checkdata('payment_to', 'payment_account','No existing Account selected') checkdatavalidity($('input#bankacc_id').val(), 'bankacc', 'No existing Bank Account selected') addformdata('validateform')">Process Deposit </button> </div> </div> </div> </div> <div style="height: 300px;"> </div> <?php echo form_close(); ?>