?
Current Path : /home1/savoy/public_html/savoyglobal.net/cocorico/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/savoyglobal.net/cocorico/application/views/student/edit_student_fee.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); $stud = array(0); $index = 0; ?> <script> function getFeeParticularAmount(fee_details_id,payment_type,index){ $('#new_first_month_div_'+index).hide(); $('#new_pay_amount_'+index).show(); $.ajax({ type: "POST", dataType:"json", url: "<?= site_url() ?>/student/get_fee_details/"+fee_details_id+"/"+payment_type, success: function(msg) { if(payment_type=="monthly"){ $('#new_first_month_div_'+index).show(); $('#new_pay_amount_'+index).hide(); $('.new_pay_amount_'+index).val(msg); $('#new_pay_amount_'+index).val(0); // $('.calfocus').datepick({dateFormat: 'dd-mm-yyyy'}); } else{ $('#new_first_month_div_'+index).hide(); $('#new_pay_amount_'+index).show(); $('.new_pay_amount_'+index).val(0); $('#new_pay_amount_'+index).val(msg); } } }); } </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>Update <?= $class_details->first_name; ?> 's Fee Details</div> <div class="tools"> <a href="#" onclick="student_class_details('student','student_class_details','<?= $class_details->class_name_id; ?>','class_name_id','edit_student_class')" class="remove"></a> </div> </div> <div class="portlet-body form"> <!-- BEGIN FORM--> <?php $attributes = array('id' => 'validateform', 'class' => 'form-horizontal validate'); echo form_open('student/update_student_fee', $attributes); ?> <h3 class="form-section">Class Room Details</h3> <div class="row-fluid"> <div class="span6 "> <div class="control-group"> <label class="control-label">Student Name</label> <div class="controls"> <span class="text bold"> <?= $class_details->first_name." ".$class_details->last_name; ?></span> </div> </div> </div> <div class="span6 "> <div class="control-group"> <label class="control-label">Reg No </label> <div class="controls"> <span class="text bold"> <?= $class_details->reg_no; ?></span> </div> </div> </div> </div> <div class="row-fluid"> <div class="span6 "> <div class="control-group"> <label class="control-label">Term</label> <div class="controls"> <span class="text bold"> <?= $this->mastermodel->get_single_field_value('term', 'term_name', 'term_id', $term_id); ?></span> </div> </div> </div> <div class="span6 "> <div class="control-group"> <label class="control-label">Date of Allotment</label> <div class="controls"> <input class="calfocus required span12" type="text" name="class_allocation_date" value="<?= $this->mastermodel->convertdatenormalformat($class_details->class_allocation_date) ?>" id="class_allocation_date"/> </div> </div> </div> </div> <div class="portlet box blue"> <div class="portlet-title"> <div class="caption"><i class="icon-check"></i>Student Fee 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="tbl1" style="background-color: white;"> <thead id="stud_sub_head"> <tr> <th>Sl</th> <th>Fee Particulars</th> <th>Payment Period </th> <th> Amount</th> </tr> </thead> <tbody> <?php $i = 0; $term_academic_details = $this->mastermodel->get_data_dual_srow('term_academic_details', $term_id, 'term_id', $academic_year_id, 'academic_year_id'); foreach ($student_fee_details as $list) { $start = $term_academic_details->term_start_date; $end = $term_academic_details->term_end_date; $dt = $term_academic_details->term_start_date; $student_month_fee = 0; $i++; ?> <tr> <td><?= $i ?></td> <td> <?= $list['fee_particular_name'] ?> <input type="hidden" class="calfocus" value="<?= $list['fee_particular_id'] ?>" name="particular_id_<?= $i ?>" id="particular_id_<?= $i ?>"/> </td> <td> <?= ($list['payment_type'] == "monthly") ? "Monthly" : "Termwise"; ?> <input name="payment_type_<?= $i ?>" id="payment_type_<?= $i ?>" value="<?= $list['payment_type'] ?>" type="hidden"/> </td> <td> <div id="first_month_div_<?= $i ?>" style="width: 400px;float: right"> <?php if ($list['payment_type'] == "monthly") { $j = 1; ?> <label style="display: block;width: 200px;float: left;">WEF Date</label> <label style="display: block;width: 200px;float: right;text-align: right;">Amount</label> <?php if (isset($student_monthly_fee_details[$list['student_class_fee_id']])) { // if ($j == 1) { ?> <?php //} foreach ($student_monthly_fee_details[$list['student_class_fee_id']] as $month_fee) { ?> <input style="float: left;" type="text" readonly="" class="span6"value="<?= date('M-Y', strtotime($month_fee['fee_wef_date'])) ?>"/> <input type="text" class="span6" pay_amount<?= $i ?>" name="pay_amount_<?= $i . '_' . $j ?>" style="float: right; clear: right;text-align: right" value="<?= $month_fee['amount'] ?>"/> <input name="wef_date_<?= $i . '_' . $j ?>" type="hidden" value="<?= date('Y-m-01', strtotime($month_fee['fee_wef_date'])) ?>"> <div class="clear"></div> <?php $j++; } } } ?> </div> <!-- </td> <td>--> <?php if ($list['payment_type'] == "term") { ?> <input name="pay_amount_<?= $i ?>" id="pay_amount_<?= $i ?>" class="required span12" type="text" value="<?= $list['fee_amount'] ?>"/> <?php } ?> <input type="hidden" name="fee_details_id_<?= $i ?>" id="fee_details_id_<?= $i ?>" value="<?= $list['student_class_fee_id'] ?>" /> </td> </tr> <?php } ?> </tbody> </table> <input type="hidden" name="student_class_id" value="<?= $student_class_id; ?>"/> <input type="hidden" name="class_name_id" value="<?= $class_details->class_name_id; ?>"/> <input id="index" name="index" value="<?= $i ?>" type="hidden"/> <input id="student_id" name="student_id" value="<?= $class_details->student_id ?>" type="hidden"/> </div> </div> </div> </div> <?php $session = $session_id; $no_sessions = $class_details->no_of_days; $term = $term_id; $fee_deatils = $this->studentmodel->load_student_fee_details($academic_year_id, $session, $no_sessions, $term); ?> <div class="portlet box blue"> <div class="portlet-title"> <div class="caption"><i class="icon-check"></i>Add Fee Particular</div> </div> <div class="portlet-body"> <div class="row-fluid"> <div class="control-group"> <table class="table table-striped table-hover table-bordered" id="tbl1" style="background-color: white;"> <thead id="stud_sub_head"> <tr> <th>Select</th> <th>Fee Particulars</th> <th>No of Days</th> <th>Payment Period</th> <th>Amount</th> </tr> </thead> <tbody> <?php $i = 0; foreach ($fee_deatils as $list) { $i++; ?> <tr> <td><input type="checkbox" name="add_new_fee_particular[]" value="<?= $i ?>"/></td> <td> <?= $list['fee_particular_name'] ?> <input type="hidden" value="<?= $list['fee_particular_id'] ?>" name="new_particular_id_<?= $i ?>" id="new_particular_id_<?= $i ?>"/> </td> <td> <?= $list['fee_term_no_of_days'] ?> </td> <td> <select class="chosen medium1" name="new_payment_type_<?= $i ?>" id="new_payment_type_<?= $i ?>" onchange="getFeeParticularAmount(<?= $list['id'] ?>,this.value,<?= $i ?>)"> <option value="">Select</option> <option value="monthly">Monthly</option> <option value="term">TermWise</option> </select> </td> <td> <div class="clear"></div> <div id="new_first_month_div_<?= $i ?>" style="display: none;"> <?php $j = 1; $start = $term_academic_details->term_start_date; $end = $term_academic_details->term_end_date; $dt = $term_academic_details->term_start_date; while (strtotime($dt) <= strtotime($end)) { $month = date('M', strtotime($dt)); $year = date('Y', strtotime($dt)) ?> <input style="float: left;" type="text" class="span6" readonly="" value="<?= date('F -Y', strtotime($dt)) ?>"/> <input type="text"name="new_pay_amount_<?= $i . '_' . $j ?>" class="span6 new_pay_amount_<?= $i ?>" style="float: right; clear: right;text-align: right;" value="0"/> <input name="new_wef_date_<?= $i . '_' . $j ?>" type="hidden" value="<?= $year . '-' . $month . '-01' ?>"> <div class="clear"></div> <?php $dt = date('Y-m-01', strtotime("+1 months", strtotime($dt))); $j++; } ?> </div> <input type="text"style="float: right; clear: right;text-align: right" name="new_pay_amount_<?= $i ?>" id="new_pay_amount_<?= $i ?>" class="span12" /> <input type="hidden" name="new_fee_details_id_<?= $i ?>" id="new_fee_details_id_<?= $i ?>" value="<?= $list['id'] ?>" /> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> <div class="grid_12 " id="stud" > <div class="form-actions"> <button type="submit" onclick="addformdata('validateform')" class="btn blue"><i class="icon-ok"></i> Process</button> </div> <?php echo form_close(); ?> <!-- END FORM--> </div> </div> </div> </div>