Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
3842 Vizualizări

Hello everybody,

I use a XML-RPC to access to invoices, I want to get the states of invoices, but always I get paid instead of Payé (French)

I use administrator to connect to the databse, he has as lang = 'fr_FR'

def _get_invoice_states(self, cr, uid, ids, field_name, args, context=None):
    if not context : 
        context = {}
        user = self.pool.get('res.users').read(cr, uid, uid, ['lang','tz'])
        context.update({'lang' : str(user.get('lang',u'fr_FR'))})
        context.update({'tz' : str(user.get('tz',u'GMT'))})
        context.update({'uid' : uid})
    result = {}
    for invoice in self.browse(cr, uid, ids, context=context):
        res = _('Name : ') + (invoice.number or '') 
        res += _('Etat : ') + (invoice.state or '')

Can you help me to get the wanted result, Thank you

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
2
mar. 23
5007
2
mar. 22
2450
3
dec. 19
5140
1
iul. 19
13994
0
mar. 15
4399