2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import fields, models
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class MrpDocument(models.Model):
|
|
|
|
""" Extension of ir.attachment only used in MRP to handle archivage
|
|
|
|
and basic versioning.
|
|
|
|
"""
|
|
|
|
_name = 'mrp.document'
|
|
|
|
_description = "Production Document"
|
|
|
|
_inherits = {
|
|
|
|
'ir.attachment': 'ir_attachment_id',
|
|
|
|
}
|
|
|
|
_order = "priority desc, id desc"
|
|
|
|
|
|
|
|
ir_attachment_id = fields.Many2one('ir.attachment', string='Related attachment', required=True, ondelete='cascade')
|
|
|
|
active = fields.Boolean('Active', default=True)
|
|
|
|
priority = fields.Selection([
|
|
|
|
('0', 'Normal'),
|
|
|
|
('1', 'Low'),
|
|
|
|
('2', 'High'),
|
|
|
|
('3', 'Very High')], string="Priority", help='Gives the sequence order when displaying a list of MRP documents.')
|