11 lines
358 B
Python
11 lines
358 B
Python
# -*- 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' |