You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
4.0 KiB
92 lines
4.0 KiB
# -*- coding: utf-8 -*-
|
|
###############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Gayathri V(odoo@cybrosys.com)
|
|
#
|
|
# You can modify it under the terms of the GNU AFFERO
|
|
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
# (AGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
###############################################################################
|
|
import base64
|
|
from odoo import http
|
|
from odoo.http import request
|
|
|
|
|
|
class OnlineAdmission(http.Controller):
|
|
"""Controller for taking online admission"""
|
|
|
|
@http.route('/university', type='http', auth='public', website=True)
|
|
def university_contact_us(self):
|
|
"""To redirect to contact page."""
|
|
return request.render('education_university_management.university')
|
|
|
|
@http.route('/applyonline', type='http', auth='public', website=True)
|
|
def online_admission(self):
|
|
"""To pass certain default field values
|
|
to the website registration form."""
|
|
vals = {
|
|
'department': request.env['university.department'].sudo().search(
|
|
[('semester_ids', '!=', False)]),
|
|
'course': request.env['university.course'].sudo().search([]),
|
|
'semester': request.env['university.semester'].sudo().search([]),
|
|
'year': request.env['university.academic.year'].sudo().search([]),
|
|
'doc_type': request.env['university.document.type'].sudo().search([
|
|
])
|
|
}
|
|
return request.render(
|
|
'education_university_management.online_admission',
|
|
vals)
|
|
|
|
@http.route('/admission/submit', type='http', auth='public',
|
|
website=True)
|
|
def register_admission(self, **post):
|
|
""" This will create a new student application with the values."""
|
|
if post:
|
|
guardian = request.env['res.partner'].sudo().create({
|
|
'name': post.get('father'),
|
|
'is_parent': True
|
|
})
|
|
application = request.env['university.application'].sudo().create({
|
|
'name': post.get('first_name'),
|
|
'last_name': post.get('last_name'),
|
|
'mother_name': post.get('mother'),
|
|
'father_name': post.get('father'),
|
|
'mobile': post.get('phone'),
|
|
'email': post.get('email'),
|
|
'date_of_birth': post.get('date'),
|
|
'academic_year_id': post.get('academic_year'),
|
|
'mother_tongue': post.get('tongue'),
|
|
'course_id': post.get('course'),
|
|
'department_id': post.get('department'),
|
|
'semester_id': post.get('semester'),
|
|
'street': post.get('communication_address'),
|
|
'per_street': post.get('communication_address'),
|
|
'guardian_id': guardian.id,
|
|
'image': base64.b64encode((post.get('image')).read())
|
|
})
|
|
doc_attachment = request.env['ir.attachment'].sudo().create({
|
|
'name': post.get('att').filename,
|
|
'res_name': 'Document',
|
|
'type': 'binary',
|
|
'datas': base64.encodebytes((post.get('att')).read()),
|
|
})
|
|
request.env['university.document'].sudo().create({
|
|
'document_type_id': post.get('doc_type'),
|
|
'attachment_ids': doc_attachment,
|
|
'application_ref_id': application.id
|
|
})
|
|
return request.render(
|
|
"education_university_management.submit_admission",
|
|
{})
|
|
|