?
Current Path : /home1/savoy/public_html/savoyglobal.net/cocorico/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/savoyglobal.net/cocorico/application/views/accounting/add_auto_journal.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); $this->load->view('accounting/accountingfunctions'); ?> <script src="<?= base_url() ?>assets/scripts/jquery.autocomplete.js"></script> <script type="text/javascript"> $(document).ready(function() { checkfiscalyear(); suggestaccount('.payment_account'); $(".delRow_payment").btnDelRow(function() { getSum(); }); $(".addRow_payment").btnAddRow({inputBoxAutoNumber: true}, function(row) { suggestaccount('.payment_account'); }, function(row) { var rowIndex = row.index() + 1; return validateRow(); } ); }); </script> <div class="row-fluid"> <div class="tab-pane " id="tab_2"> <div class="portlet box blue"> <div class="portlet-title"> <div class="caption"><i class="icon-reorder"></i>Creating Auto Journal</div> <div class="tools"> <a href="#" onclick="viewdata('accounting', 'viewinaccountingsearch', 'search_auto_journal', 'view_fixed_journal', '<?= $_SESSION['pagenum']; ?>')" class="remove"></a> </div> </div> <div class="portlet-body form"> <!-- BEGIN FORM--> <?php $attributes = array('id' => 'validateform', 'class' => 'form-horizontal validate'); echo form_open('accounting/addinaccounting/insert_auto_journal/view_fixed_journal/1', $attributes); ?> <input type="hidden" name="payment_type_id" value="2"/> <div id="viewmsg" style="width: 100%;float: left;height: 25px;"></div> <div class="portlet box blue"> <div class="portlet-title"> <div class="caption"><i class="icon-check"></i> </div> </div> <div class="portlet-body"> <div class="row-fluid"> <div class="control-group"> <table class="table table-striped table-hover table-bordered" id="sample_3" style="background-color: white;"> <tr> <th>Title</th> <td> <textarea class="required span12" name="auto_journal_title" id="auto_journal_title" ></textarea> </td> </tr> </table> </div> </div> </div> </div> <!--<div class="portlet box blue" id="div_payment_details" style="display: none" > <div class="portlet-title"> <div class="caption"><i class="icon-check"></i>Payment details</div> </div> <div class="portlet-body" id="payment_mode"></div> </div>--> <div class="portlet box blue"> <div class="portlet-title"> <div class="caption"><i class="icon-check"></i> Deposit Items</div> </div> <div class="portlet-body"> <table class="table table-striped table-hover table-bordered" id="sample_3" style="background-color: white;"> <thead> <tr> <th width="25%">Acc code</th> <th width="20%">Debit</th> <th width="20%">Credit</th> <th width="25%">Description</th> <th width="10%"> <input type="button" id="button2" value="Add More" class="addRow_payment" title="Add Row" style="width:75px;"/> </th> </tr> </thead> <tbody> <tr class="addAccount"> <td> <input type="text" name="account1" id="account1" data-id='account_id1' value='' class="required payment_account" /> <input type="hidden" name="account_id1" id="account_id1" /> </td> <td> <input type="text" name="debit1" id="debit1" onblur="validateAmount(this)" class="auto text_r" /> </td> <td> <input type="text" name="credit1" id="credit1" onblur="validateAmount(this)" class="auto text_r"/> </td> <td> <textarea name="description1" id="description1" style="height: 60px;"></textarea> </td> <td> <img style="float: right; vertical-align: top;"src="<?= base_url() ?>assets/img/close.png" alt="Delete Row" class="delRow_payment clickimage" title="Delete Row"/> </td> </tr> </tbody> </table> </div> </div> <table class="table table-striped table-hover table-bordered"> <tr> <th width="25%" style="text-align: right">Total</th> <th width="20%"> <input type="text" id="sumdebit" class="newcls text_r" readonly="readonly" value="0" name="sumdebit"/> </th> <th width="20%"> <input type="text" id="sumcredit" class="newcls text_r" readonly="readonly" value="0" name="sumcredit"/> </th> <th width="35%" colspan="2"></th> </tr> </table> <div class="form-actions"> <input type="hidden" name="resfunction" value="search_auto_journal"/> <button type="submit" onclick="return insertpayment()" class="btn blue"><i class="icon-ok"></i> Process Deposit</button> <button type="button" onclick="viewdata('accounting', 'viewinaccountingsearch', 'search_auto_journal', 'view_fixed_journal', '<?= $_SESSION['pagenum']; ?>')" class="btn">Cancel</button> </div> <?php echo form_close(); ?> <!-- END FORM--> </div> </div> </div> </div>