This commit is contained in:
gqh
2023-03-03 18:17:48 +08:00
parent adaecd6e09
commit 06efa1b777
14 changed files with 174 additions and 35 deletions

View File

@@ -0,0 +1 @@
from . import sale_order

View File

@@ -0,0 +1,15 @@
# -*- 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")