?
Current Path : /home1/savoy/www/savoyglobal.net/eldertree/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/eldertree/application/views/accounting/add_post_dated_cheque.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> $(document).ready(function() { checkfiscalyear(); $(".addRow_payment").btnAddRow({inputBoxAutoNumber: true}, function(row) { suggestchartaccount('.payment_account'); }); suggestchartaccount('.payment_account'); suggest_bank_account('#bankacc'); }); </script> <div class="row-fluid"> <div class="tab-pane " id="tab_2"> <div class="portlet box yellow"> <div class="portlet-title"> <div class="caption"><i class="icon-reorder"></i>Add Post Dated Cheque</div> <div class="tools"> <a href="#" onclick="viewdata('accounting','viewinaccountingsearch','search_post_dated_cheque','view_post_dated_cheque','<?= $_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_post_dated_cheque/view_post_dated_cheque/1', $attributes); $payment_type = $this->mastermodel->getdatas('finance_payment_types', 'payment_type_id', 'asc'); ?> <input type="hidden" name="payment_type_id" value="2"/> <div class="portlet box yellow"> <div class="portlet-title"> <div class="caption"><i class="icon-check"></i> Post Dated Cheque Details</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>Transaction Type</th> <th>Cheque Date</th> <th>Cheque No</th> <th>Cheque Info</th> </tr> <tr> <td> <select name="transaction_id" id="transaction_id" class="chosen span12 required"> <option value="">Select</option> <option value="1">PV</option> <option value="2">RV</option> </select> </td> <td> <input class="required span12 calfocus" type="text" name="cheque_date" id="cheque_date"/> <div style="padding: 0 5px;width:127px;display: block;height: 9px;"><span style="color: red;" id="cheque_no_date"></span></div> </td> <td> <input class="span12 required number" type="text" name="cheque_no" id="cheque_no" /><br/> <div style="color: red;padding: 0 5px;width:200px;display: block;height: 25px;"><span id="cheque_no_info"></span></div> </td> <td> <textarea class=" required span12" name="cheque_info" id="cheque_info"></textarea> </td> </tr> </table> </div> </div> </div> </div> <div class="portlet box yellow" 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 yellow"> <div class="portlet-title"> <div class="caption"><i class="icon-check"></i> Deposit Items</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>Acc code</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 span12 payment_account" /> <input type="hidden" name="payment_to_id1" id="payment_to_id1" /> </td> <td><textarea name="description1" class="span12" id="description1"></textarea></td> <td><input class="span12 text_r required auto" type="text" name="amount1" id="amount1" onblur="checkamount(this.id)"/></td> <td> <img style="float: right; vertical-align: top;"src="<?= base_url() ?>assets/img/close.png" alt="Delete Row" class="delRow clickimage" title="Delete Row"/> </td> </tr> </table> </div> </div> </div> </div> <div class="form-actions"> <input type="hidden" name="resfunction" value="search_post_dated_cheque"/> <button type="submit" onclick="checkdata('payment_to', 'payment_account','No existing Account selected'); checkdatavalidity($('input#bankacc_id').val(), 'bankacc', 'No existing Bank Account selected'); addformdata('validateform')" class="btn blue"><i class="icon-ok"></i> Process Deposit</button> <button type="button" onclick="viewdata('accounting','viewinaccountingsearch','search_post_dated_cheque','view_post_dated_cheque','<?= $_SESSION['pagenum']; ?>')" class="btn">Cancel</button> </div> <?php echo form_close(); ?> <!-- END FORM--> </div> </div> </div> </div>