In France, we like to display the civility (title) in front of the customer's name like this:
Mr. and Mrs. LASTNAME First name and First name
I want this to appear in address blocks on quotes and invoices in V14
How to ?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
In France, we like to display the civility (title) in front of the customer's name like this:
Mr. and Mrs. LASTNAME First name and First name
I want this to appear in address blocks on quotes and invoices in V14
How to ?
For that you can override the name_get method in the 'res,partner' model to return the name plus the sur name if you have a field that contains the Mr. or Mrs. values. for example
class ResPartnerInherit(models.Model):
_inherit = 'res.partner'
sur_name = fields.Selection([('mr','Mr.'),('mrs','Mrs.')])
def name_get(self):
result = []
for rec in self:
result.append((rec.id, '%s - %s' % (rec.sur_name,rec.name)))
return result
Happy to help :) an upvote will be awesome
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
RegistratiPost correlati | Risposte | Visualizzazioni | Attività | |
---|---|---|---|---|
|
3
gen 20
|
6797 | ||
|
0
gen 16
|
3681 | ||
|
1
mar 15
|
4941 | ||
|
2
ott 23
|
2594 | ||
|
0
mar 15
|
4927 |