mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
21 lines
703 B
Python
21 lines
703 B
Python
from odoo import fields, models
|
|
|
|
|
|
class DeliveryCarrier(models.Model):
|
|
_inherit = 'delivery.carrier'
|
|
|
|
signifyd_fulfillment_method = fields.Selection(
|
|
[
|
|
("DELIVERY", "Delivery"),
|
|
("COUNTER_PICKUP", "Counter Pickup"),
|
|
("CURBSIDE_PICKUP", "Curbside Pickup"),
|
|
("LOCKER_PICKUP", "Locker Pickup"),
|
|
("STANDARD_SHIPPING", "Standard Shipping"),
|
|
("EXPEDITED_SHIPPING", "Expedited Shipping"),
|
|
("GAS_PICKUP", "Gas Pickup"),
|
|
("SCHEDULED_DELIVERY", "Scheduled Delivery")
|
|
],
|
|
string='Signifyd integration Fullfillment Method',
|
|
default='STANDARD_SHIPPING'
|
|
)
|
|
# TODO add to view |