ok

Mini Shell

Direktori : /proc/self/root/home2/selectio/www/bharath/application/views/admin/examresult/
Upload File :
Current File : //proc/self/root/home2/selectio/www/bharath/application/views/admin/examresult/admitcard.php

<div class="content-wrapper" style="min-height: 946px;">
      <section class="content-header">
        <h1>
            <i class="fa fa-map-o"></i> <?php echo $this->lang->line('examinations'); ?> <small><?php echo $this->lang->line('student_fee1'); ?></small>  </h1>
    </section>
    <!-- Main content -->
    <section class="content">
        <div class="row">
            <div class="col-md-12">
                <div class="box box-primary">
                    <div class="box-header with-border">
                        <h3 class="box-title"><i class="fa fa-search"></i> <?php echo $this->lang->line('select_criteria'); ?></h3>
                    </div>
                    <div class="box-body">

                        <form role="form" action="<?php echo site_url('admin/examresult/admitcard') ?>" method="post" class="row">

                            <?php echo $this->customlib->getCSRF(); ?>

                            
                                <div class="col-sm-6 col-lg-4 col-md-4">
                                  <div class="form-group">
                                    <label ><?php echo $this->lang->line('exam')." ".$this->lang->line('group'); ?><small class="req"> *</small></label>
                                    <select autofocus="" id="exam_group_id" name="exam_group_id" class="form-control" >
                                        <option value=""><?php echo $this->lang->line('select'); ?></option>
                                        <?php
                                        foreach ($examgrouplist as $ex_group_key => $ex_group_value) {
                                            ?>
                                            <option value="<?php echo $ex_group_value->id ?>" <?php
                                            if (set_value('exam_group_id') == $ex_group_value->id) {
                                                echo "selected=selected";
                                            }
                                            ?>><?php echo $ex_group_value->name; ?></option>
                                                    <?php
                                                }
                                                ?>
                                    </select>
                                    <span class="text-danger"><?php echo form_error('exam_group_id'); ?></span>
                                  </div>  
                                </div>
                                <div class="col-sm-6 col-lg-4 col-md-4">
                                   <div class="form-group">  
                                    <label><?php echo $this->lang->line('exam'); ?><small class="req"> *</small></label>
                                    <select  id="exam_id" name="exam_id" class="form-control" >
                                        <option value=""><?php echo $this->lang->line('select'); ?></option>
                                    </select>
                                    <span class="text-danger"><?php echo form_error('exam_id'); ?></span>
                                  </div>  
                                </div>
                                <div class="col-sm-6 col-lg-4 col-md-4">
                                   <div class="form-group">  
                                    <label><?php echo $this->lang->line('session'); ?><small class="req"> *</small></label>
                                    <select  id="session_id" name="session_id" class="form-control" >
                                        <option value=""><?php echo $this->lang->line('select'); ?></option>
                                        <?php
                                        foreach ($sessionlist as $session) {
                                            ?>
                                            <option value="<?php echo $session['id'] ?>" <?php
                                            if (set_value('session_id') == $session['id']) {
                                                echo "selected=selected";
                                            }
                                            ?>><?php echo $session['session'] ?></option>
                                                    <?php
                                                }
                                                ?>
                                    </select>
                                    <span class="text-danger"><?php echo form_error('session_id'); ?></span>
                                  </div>  
                                </div>
                           
                                <div class="col-sm-6 col-lg-4 col-md-4">
                                   <div class="form-group">  
                                    <label><?php echo $this->lang->line('class'); ?><small class="req"> *</small></label>
                                    <select id="class_id" name="class_id" class="form-control" >
                                        <option value=""><?php echo $this->lang->line('select'); ?></option>
                                        <?php
                                        foreach ($classlist as $class) {
                                            ?>
                                            <option value="<?php echo $class['id'] ?>" <?php
                                            if (set_value('class_id') == $class['id']) {
                                                echo "selected=selected";
                                            }
                                            ?>><?php echo $class['class'] ?></option>
                                                    <?php
                                                }
                                                ?>
                                    </select>
                                    <span class="text-danger"><?php echo form_error('class_id'); ?></span>
                                  </div>  
                                </div>

                                <div class="col-sm-6 col-lg-4 col-md-4">
                                  <div class="form-group">
                                    <label for="exampleInputEmail1"><?php echo $this->lang->line('section'); ?><small class="req"> *</small></label>
                                    <select  id="section_id" name="section_id" class="form-control" >
                                        <option value=""><?php echo $this->lang->line('select'); ?></option>
                                    </select>
                                    <span class="text-danger"><?php echo form_error('section_id'); ?></span>
                                 </div>   
                                </div>
                               <div class="col-sm-6 col-lg-4 col-md-4">
                                  <div class="form-group">
                                    <label for="exampleInputEmail1"><?php echo $this->lang->line('admit')." ".$this->lang->line('card')." ".$this->lang->line('template'); ?><small class="req"> *</small></label>
                                    <select  id="admitcard" name="admitcard" class="form-control" >
                                        <option value=""><?php echo $this->lang->line('select'); ?></option>
                                          <?php
                                        foreach ($admitcardlist as $admitcard) {
                                            ?>
                                            <option value="<?php echo $admitcard->id ?>" <?php
                                            if (set_value('admitcard') == $admitcard->id) {
                                                echo "selected=selected";
                                            }
                                            ?>><?php echo $admitcard->template; ?></option>
                                                    <?php
                                                }
                                                ?>
                                    </select>
                                    <span class="text-danger"><?php echo form_error('admitcard'); ?></span>
                                 </div>   
                                </div>
                            <div class="col-sm-12">
                                <div class="form-group">
                                    <button type="submit" name="search" value="search_filter" class="btn btn-primary pull-right btn-sm checkbox-toggle"><i class="fa fa-search"></i> <?php echo $this->lang->line('search'); ?></button>
                                </div>
                            </div>
                        </form>

                    </div>
                
                <?php

                if (isset($studentList)) {
                    ?>
                    <form method="post" action="<?php echo base_url('admin/examresult/printCard') ?>" id="printCard">
<input type="hidden" name="admitcard_template" value="<?php echo $admitcard_template;?>">
                        <div  class="" >
                           <div class="box-header ptbnull"></div> 
                            <div class="box-header ptbnull">
                                <h3 class="box-title titlefix"><i class="fa fa-users"></i> <?php echo $this->lang->line('student'); ?> <?php echo $this->lang->line('list'); ?></h3>
                                <button  class="btn btn-info btn-sm printSelected pull-right" type="submit" name="generate" title="generate multiple certificate"><?php echo $this->lang->line('generate'); ?></button>
                            </div>
                            <div class="box-body">
                                <input type="hidden" name="post_exam_id" value="<?php echo $exam_id;?>">
                                <input type="hidden" name="post_exam_group_id" value="<?php echo $exam_group_id;?>">
                             <div class="tab-pane active table-responsive no-padding" id="tab_1">
                                  <div class="download_label"> <?php echo $this->lang->line('student'); ?> <?php echo $this->lang->line('list'); ?></div>
                                    <table class="table table-striped table-bordered table-hover table-student" cellspacing="0" width="100%">
                                        <thead>
                                            <tr>
                                                <th><input type="checkbox" id="select_all" /></th>
                                                <th><?php echo $this->lang->line('admission_no'); ?></th>
                                                <th><?php echo $this->lang->line('student_name'); ?></th>

                                                <th><?php echo $this->lang->line('father_name'); ?></th>
                                                <th><?php echo $this->lang->line('date_of_birth'); ?></th>
                                                <th><?php echo $this->lang->line('gender'); ?></th>
                                                <th><?php echo $this->lang->line('category'); ?></th>
                                                <th class=""><?php echo $this->lang->line('mobile_no'); ?></th>

                                            </tr>
                                        </thead>
                                        <tbody>
                                            <?php
                                            if (!empty($studentList)) {
                                                $count = 1;
                                                foreach ($studentList as $student_key => $student_value) {

                                                    ?>
                                                    <tr>
<td class="text-center"><input type="checkbox" class="checkbox center-block"  name="exam_group_class_batch_exam_student_id[]" data-student_id="<?php echo $student_value->student_id; ?>" value="<?php echo $student_value->student_id; ?>">

                                                        </td>
                                                        <td><?php echo $student_value->admission_no; ?></td>
                                                        <td>
                                                            <a href="<?php echo base_url(); ?>student/view/<?php echo $student_value->student_id; ?>"><?php echo $student_value->firstname . " " . $student_value->lastname; ?>
                                                            </a>
                                                        </td>
 
                                                        <td><?php echo $student_value->father_name;; ?></td>
                                                        <td><?php echo date($this->customlib->getSchoolDateFormat(), $this->customlib->dateyyyymmddTodateformat($student_value->dob)); ?></td>
                                                        <td><?php echo $student_value->gender; ?></td>
                                                        <td><?php echo $student_value->category; ?></td>
                                                        <td><?php echo $student_value->mobileno; ?></td>


                                                    </tr>
                                                    <?php
                                                    $count++;
                                                }
                                            }else{
                                                ?>
                                                   <tr>
                                                    <td colspan="8"><div class="alert alert-danger text-center">
                                    <?php echo $this->lang->line('no_record_found'); ?>
                                </div></td>
                                                 
                                        <tr>        <?php
                                            } ?>
                                        </tbody>
                                    </table>

                                </div>                                                                           
                            </div>                                                         
                        </div>
                    </form>
                  </div>  
                    <?php
                }
                ?>
            </div>

        </div>

    </section>
