?
Current Path : /home1/savoy/public_html/oscarerp.com/application/views/student/ |
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/student/single_fee_payment.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/back.png" title="Back" class="clickimage" onclick="viewdata('student','viewinstudentsearch','search_fee_payment','view_fee','<?= $_SESSION['pagenum']; ?>')" alt="Back" align = "center" width="32" height="32" /> </div> <div class="icons_caption"> <h4>Allocate Fees</h4> </div> </div> <?php $attributes = array('id' => 'validateform', 'class' => 'validate'); echo form_open('student/addinstudent/allocate_fee_payment/view_fee/1', $attributes); $student = $this->mastermodel->get_data_srow('student', $viewinfo->fee_student_id, 'student_id'); ?> <div class="clean"></div> <div class="grid_6" > <div class="box"> <div class="header main no-icon"> Student Details </div> <div class="content no-padding"> <div class="section _100"> <label>Student</label> <div class="single_page"> <?= $student->first_name . ' ' . $student->last_name; ?> </div> </div> <div class="section _100" > <label>Student No</label> <div class="single_page"> <?= $student->reg_no; ?> </div> </div> <div class="section _100" > <label>Gender</label> <div id="gender" class="single_page"> <?= $student->gender; ?> </div> </div> <div class="section _100" > <label>Nationality</label> <div id="nationality" class="single_page"> <?php $nationality=$this->mastermodel->getSingleFieldValue('nationality', 'nationality_name', 'nationality_id', $student->nationality_id); echo $nationality; ?> </div> </div> <div class="section _100"> <label>Age</label> <div class="single_page"> <?php /* 'yyyy-mm-dd format' */ $age_details = $this->mastermodel->getAgeDetails($student->dob); echo $age_details['in_words']; ?> </div> </div> </div> </div> </div> <div class="grid_6" > <div class="box"> <div class="header main no-icon"> Fee Details </div> <div class="content no-padding"> <div class="section _100"> <label>Receipt No</label> <div class="single_page"> <?= $viewinfo->fee_receipt_no; ?> </div> </div> <div class="section _100"> <label>Fee Date</label> <div class="single_page"> <?= $this->mastermodel->convertdatenormalformat($viewinfo->fee_payment_date); ?> </div> </div> <div class="section _100"> <label>Payment Mode</label> <div> <select name="payment_mode" disabled id="payment_mode" class="required chzn-done" onchange="select_payment_mode(this.value, 'payment_mode_div','')"> <?php $payment_type = $this->mastermodel->getdatas('finance_payment_types', 'payment_type_id', 'asc'); foreach ($payment_type as $value) { echo '<option value="' . $value['payment_type_id'] . '"'; if ($viewinfo->payment_mode == $value['payment_type_id']) echo "selected";echo' >' . $value["payment_type"] . '</option>'; } ?> </select> </div> </div> <div class="section _100"> <label>Remarks</label> <div class="single_page"> <?= $viewinfo->fee_payment_remarks; ?> </div> </div> </div> </div> </div> <div class="grid_12"> <div class="box" id='payment_mode_div'> <?php if ($viewinfo->payment_mode == 2) { $cheque = $this->mastermodel->get_data_srow('fee_payment_cheque_info', $viewinfo->fee_payment_id, 'fee_payment_id'); ?> <div class="content no-padding"> <div class="header main"> Payment Details</div> <table class="table"> <tr> <th>Cheque Date</th> <th>Cheque No</th> <th>Bank Drawn</th> </tr> <tr> <td> <?= $this->mastermodel->convertdatenormalformat($cheque->cheque_date) ?> </td> <td> <?= $cheque->cheque_no ?> </td> <td> <?= $cheque->bank_drawn ?> </td> </tr> </table> </div> <?php } else if ($viewinfo->payment_mode == 3) { $credit_card_info = $this->mastermodel->get_data_srow('fee_payment_credit_card_info', $viewinfo->fee_payment_id, 'fee_payment_id'); ?> <div class="content no-padding"> <div class="header main"> Payment Details</div> <table class="table"> <tr> <th>Credit Card Holder Name</th> <th>Credit Card No</th> </tr> <tr> <td> <?= $credit_card_info->credit_card_holder ?> </td> <td> <?= $credit_card_info->credit_card_no ?> </td> </tr> </table> </div> <?php } else if ($viewinfo->payment_mode == 4) { $bank_transfer_info = $this->mastermodel->get_data_srow('fee_payment_bank_transfer_info', $viewinfo->fee_payment_id, 'fee_payment_id'); ?> <div class="content no-padding"> <div class="header main"> Payment Details</div> <table class="table"> <tr> <th style="width: 10%">Description</th> <td> <?= $bank_transfer_info->description ?> </td> </tr> </table> </div> <?php } ?> </div> </div> <div class="grid_12" > <div class="box"> <div class="content no-padding"> <div class="header main">Student Details</div> <?php $fee_particular = $this->mastermodel->getdatas('fee_particular'); // $particular = array(); // foreach ($fee_particular as $value) { // $particular[$list['fee_particular_id']] = $list['fee_particular_name']; // } $particular_list = $this->mastermodel->get_data('fee_payment_details', $viewinfo->fee_payment_id, 'fee_payment_id'); ?> <table class="table" id="student_tb"> <tr> <th>Slno</th> <th>Fee particulars</th> <th>Amount</th> </tr> <?php $i = 0; foreach ($particular_list as $row) { ?> <tr> <td><?= ++$i ?></td> <td style="text-transform: capitalize;"> <?php foreach ($fee_particular as $list) { if ($list['fee_particular_id'] == $row['fee_particular_id']) echo $list['fee_particular_name']; } ?> </td> <td> <?= $row['fee_term_amount'] ?> </td> </tr> <?php } ?> </table> </div> </div> </div> <?php echo form_close(); ?>