mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
22 lines
420 B
Python
22 lines
420 B
Python
# © 2019-2021 Hibou Corp.
|
|
|
|
from odoo import models, fields, api
|
|
|
|
|
|
class DeliveryCarrier(models.Model):
|
|
""" Adds Opencart specific fields to ``delivery.carrier``
|
|
|
|
``opencart_code``
|
|
|
|
Code of the carrier delivery method in Opencart.
|
|
Example: ``USPS``
|
|
|
|
|
|
"""
|
|
_inherit = "delivery.carrier"
|
|
|
|
opencart_code = fields.Char(
|
|
string='Opencart Method Code',
|
|
required=False,
|
|
)
|