工艺外协代码

This commit is contained in:
liaodanlong
2025-05-07 11:00:32 +08:00
parent 0863238819
commit efc4ae31c9
9 changed files with 50 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
# -*- coding: utf-8 -*-
# Part of SmartGo. See LICENSE file for full copyright and licensing details.
import base64
from io import BytesIO
from odoo import api, fields, models, SUPERUSER_ID, _
class StockWarehouseOrderpoint(models.Model):
_inherit = 'stock.warehouse.orderpoint'
origin = fields.Char(string='来源')
_order = 'create_date DESC'