?
Current Path : /home1/savoy/www/savoyglobal.net/rms/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/rms/application/views/accounting/view_journal_voucher_unposted.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); ?> <div class="icons_main"> <div class="icons"> <img src="<?=base_url()?>assets/images/add.png" title="Add New" class="clickimage" onclick="addformdisplay('add_journal_voucher','accounting')" alt="Add New" align = "center" width="32" height="32" /> </div> <div class="icons_caption"> <h4>Un posted - Journal Voucher details</h4> </div> </div> <div class="clean"></div> <div class="grid_12"> <div class="box"> <div class="header"> </div> <div class="content"> <table class="table"> <tr> <th><input type="radio" name="receipt_voucher" class="chzn-done" value="1" onclick="viewdata('accounting','viewinaccountingsearch','search_journal_voucher_unposted','view_journal_voucher_unposted','1')" checked="true"/></th><th><label>Un posted</label></th> <th><input type="radio" name="receipt_voucher" class="chzn-done" value="0" onclick="viewdata('accounting','viewinaccountingsearch','search_journal_voucher_posted','view_journal_voucher_posted','1')" /></th><th><label>Posted</label></th> </tr> </table> </div> </div> </div> <div class="grid_12"> <div class="box"> <div class="header"> </div> <div class="content"> <table id="table-example" class="table"> <thead> <tr> <th id="sl">Sl No</th> <th>Transaction No</th> <th>Date</th> <th>A/C Code</th> <th>A/C Name</th> <th>Debit</th> <th>Credit</th> <th>Action</th> </tr> </thead> <tbody> <?php $table=""; $field=""; $i=0; foreach($viewinfo->result() as $row) { $i++; ?> <tr> <td id="sl"> <?=$i?> </td> <td> <?=$row->reference?> </td> <td> <?=$this->mastermodel->convertdatenormalformat($row->journal_date)?> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td id="actions_3"> <div class="elements"> <img src="<?=base_url()?>/assets/images/view-icon.png" id="editclass" title="View" width="20" height="20" alt="View Entry" align = "center" onclick="post_journal_voucher(<?=$row->journal_id?>)" style="cursor: pointer" class="clickimage1" /> </div> <div class="elements"> <img src="<?=base_url()?>assets/images/edit-icon.gif" title="Edit" width="20" height="20" alt="Edit" align = "center" class="clickimage" onclick="editformdata('accounting','edit_journal_voucher','<?=$row->journal_id;?>','finance_journal_refs','journal_id','edit_journal_voucher')" alt="" /> </div> <div class="elements"><img src="<?=base_url()?>assets/images/delete-icon.png" title="Delete" width="20" height="20" onclick="deletedata('finance_journal_refs',<?=$row->journal_id;?>,'journal_id','accounting','viewinaccountingsearch','search_journal_voucher_unposted','view_journal_voucher_unposted','','')" alt="Delete" align = "center"/></div> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div>