上传修改后的主题
This commit is contained in:
16
spiffy_theme_backend/models/multi_tab.py
Normal file
16
spiffy_theme_backend/models/multi_tab.py
Normal file
@@ -0,0 +1,16 @@
|
||||
# -*- 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 MultiTab(models.Model):
|
||||
_name = 'biz.multi.tab'
|
||||
_description = "Multi Tab"
|
||||
|
||||
name = fields.Char("App Name")
|
||||
url = fields.Char("URL")
|
||||
actionId = fields.Char("Action ID")
|
||||
menuId = fields.Char("Menu ID")
|
||||
user_id = fields.Many2one('res.users')
|
||||
menu_xmlid = fields.Char("XML ID Name")
|
||||
Reference in New Issue
Block a user