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

Hi, 

I've a object that has a user_id ('user_id': fields.many2one('res.users', u'Responsável', required=True,),), and this user recive an email when someone changes the state of the record. 

I've this function to give the url: 

      def get_signup_url(self, cr, uid, ids, context=None):
        document = self.browse(cr, uid, ids, context=context)
        res= False
        base_url = self.pool.get('ir.config_parameter').get_param(cr, uid, 'web.base.url')
     
        query = {'db': cr.dbname}
        fragment = {'action': 'vi_resource_reservation.action_resource_reservation',
                    'type': "signup",
                    'view_type' : 'form',
                    'model' : 'resource.reservation',
                    'id': document.id,
                    'login': document.user_id.login,
                    }
       
        res = urljoin(base_url, "?%s#%s" % (urlencode(query), urlencode(fragment)))
        print res
        return res

It return the following link, with the id 11 :

1) http://192.168.2.141:8086db=testes_0503#view_type=form&id=11&action=vi_resource_reservation.action_resource_reservation&login=user2&type=signup&model=resource.reservation

But when I write the link 1) in the browser it redirects to the first id in the database of the model (id 2 ):

2) http://192.168.2.141:8086/?db=testes_0503#id=2&view_type=form&model=resource.reservation&action=606

Do you have any ideia why? What I'm doing wrong?

thanks 

 

아바타
취소
베스트 답변

1) Your URL is wrong, as it should be like:

http://192.168.2.141:8086/db=testes_0503#view_type=form&id=11

&action=vi_resource_reservation.action_resource_reservation&login=user2&type=signup&model=resource.reservation

2) If point 1 doesn't work, try passing the link without action parameter.

아바타
취소
작성자

the 2) works. Thanks =)

베스트 답변

.

아바타
취소
관련 게시물 답글 화면 활동
4
7월 21
19780
5
1월 24
16275
1
5월 25
904
0
12월 24
9657
0
11월 24
1497