10 lines
199 B
Python
10 lines
199 B
Python
|
from odoo import fields, models
|
||
|
|
||
|
|
||
|
class ResPartner(models.Model):
|
||
|
_inherit = 'res.partner'
|
||
|
|
||
|
invoice_sending_method = fields.Selection(
|
||
|
selection_add=[('snailmail', 'by Post')],
|
||
|
)
|