forked from Techsystech/web
Added tile categories.
parent
2752089382
commit
481b74a0e8
|
@ -30,6 +30,7 @@
|
||||||
],
|
],
|
||||||
'demo': [
|
'demo': [
|
||||||
'demo/res_groups.yml',
|
'demo/res_groups.yml',
|
||||||
|
'demo/tile_category.yml',
|
||||||
'demo/tile_tile.yml',
|
'demo/tile_tile.yml',
|
||||||
],
|
],
|
||||||
'qweb': [
|
'qweb': [
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
##############################################################################
|
||||||
|
#
|
||||||
|
# OpenERP, Open Source Management Solution
|
||||||
|
# Copyright (C) 2015-Today GRAP
|
||||||
|
# @author Sylvain LE GAL (https://twitter.com/legalsylvain)
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU Affero General Public License as
|
||||||
|
# published by the Free Software Foundation, either version 3 of the
|
||||||
|
# License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU Affero General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Affero General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
- !record {model: tile.category, id: modules}:
|
||||||
|
name: Modules
|
||||||
|
sequence: 0
|
||||||
|
|
||||||
|
- !record {model: tile.category, id: finance}:
|
||||||
|
name: Finance
|
||||||
|
sequence: 1
|
|
@ -22,18 +22,21 @@
|
||||||
|
|
||||||
- !record {model: tile.tile, id: installed_modules}:
|
- !record {model: tile.tile, id: installed_modules}:
|
||||||
name: Installed Modules
|
name: Installed Modules
|
||||||
|
category_id: modules
|
||||||
model_id: base.model_ir_module_module
|
model_id: base.model_ir_module_module
|
||||||
domain: [['state', 'in', ['installed', 'to upgrade', 'to remove']]]
|
domain: [['state', 'in', ['installed', 'to upgrade', 'to remove']]]
|
||||||
action_id: base.open_module_tree
|
action_id: base.open_module_tree
|
||||||
|
|
||||||
- !record {model: tile.tile, id: installed_OCA_modules}:
|
- !record {model: tile.tile, id: installed_OCA_modules}:
|
||||||
name: Installed OCA Modules
|
name: Installed OCA Modules
|
||||||
|
category_id: modules
|
||||||
model_id: base.model_ir_module_module
|
model_id: base.model_ir_module_module
|
||||||
domain: [['state', 'in', ['installed', 'to upgrade', 'to remove']], ['author', 'ilike', 'Odoo Community Association (OCA)']]
|
domain: [['state', 'in', ['installed', 'to upgrade', 'to remove']], ['author', 'ilike', 'Odoo Community Association (OCA)']]
|
||||||
action_id: base.open_module_tree
|
action_id: base.open_module_tree
|
||||||
|
|
||||||
- !record {model: tile.tile, id: all_currency_with_rate}:
|
- !record {model: tile.tile, id: all_currency_with_rate}:
|
||||||
name: Currencies (Max Rate)
|
name: Currencies (Max Rate)
|
||||||
|
category_id: finance
|
||||||
model_id: base.model_res_currency
|
model_id: base.model_res_currency
|
||||||
domain: []
|
domain: []
|
||||||
secondary_function: max
|
secondary_function: max
|
||||||
|
|
|
@ -4,4 +4,4 @@
|
||||||
# © 2015-Today GRAP
|
# © 2015-Today GRAP
|
||||||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
||||||
|
|
||||||
from . import tile_tile
|
from . import tile_tile, tile_category
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# © 2018 Iván Todorovich <ivan.todorovich@gmail.com>
|
||||||
|
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
||||||
|
|
||||||
|
from openerp import fields, models
|
||||||
|
|
||||||
|
|
||||||
|
class TileCategory(models.Model):
|
||||||
|
_name = 'tile.category'
|
||||||
|
_description = 'Dashboard Tile Category'
|
||||||
|
_order = 'sequence asc'
|
||||||
|
|
||||||
|
name = fields.Char(required=True)
|
||||||
|
sequence = fields.Integer(
|
||||||
|
help="Used to order the tile categories",
|
||||||
|
default=0)
|
||||||
|
fold = fields.Boolean('Folded by default')
|
|
@ -77,6 +77,7 @@ class TileTile(models.Model):
|
||||||
# Column Section
|
# Column Section
|
||||||
name = fields.Char(required=True)
|
name = fields.Char(required=True)
|
||||||
sequence = fields.Integer(default=0, required=True)
|
sequence = fields.Integer(default=0, required=True)
|
||||||
|
category_id = fields.Many2one('tile.category', 'Category')
|
||||||
user_id = fields.Many2one('res.users', 'User')
|
user_id = fields.Many2one('res.users', 'User')
|
||||||
background_color = fields.Char(default='#0E6C7E', oldname='color')
|
background_color = fields.Char(default='#0E6C7E', oldname='color')
|
||||||
font_color = fields.Char(default='#FFFFFF')
|
font_color = fields.Char(default='#FFFFFF')
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||||
tile_user,tile_user,model_tile_tile,base.group_user,1,1,1,1
|
tile_user,tile_user,model_tile_tile,base.group_user,1,1,1,1
|
||||||
|
tile_user_category,tile_user,model_tile_category,base.group_user,1,1,1,1
|
||||||
|
|
|
|
@ -27,11 +27,14 @@
|
||||||
<h1>
|
<h1>
|
||||||
<field name="name"/>
|
<field name="name"/>
|
||||||
</h1>
|
</h1>
|
||||||
|
<group>
|
||||||
|
<field name="category_id"/>
|
||||||
|
<field name="user_id"/>
|
||||||
|
</group>
|
||||||
<group col="4">
|
<group col="4">
|
||||||
<separator string="Display" colspan="4"/>
|
<separator string="Display" colspan="4"/>
|
||||||
<field name="background_color" widget="color"/>
|
<field name="background_color" widget="color"/>
|
||||||
<field name="font_color" widget="color"/>
|
<field name="font_color" widget="color"/>
|
||||||
<field name="user_id"/>
|
|
||||||
<separator string="Technical Informations" colspan="4"/>
|
<separator string="Technical Informations" colspan="4"/>
|
||||||
<field name="model_id"/>
|
<field name="model_id"/>
|
||||||
<field name="action_id"/>
|
<field name="action_id"/>
|
||||||
|
@ -85,12 +88,13 @@
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<!-- CRM Lead Kanban View -->
|
<!-- Kanban View -->
|
||||||
<record model="ir.ui.view" id="dashboard_tile_tile_kanban_view">
|
<record model="ir.ui.view" id="dashboard_tile_tile_kanban_view">
|
||||||
<field name="model">tile.tile</field>
|
<field name="model">tile.tile</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<kanban class="o_kanban_small_column">
|
<kanban default_group_by="category_id" create="false" class="o_kanban_small_column">
|
||||||
<field name="name"/>
|
<field name="name"/>
|
||||||
|
<field name="category_id"/>
|
||||||
<field name="domain"/>
|
<field name="domain"/>
|
||||||
<field name="model_id"/>
|
<field name="model_id"/>
|
||||||
<field name="action_id"/>
|
<field name="action_id"/>
|
||||||
|
@ -142,6 +146,28 @@
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
|
<record model="ir.ui.view" id="dashboard_tile_category_form_view">
|
||||||
|
<field name="model">tile.category</field>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<form string="Stage of Notes">
|
||||||
|
<group>
|
||||||
|
<field name="name"/>
|
||||||
|
</group>
|
||||||
|
</form>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
<record model="ir.ui.view" id="dashboard_tile_category_tree_view">
|
||||||
|
<field name="model">tile.category</field>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<tree string="Tile Categories" editable="bottom">
|
||||||
|
<field name="sequence" widget="handle"/>
|
||||||
|
<field name="name"/>
|
||||||
|
<field name="fold"/>
|
||||||
|
</tree>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
<record model="ir.actions.act_window" id="action_tree_dashboard_tile">
|
<record model="ir.actions.act_window" id="action_tree_dashboard_tile">
|
||||||
<field name="name">Dashboard</field>
|
<field name="name">Dashboard</field>
|
||||||
<field name="res_model">tile.tile</field>
|
<field name="res_model">tile.tile</field>
|
||||||
|
|
Loading…
Reference in New Issue