You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
422 B
12 lines
422 B
from odoo import models, api, fields
|
|
|
|
|
|
class GatePass(models.Model):
|
|
_inherit = 'stock.picking'
|
|
|
|
enable_order_line = fields.Boolean(string='Include Product Details', default=True)
|
|
vehicle_no = fields.Char(string='Vehicle Number')
|
|
vehicle_driver_name = fields.Char(string='Driver Name')
|
|
driver_contact_number = fields.Char(string='Contact No')
|
|
corresponding_company = fields.Char(string='Company')
|
|
|
|
|