mirror of
https://github.com/bringout/oca-ocb-l10n_asia-pacific.git
synced 2026-04-26 02:22:00 +02:00
11 lines
262 B
Python
11 lines
262 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
_inherit = 'account.move'
|
|
|
|
l10n_sg_permit_number = fields.Char(string="Permit No.")
|
|
|
|
l10n_sg_permit_number_date = fields.Date(string="Date of permit number")
|