1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/delivery_shiprocket/models/shiprocket_channel.py
2024-12-10 09:04:09 +07:00

14 lines
424 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ShiprocketChannel(models.Model):
_name = 'shiprocket.channel'
_description = 'Shiprocket Channel'
_order = 'name'
name = fields.Char('Channel Name', readonly=True)
channel_code = fields.Integer('Channel Code', readonly=True)
shiprocket_email = fields.Char(string='Shiprocket Email')