forked from Mapan/odoo17e
11 lines
368 B
Python
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)
|