15 lines
331 B
Python
15 lines
331 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
import logging
|
|
|
|
from odoo import models,fields
|
|
from odoo.tools import populate, groupby
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
class SaleOrder(models.Model):
|
|
_inherit = "sale.order"
|
|
|
|
step_file = fields.Binary("Step File") |