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

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

Avatar
Zrušit
Nejlepší odpověď

With the new API I found this to work:


env['account.invoice']._columns['payment_method'].selection
Avatar
Zrušit

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

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

Nejlepší odpověď

You can use this.

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


Avatar
Zrušit
Nejlepší odpověď

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,


Avatar
Zrušit
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']

Nejlepší odpověď

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/


Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
1
lis 16
8388
1
bře 15
3781
1
kvě 21
4056
7
lis 20
47491
0
kvě 20
6295