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

15 lines
450 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'
eway_bill_number = fields.Char("EWay Bill", copy=False)
shiprocket_orders = fields.Char(
string="Shiprocket Order(s)",
copy=False, readonly=True,
help="Store shiprocket order(s) in a (+) separated string, used in cancelling the order."
)