mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-21 23:52:02 +02:00
Initial commit: Core packages
This commit is contained in:
commit
12c29a983b
9512 changed files with 8379910 additions and 0 deletions
44
odoo-bringout-oca-ocb-board/board/controllers/main.py
Normal file
44
odoo-bringout-oca-ocb-board/board/controllers/main.py
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from lxml import etree as ElementTree
|
||||
|
||||
from odoo.http import Controller, route, request
|
||||
|
||||
|
||||
class Board(Controller):
|
||||
|
||||
@route('/board/add_to_dashboard', type='json', auth='user')
|
||||
def add_to_dashboard(self, action_id, context_to_save, domain, view_mode, name=''):
|
||||
# Retrieve the 'My Dashboard' action from its xmlid
|
||||
action = request.env.ref('board.open_board_my_dash_action').sudo()
|
||||
|
||||
if action and action['res_model'] == 'board.board' and action['views'][0][1] == 'form' and action_id:
|
||||
# Maybe should check the content instead of model board.board ?
|
||||
view_id = action['views'][0][0]
|
||||
board_view = request.env['board.board'].get_view(view_id, 'form')
|
||||
if board_view and 'arch' in board_view:
|
||||
board_arch = ElementTree.fromstring(board_view['arch'])
|
||||
column = board_arch.find('./board/column')
|
||||
if column is not None:
|
||||
# We don't want to save allowed_company_ids
|
||||
# Otherwise on dashboard, the multi-company widget does not filter the records
|
||||
if 'allowed_company_ids' in context_to_save:
|
||||
context_to_save.pop('allowed_company_ids')
|
||||
new_action = ElementTree.Element('action', {
|
||||
'name': str(action_id),
|
||||
'string': name,
|
||||
'view_mode': view_mode,
|
||||
'context': str(context_to_save),
|
||||
'domain': str(domain)
|
||||
})
|
||||
column.insert(0, new_action)
|
||||
arch = ElementTree.tostring(board_arch, encoding='unicode')
|
||||
request.env['ir.ui.view.custom'].create({
|
||||
'user_id': request.session.uid,
|
||||
'ref_id': view_id,
|
||||
'arch': arch
|
||||
})
|
||||
return True
|
||||
|
||||
return False
|
||||
Loading…
Add table
Add a link
Reference in a new issue