# -*- coding: utf-8 -*- ############################################################################## # # datenpol gmbh # Copyright (C) 2013-TODAY datenpol gmbh () # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # 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 for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # ############################################################################## from odoo import fields, models, api, tools class StockProductionLot(models.Model): _inherit = 'stock.production.lot' notes = fields.Text() weight = fields.Float(string='Gewicht') intrastat_id = fields.Many2one(comodel_name='report.intrastat.code', string='Intrastat Nummer (Code)') image = fields.Binary("Produktbild", attachment=True, help="Wenn vorhanden, wird dieses Bild in den Angeboten/Aufträgen angedruckt") image_medium = fields.Binary("Produktbild (resized)", attachment=True, help="Produktbild 'resized' auf 128x128") @api.model def create(self, vals): tools.image_resize_images(vals) return super(StockProductionLot, self).create(vals) @api.multi def write(self, vals): tools.image_resize_images(vals) return super(StockProductionLot, self).write(vals)