blob: 0bf1f08d60265729c8cf26ad7b53df6f9bec7b23 (
plain)
1
2
3
4
5
6
7
8
9
|
from odoo import fields, models, api, _
class DeliveryCarrier(models.Model):
_inherit = 'delivery.carrier'
pic_name = fields.Char(string='PIC Name')
pic_phone = fields.Char(string='PIC Phone')
address = fields.Char(string='Address')
|