</div>

<script type="text/javascript">


    var date_format = '<?php echo $result = strtr($this->customlib->getSchoolDateFormat(), ['d' => 'dd', 'm' => 'mm', 'Y' => 'yyyy']) ?>';
    var class_id = '<?php echo set_value('class_id') ?>';
    var section_id = '<?php echo set_value('section_id') ?>';
    var session_id = '<?php echo set_value('session_id') ?>';
    var exam_group_id = '<?php echo set_value('exam_group_id') ?>';
    var exam_id = '<?php echo set_value('exam_id') ?>';
    getSectionByClass(class_id, section_id);

    // getExamgroupByClassSectionSession(class_id, section_id, session_id);
    getExamByExamgroup(exam_group_id, exam_id);
    $(document).on('change', '#exam_group_id', function (e) {
        $('#exam_id').html("");
        var exam_group_id = $(this).val();
        getExamByExamgroup(exam_group_id, 0);
    });

    $(document).on('change', '#class_id', function (e) {
        $('#section_id').html("");
        var class_id = $(this).val();
        getSectionByClass(class_id, 0);
    });

    // $(document).on('change', '#session_id', function (e) {

    //     var class_id = $('#class_id').val();
    //     var section_id = $('#section_id').val();
    //     var session_id = $(this).val();
    //     getExamgroupByClassSectionSession(class_id, section_id, session_id);
    // });

    // function getExamgroupByClassSectionSession(class_id, section_id, session_id) {
    //     if (class_id != "" && section_id != "" && session_id != "") {
    //         $('#exam_group_id').html("");

    //         var div_data = '<option value=""><?php echo $this->lang->line('select'); ?></option>';


    //         $.ajax({
    //             type: "POST",
    //             url: baseurl + "admin/examgroup/getExamGroupByClassSection",
    //             data: {'class_id': class_id, "section_id": section_id, "session_id": session_id},
    //             dataType: "JSON",
    //             beforeSend: function () {
    //                 $('#exam_group_id').addClass('dropdownloading');
    //             },
    //             success: function (data) {
    //                 $.each(data.exam_group, function (i, obj)
    //                 {
    //                     var sel = "";
    //                     if (student_id == obj.student_id) {
    //                         sel = "selected";
    //                     }
    //                     div_data += "<option value=" + obj.exam_group_id + " " + sel + ">" + obj.name + "</option>";
    //                 });
    //                 $('#exam_group_id').append(div_data);
    //             },
    //             complete: function () {
    //                 $('#exam_group_id').removeClass('dropdownloading');
    //             }
    //         });
    //     }
    // }


    function getSectionByClass(class_id, section_id) {

        if (class_id != "") {
            $('#section_id').html("");
            var base_url = '<?php echo base_url() ?>';
            var div_data = '<option value=""><?php echo $this->lang->line('select'); ?></option>';


            $.ajax({
                type: "GET",
                url: base_url + "sections/getByClass",
                data: {'class_id': class_id},
                dataType: "json",
                beforeSend: function () {
                    $('#section_id').addClass('dropdownloading');
                },
                success: function (data) {
                    $.each(data, function (i, obj)
                    {
                        var sel = "";
                        if (section_id == obj.section_id) {
                            sel = "selected";
                        }
                        div_data += "<option value=" + obj.section_id + " " + sel + ">" + obj.section + "</option>";
                    });
                    $('#section_id').append(div_data);
                },
                complete: function () {
                    $('#section_id').removeClass('dropdownloading');
                }
            });
        }
    }


    function getExamByExamgroup(exam_group_id, exam_id) {

        if (exam_group_id != "") {
            $('#exam_id').html("");
            var base_url = '<?php echo base_url() ?>';
            var div_data = '<option value=""><?php echo $this->lang->line('select'); ?></option>';


            $.ajax({
                type: "POST",
                url: base_url + "admin/examgroup/getExamByExamgroup",
                data: {'exam_group_id': exam_group_id},
                dataType: "json",
                beforeSend: function () {
                    $('#exam_id').addClass('dropdownloading');
                },
                success: function (data) {
                    $.each(data, function (i, obj)
                    {
                        var sel = "";
                        if (exam_id == obj.id) {
                            sel = "selected";
                        }
                        div_data += "<option value=" + obj.id + " " + sel + ">" + obj.exam + "</option>";
                    });
                    $('#exam_id').append(div_data);
                },
                complete: function () {
                    $('#exam_id').removeClass('dropdownloading');
                }
            });
        }
    }
