?
Current Path : /home1/savoy/www/savoyglobal.net/eldertree/application/views/master/ |
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/master/term_academic_details.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); ?> <script> function particular_checking(obj) { var selectValue=obj.value; var index = $(obj).parents('tr').index(); var $table = $(obj).parents('table'); $table.find('tbody tr').each(function(i,o){ if(index > i) { var curretValue = $(o).find('td').first().find('select').first().val(); if(curretValue == selectValue) { alert('valeu already selected'); $(obj).val(''); } } }); } </script> <style> #month_payment_list select{ width: 100px; } </style> <?php $fee_particular = $this->mastermodel->search_fee_particular(); $no_of_days = $this->mastermodel->search_no_sessions(); ?> <h3 class="form-section">Fee Details</h3> <table class="table table-striped table-hover table-bordered" id="student_tb"> <thead> <tr> <th>Fee particular</th> <th>Term Fee Amount</th> <th>Monthly Fee Amount</th> <th>Sibling Discount(in %)</th> <th>No Of Days</th> <th><input type="button" id="button2" value="Add More" class="addRow" title="Add Row" style="width:75px;"/></th> </tr> </thead> <tbody> <?php $i=1; ?> <tr> <td> <select id="fee_particular_id" name="fee_particular_id<?=$i?>" class="chosen required" onchange="particular_checking(this)"> <option value="">Select</option> <?php foreach ($fee_particular['results']->result_array() as $list) { echo '<option value="' . $list['fee_particular_id'] . '">' . $list['fee_particular_name'] . '</option>'; } ?> </select> </td> <td> <input type="text" name="fee_term_amount<?=$i?>" id="fee_term_amount" class="number small_textbox" /> </td> <td> <input type="text" name="fee_month_amount<?=$i?>" id="fee_month_amount" class="number small_textbox" /> </td> <td> <input type="text" name="sibling_discount<?=$i?>" id="sibling_discount" class="number small_textbox" /> </td> <td> <select id="fee_term_no_of_days" name="fee_term_no_of_days<?=$i?>" class="chosen"> <option value="">Select</option> <?php foreach ($no_of_days['results']->result_array() as $list) { echo '<option value="' . $list['no_sessions'] . '">' . $list['no_sessions'] . '</option>'; } ?> </select> </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> <?php $i++; ?> </tr> </tbody> </table> <div class="row-fluid"> <div class="span6 "> <div class="control-group"> <label class="control-label">Due Dates (for Term):</label> <div class="controls"> <input type="text" class="required calfocus span12" name="fee_term_due_date" id="fee_term_due_date"/> </div> </div> </div> <div class="span6 "> <div class="control-group"> <label class="control-label">Due Dates (for monthly):</label> <div class="controls"> <div id="month_payment_list"> <?php $start = $term_academic_details->term_start_date; $end = $term_academic_details->term_end_date; $dt = $term_academic_details->term_start_date; $options = " <select> <option></option> </select> "; while (strtotime($dt) <= strtotime($end)) { $month = date('m', strtotime($dt)); $year = date('Y', strtotime($dt)) ?> <label style="float:left;width:80px;"><?= date('M Y', strtotime($dt)) ?></label> <select name="month_date[]" class="required chosen" style="width: 75px;clear: right;float: left;margin-bottom:10px;"> <?php for ($i = 1; $i <= $num = cal_days_in_month(CAL_GREGORIAN, $month, $year); $i++) { $day = str_pad($i, 2, 0, STR_PAD_LEFT) ?> <option value="<?= $year . '-' . $month . '-' . $day ?>"><?= $day ?></option> <?php } ?> </select> <div class="clear"></div> <?php $dt = date('Y-m-01', strtotime("+1 months", strtotime($dt))); } //echo $end; //echo date('Y-m', strtotime("+1 months", strtotime("09-12-1989"))) ?> </div> </div> </div> </div> </div> <div class="form-actions"> <input type="hidden" name="tab_name" value="fee_term"/> <input type="hidden" name="resfunction" value="search_fee_term"/> <button type="submit" onclick="addformdata('validateform')" class="btn blue"><i class="icon-ok"></i> Save</button> <button type="button" onclick="viewdata('master','viewinmastersearch','search_fee_term','view_fee_term','<?= $_SESSION['pagenum']; ?>')" class="btn">Cancel</button> </div> <script> $(document).ready(function() { FormSamples.init(); $('select').chosen(); $('.calfocus').datepick({dateFormat: 'dd-mm-yyyy'}); }); </script>