# -*- coding: utf-8 -*- ################################################################################ # # Cybrosys Technologies Pvt. Ltd. # # Copyright (C) 2024-TODAY Cybrosys Technologies(). # Author: Cybrosys Techno Solutions(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 . # ################################################################################ from odoo import fields, models class MrpProduction(models.Model): """Inherited module 'mrp.production' and added required fields""" _inherit = 'mrp.production' source = fields.Char(string='Source of Order', help='Sale Order from which this Manufacturing ' 'Order created.') sale_line_id = fields.Many2one('sale.order.line', string='Sale Line', help="Corresponding sale order line id") qty_to_produce = fields.Float(string='Quantity to Produce', help='The number of products to be produced.')