Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
2 Odpowiedzi
8859 Widoki

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..............................
Awatar
Odrzuć
Najlepsza odpowiedź

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.

Awatar
Odrzuć
Najlepsza odpowiedź

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 ...

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
lip 25
554
Search a message Rozwiązane
1
lut 25
1253
0
wrz 23
2222
2
cze 23
4042
1
sie 22
12779