?
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/view_fiscal_year.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); ?> <!-- BEGIN PAGE LEVEL STYLES --> <link rel="stylesheet" href="<?= base_url(); ?>assets/plugins/data-tables/DT_bootstrap.css" /> <!-- END PAGE LEVEL STYLES --> <div class="row-fluid"> <div class="span12"> <!-- BEGIN EXAMPLE TABLE PORTLET--> <div class="portlet box blue"> <div class="portlet-title"> <div class="caption"><i class="icon-cogs"></i>fiscal Year</div> <div class="actions"> <a href="#" onclick="addformdisplay('add_fiscal_year','accounting')" class="btn green"><i class="icon-plus"></i> Add</a> </div> </div> <div class="portlet-body"> <table class="table table-striped table-hover table-bordered" id="sample_3"> <thead> <tr> <th id="sl_th">Sl No</th> <th>Start Date</th> <th>End Date</th> <th>Current</th> <th>Closed</th> <th class="action_th">Edit</th> <th class="action_th">Delete</th> </tr> </thead> <tbody> <?php $table="finance_journal"; $field="fiscal_year_id"; $i=0; foreach($viewinfo->result() as $row) { $i++; ?> <tr> <td id="sl"> <?=$i?> </td> <td> <?=$this->mastermodel->convertdatenormalformat($row->fiscal_year_start)?> </td> <td> <?=$this->mastermodel->convertdatenormalformat($row->fiscal_year_end)?> </td> <td> <?php if($row->default==1) { ?> <input type="radio" checked="checked" name="fiscal_year"/> <?php } else { ?> <input type="radio" name="fiscal_year" onclick="set_fiscal_year_current(<?=$row->fiscal_year_id?>)"/> <?php } ?> </td> <td><?php echo $row->closed?'Yes':'No'; ?></td> <td><a class="edit" href="#" onclick="editformdata('accounting','edit_page','<?=$row->fiscal_year_id;?>','finance_fiscal_year','fiscal_year_id','edit_fiscal_year')">Edit</a></td> <td><a class="delete" href="#" onclick="deletedata('finance_fiscal_year',<?=$row->fiscal_year_id;?>,'fiscal_year_id','accounting','viewinaccountingsearch','search_fiscal_year','view_fiscal_year','<?=$table?>','<?=$field?>')">Delete</a></td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> <div id="ajax-modal" class="modal hide fade" tabindex="-1"></div> <script> jQuery(document).ready(function() { UIModals.init(); TableManaged.init(); }); function set_fiscal_year_current(fiscal_year_id) { $.ajax({ type: "POST", dataType: "json", url: "<?= site_url('master/checkexistencearray/') ?>/finance_fiscal_year/fiscal_year_id" + '/' + fiscal_year_id, success: function(msg) { $.ajax({ type: "POST", dataType: "json", url: "<?= site_url('accounting/set_fiscal_year_current/') ?>/" + fiscal_year_id, success: function() { viewdata('accounting', 'viewinaccountingsearch', 'search_fiscal_year', 'view_fiscal_year', '1'); } }); } }); } </script>