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

I have extended account_invoice so there is a simple descriptive payment method field.

 

 class account_invoice(models.Model):

   _inherit = "account.invoice"

   payment_method = fields.Selection(

     selection=[

      ('bank_transfer', 'Transferencia Bancaria'),

      ('check', 'Cheque'),

      ('confirming', 'Confirming'),

      ('bank_giro', 'Giro'),

     ('promisory_note', 'Pagaré'),

     ('direct_debit', 'Domiciliación')

      ],  string='Método de pago')


Provided that in another module payment_method variable points to that field and returns "bank_transfer", how can I get "Transferencia Bancaria" instead of "bank_transfer"?

Thanks

Awatar
Odrzuć
Najlepsza odpowiedź

With the new API I found this to work:


env['account.invoice']._columns['payment_method'].selection
Awatar
Odrzuć

Adding on to this, I was able to do a key lookup with this:

dict(env['account.invoice']._columns['state'].selection)[o.state]

Najlepsza odpowiedź

You can use this.

dict(self._fields['your_selection_field'].selection).get(self.your_selection_field)


Awatar
Odrzuć
Najlepsza odpowiedź

EM,

You can use below line to get the selection field in form of dictionary...

dict(self.pool.get('account.invoice').fields_get(cr, uid, allfields=['payment_method'], context=context)['payment_method]['selection']

and then you can use your key to find out its relevant value:

its result will be like:

     {'direct_debit': 'Domiciliación', 'promisory_note': 'Pagaré', 'bank_giro': 'Giro', 'confirming':'Confirming','check': 'Cheque', 'bank_transfer': 'Transferencia Bancaria'}

then you can use normal dictionary functionality to retrive your desired key's value....

Hope it Helps!

Regards,


Awatar
Odrzuć
Autor

payment_method_dict = dict(self.pool.get('account.invoice').fields_get(cr, uid, allfields=['payment_method'], context=context)['payment_method']['selection']) NameError: global name 'cr' is not defined

EM,
as u are using Odoo8 api, you can't use cr,uid direclty, you should use self.env.cr, self.env.uid, self.env.context, etc .....
I just gave you the format, you have to manipulate it as per your requirement ...

as per your api, you can use it...
dict(self.env['account.invoice'].fields_get(allfields=['payment_method'])['payment_method]['selection']

Najlepsza odpowiedź

I believe what you are asking is similar to https://www.odoo.com/es_ES/forum/help-1/question/how-to-use-the-value-of-a-selection-field-instead-of-its-key-in-a-python-function-39080/


Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
lis 16
8446
1
mar 15
3848
1
maj 21
4103
7
lis 20
47595
0
maj 20
6366