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

How can I call a method, from another method of the same class and of different classes, according to a condition. use several codes (#) but none of them executes the conditions methods.

@api.multi

    def action_crear_documento1(self):

        if self.type=="sale":

            if self.invoice_type_code_id=="08":

                self.pool.get('account.journal').action_boleta_venta1(self)

                #journal=self.env['account.journal']

                #journal.action_boleta_venta1()

            elif self.invoice_type_code_id=="01":

                self.pool.get('account.journal').action_boleta_venta1(self)

                #journal=self.env['account.journal']

                #journal.action_boleta_venta1()

                #return self.action_boleta_venta4

   

    @api.multi

    def action_boleta_venta4(self):

        #code

       


    @api.multi

    def action_boleta_venta3(self):

        #code



Awatar
Odrzuć
Najlepsza odpowiedź

Hi,

You can make call like this,

self.env['model_name'].method_name() .

Example:

self.env['account.journal'].action_boleta_venta1()


If you are developing a module I will suggest you have a look at the odoo code and see how similar things are done inside the odoo itself and refer those things.

Thanks

Awatar
Odrzuć
Autor

I used this code, I think it's the same, and it didn't address me. I will check it again. Thank you.

#journal=self.env['account.journal']

#journal.action_boleta_venta1()

Powiązane posty Odpowiedzi Widoki Czynność
2
sie 25
2419
1
lip 25
915
1
sie 25
1151
0
maj 25
1347
2
kwi 25
3568