[RMV] - Remove active field

This commit is contained in:
sbejaoui
2019-04-30 15:30:27 +02:00
parent bfa5d366b2
commit c43acf561e

View File

@@ -61,13 +61,6 @@ class ContractLineForecastPeriod(models.Model):
help='Discount that is applied in generated invoices.'
' It should be less or equal to 100',
)
active = fields.Boolean(
string="Active",
related="contract_line_id.active",
store=True,
readonly=True,
default=True,
)
@api.multi
@api.depends('quantity', 'price_unit', 'discount')