Slink/sos_inventory/models/sos_departments.py

11 lines
226 B
Python
Executable File

# -*- coding: utf-8 -*-
from odoo import models, fields, api
class sos_department(models.Model):
_name = 'sos_departments'
_description = 'Departments in Sosaley'
name = fields.Char(string="Department Name")