Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
17735 Visualizzazioni

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)

Avatar
Abbandona
Risposta migliore

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

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
2
feb 22
5004
1
ago 15
2946
1
apr 15
22470
2
mar 15
5239
1
mar 15
4077