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

Hi.
I want to execute the code below :

Select * from res_users;

from a python methode in openerp. My module look like that :

def my_sql_method(self,cr,uid) :

#it is my method which execute my sql code
 

How can i do that ?

NB: I don't want to execute my sql code in postgresql (easy)

아바타
취소
베스트 답변

A sample code is pasted here. You can refer the below code.

 

def move_line_get(self, cr, uid, invoice_id):
        res = []
        cr.execute('SELECT * FROM account_invoice_tax WHERE invoice_id=%s', (invoice_id,))
        for t in cr.dictfetchall():
            if not t['amount'] \
                    and not t['tax_code_id'] \
                    and not t['tax_amount']:
                continue
            res.append({
                'type':'tax',
                'name':t['name'],
                'price_unit': t['amount'],
                'quantity': 1,
                'price': t['amount'] or 0.0,
                'account_id': t['account_id'],
                'tax_code_id': t['tax_code_id'],
                'tax_amount': t['tax_amount'],
                'account_analytic_id': t['account_analytic_id'],
            })
        return res

아바타
취소
관련 게시물 답글 화면 활동
2
2월 22
5149
1
8월 15
3029
1
4월 15
22607
2
3월 15
5336
1
3월 15
4175