1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/delivery_starshipit/models/stock_picking.py
2024-12-10 09:04:09 +07:00

11 lines
368 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class StockPicking(models.Model):
_inherit = 'stock.picking'
starshipit_parcel_reference = fields.Char("Starshipit Parcel Reference", copy=False)
starshipit_return_parcel_reference = fields.Char("Starshipit Return Parcel Reference", copy=False)