mirror of
https://gitlab.com/flectra-community/account-closing.git
synced 2024-11-22 21:52:04 +00:00
15 lines
506 B
Python
15 lines
506 B
Python
# Copyright 2013-2016 Akretion, Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from flectra import models, fields
|
|
|
|
|
|
class ProductTemplate(models.Model):
|
|
_inherit = 'product.template'
|
|
|
|
must_have_dates = fields.Boolean(
|
|
string='Must Have Start and End Dates',
|
|
help="If this option is active, the user will have to enter "
|
|
"a Start Date and an End Date on the invoice lines that have "
|
|
"this product.")
|