13 lines
353 B
Python
13 lines
353 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2021 Joan Marín <Github@JoanMarin>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import models, fields
|
|
|
|
|
|
class DateRange(models.Model):
|
|
_inherit = 'date.range'
|
|
|
|
nie_sent = fields.Integer(string='NIE Sent', default=0)
|
|
niae_sent = fields.Integer(string='NIAE Sent', default=0)
|
|
|