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
|
|
|
|
|
|
|
from datetime import datetime
|
|
|
|
from dateutil.relativedelta import relativedelta
|
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import api, fields, models
|
|
|
|
from flectra.tools import html2plaintext
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class MrpProductionMessage(models.Model):
|
|
|
|
_name = "mrp.message"
|
|
|
|
_description = "Production Message"
|
|
|
|
|
|
|
|
@api.model
|
|
|
|
def _default_valid_until(self):
|
|
|
|
return datetime.today() + relativedelta(days=7)
|
|
|
|
|
|
|
|
name = fields.Text(compute='_get_note_first_line', store=True)
|
|
|
|
message = fields.Html(required=True)
|
|
|
|
product_tmpl_id = fields.Many2one('product.template', 'Product Template')
|
|
|
|
product_id = fields.Many2one('product.product', string="Product")
|
|
|
|
bom_id = fields.Many2one('mrp.bom', 'Bill of Material', domain="['|', ('product_id', '=', product_id), ('product_tmpl_id.product_variant_ids','=', product_id)]")
|
|
|
|
workcenter_id = fields.Many2one('mrp.workcenter', string='Work Center')
|
|
|
|
valid_until = fields.Date('Validity Date', default=_default_valid_until, required=True)
|
|
|
|
routing_id = fields.Many2one('mrp.routing', string='Routing')
|
|
|
|
|
|
|
|
@api.depends('message')
|
|
|
|
def _get_note_first_line(self):
|
|
|
|
for message in self:
|
|
|
|
message.name = (message.message and html2plaintext(message.message) or "").strip().replace('*', '').split("\n")[0]
|
|
|
|
|
|
|
|
@api.multi
|
|
|
|
def save(self):
|
|
|
|
""" Used in a wizard-like form view, manual save button when in edit mode """
|
|
|
|
return True
|