上传修改后的主题
This commit is contained in:
15
spiffy_theme_backend/models/favorite_apps.py
Normal file
15
spiffy_theme_backend/models/favorite_apps.py
Normal file
@@ -0,0 +1,15 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo Module Developed by Bizople Solutions Pvt. Ltd.
|
||||
# See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models, fields, api
|
||||
|
||||
class FavoriteApps(models.Model):
|
||||
_name = "favorite.apps"
|
||||
_description = "Favorite Apps"
|
||||
|
||||
name = fields.Char("Name")
|
||||
app_id = fields.Char("App Id")
|
||||
app_xmlid = fields.Char("App XML Id")
|
||||
app_actionid = fields.Char("App Action Id")
|
||||
user_id = fields.Many2one('res.users')
|
||||
Reference in New Issue
Block a user