hello, I have a problem with my wizard result
I have results displayed by wizard for specific records but the problem is i can only see the results in tree view not in form view, for example the wizard return a tree view for me and the records in tree views are not click-able to become a form
that is my code:
from openerp import fields, models, api
class customer_trade_trans_details(models.TransientModel):
_name = 'customer.trade.trans.details'
start_date=fields.Date("Date From")
end_date=fields.Date("Date To")
trans_type=fields.Many2one("vb.tran_type","Transaction Type")
@api.multi
def trans_trade_details(self):
result_obj = self.env['vb.trade_tran']
cr, uid, context = self.env.args
domain = []
for wiz in self:
if context.has_key('active_ids') and context.get('active_ids'):
domain.append(('acct_id','in',context.get('active_ids')))
if wiz.trans_type:
domain.append(("tran_type_id","=",wiz.trans_type.id))
if wiz.start_date and wiz.end_date:
domain.append(("tran_date",">=",wiz.start_date))
domain.append(("tran_date","<=",wiz.end_date))
#results = result_obj.search(domain)
res_view_id = self.env['ir.model.data'].get_object_reference('vb_helpdesk','trade_trans_tree_inquiry_results12')[1]
return{
'name': "Transactions Trade Details",
'view_type': 'form',
'view_mode':"tree",
'view_id': res_view_id,
'res_model': 'vb.trade_tran',
'type': 'ir.actions.act_window',
'create':'False',
'domain':domain,
}
i tried to do many things but nothing worked :(
any help please ?