mirror of
https://github.com/bringout/oca-ocb-l10n_me-africa.git
synced 2026-04-27 22:22:05 +02:00
14 lines
350 B
Python
14 lines
350 B
Python
from odoo import models, fields
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
_inherit = 'account.move'
|
|
|
|
l10n_ke_wh_certificate_number = fields.Char(
|
|
string="Withholding Certificate Number",
|
|
help="Customer withholding certificate number",
|
|
)
|
|
|
|
l10n_ke_wh_certificate_date = fields.Date(
|
|
string="Date of Certificate",
|
|
)
|