19 lines
453 B
Python
Executable File
19 lines
453 B
Python
Executable File
# -*- coding: utf-8 -*-
|
|
|
|
import uuid
|
|
import logging
|
|
|
|
from odoo import api,fields, models
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
|
|
class Resusers(models.Model):
|
|
_name = "res.users"
|
|
_inherit = "res.users"
|
|
|
|
# company_type = fields.Selection(selection_add=[('dss_client','Werbekunde'),('dss_partner','Partnerunternehmen')])
|
|
dss_projects = fields.Many2many('dss.projects',string='DigitalSignage Projekte')
|
|
# dss_uuid = fields.Char('uuid')
|
|
|