</script>


<script>

    $(document).on('submit', 'form#printCard', function (e) {


        e.preventDefault();
        var form = $(this);
        var subsubmit_button = $(this).find(':submit');
        var formdata = form.serializeArray();
      
        $.ajax({
            type: "POST",
            url: form.attr('action'),
            data: formdata, // serializes the form's elements.
            dataType: "JSON", // serializes the form's elements.
            beforeSend: function () {
                subsubmit_button.button('loading');
            },
            success: function (response)
            {
      Popup(response.page);
                // $('.rrrrrr').html(response.page);

            },
            error: function (xhr) { // if error occured

                alert("Error occured.please try again");
                subsubmit_button.button('reset');
            },
            complete: function () {
                subsubmit_button.button('reset');
            }
        });


    });
$(document).on('click','#select_all', function(){
    $(this).closest('table').find('td input:checkbox').prop('checked', this.checked);
});

</script>




<script type="text/javascript">

    var base_url = '<?php echo base_url() ?>';
    function Popup(data)
    {

        var frame1 = $('<iframe />');
        frame1[0].name = "frame1";

        $("body").append(frame1);
        var frameDoc = frame1[0].contentWindow ? frame1[0].contentWindow : frame1[0].contentDocument.document ? frame1[0].contentDocument.document : frame1[0].contentDocument;
        frameDoc.document.open();
//Create a new HTML document.
        frameDoc.document.write('<html>');
        frameDoc.document.write('<head>');
        frameDoc.document.write('<title></title>');
// frameDoc.document.write('<link rel="stylesheet" href="' + base_url + 'backend/dist/css/idcard.css">');

        frameDoc.document.write('</head>');
        frameDoc.document.write('<body>');
        frameDoc.document.write(data);
        frameDoc.document.write('</body>');
        frameDoc.document.write('</html>');
        frameDoc.document.close();
        setTimeout(function () {
            window.frames["frame1"].focus();
            window.frames["frame1"].print();
            frame1.remove();
        }, 500);


        return true;
    }
</script>

Zerion Mini Shell 1.0