콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
6048 화면

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 ?

아바타
취소
작성자 베스트 답변

that is not what i am asking for, i am asking that i have return the result in tree view, but if you click on any record it wont take you to form view, so is there any way to make the result view in both tree and form view ?
because the result from wizard is only return tree view !!

아바타
취소
베스트 답변

 Hello Ahmad,


You have return 'trade_trans_tree_inquiry_results12' tree view in that you can specify editable="bottom" create="false" delete="false" attribute. or you can create new tree view for 'vb.trade_tran' and try return that view.

Example:

<tree string="Partner Invoices" create="false" delete="false" editable="bottom">

</tree>


Hope this helps.

아바타
취소
관련 게시물 답글 화면 활동
2
1월 23
26667
4
6월 21
39640
1
12월 20
2799
1
4월 18
7925
3
9월 15
9768