mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
9 lines
245 B
Python
9 lines
245 B
Python
from odoo import api, fields, models
|
|
|
|
|
|
class StockWarehouse(models.Model):
|
|
_inherit = 'stock.warehouse'
|
|
|
|
fedex_account_number = fields.Char(string='FedEx Account Number')
|
|
fedex_meter_number = fields.Char(string='FedEx Meter Number')
|