This question has been flagged

I want to implement workflow to process project issues. Some of actions will be available for customers via portal and statusbar widget will be read only. The action will be perform by buttons deppends the issue state and logged user.

The problem is to perform statusbar action by buttons. I add on_click to statusbar, but it doesn't perform the function.

project_issue_view.xml

<field name="stage_id" widget="statusbar" clickable="True" on_change="onchange_stage_id(stage_id)"/>

project_issue.py

class my_issue(osv.osv):
    _inherit = 'project.issue'

def onchange_stage_id(self, cr, uid, ids, stage_id, context=None):
    _logger.warning("\n onchange_stage_id")
    return True
Avatar
Discard
Best Answer

I found the solution on my own again :) Statusbar state changes automatically after write() or create().

state_ids = self.pool.get('project.task.type').search(cr, uid, [('state','=','new')])
if state_ids:
    vals['state'] = 'new'
    vals['stage_id'] = state_ids[0]

{...} return super(my_issue, self).create(cr, uid, vals, context=create_context)

Avatar
Discard
Best Answer

can you find a solution?? i need the same!!

Avatar
Discard