mirror of
https://github.com/bringout/oca-ocb-accounting.git
synced 2026-04-23 14:42:05 +02:00
9 lines
199 B
Python
9 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')],
|
|
)
|