Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odpovědi
8853 Zobrazení

How can i have a look at the results(res) of self.search.

res = self.search([('type','=',inv_type),('number','=',str(number_down)),('date_invoice','>',date_invoice)])
if res:
     raise except_orm(res bla bla bla bla bla..............................
Avatar
Zrušit
Nejlepší odpověď

Hi John Doe, try this:

from openerp.exceptions import UserError

res = self.search([('type','=',inv_type),('number','=',str(number_down)),('date_invoice','>',date_invoice)])
raise osv.except_osv(_('Title'),_(res))

or to see in your log:

import logging
_logger = logging.getLogger(__name__)

res = self.search([('type','=',inv_type),('number','=',str(number_down)),('date_invoice','>',date_invoice)])
logger.info('Content: %r',res)

I hope it helps you, regards.

Avatar
Zrušit
Nejlepší odpověď

res = self.search([('type','=',inv_type),('number','=',str(number_down)),('date_invoice','>',date_invoice)])raise osv.except_osv(_('Title'),_(res)
#If you want just see what's inside of your res add
print res
then in console you will see what's in there
this is the easiest thing you can do. I think ...

Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
1
čvc 25
553
1
úno 25
1253
0
zář 23
2221
2
čvn 23
4037
1
srp 22
12777