from odoo import fields, models class McStudent(models.Model): _inherit = "mc.student" application_no = fields.Char( string="Application No.", copy=False, readonly=True, help="The application number from the admission pipeline, preserved on " "the student record so nothing about the original application is lost.", )