diff --git a/account_vat_period_end_statement/models/account.py b/account_vat_period_end_statement/models/account.py
index 9119093f0e1c..6974282a0eef 100644
--- a/account_vat_period_end_statement/models/account.py
+++ b/account_vat_period_end_statement/models/account.py
@@ -821,6 +821,7 @@ class StatementGenericAccountLine(models.Model):
statement_id = fields.Many2one("account.vat.period.end.statement", "VAT statement")
amount = fields.Float("Amount", required=True, digits="Account")
name = fields.Char("Description")
+ previous_year_credit = fields.Boolean("Previous year credits")
class AccountTax(models.Model):
diff --git a/account_vat_period_end_statement/views/account_view.xml b/account_vat_period_end_statement/views/account_view.xml
index 75659e405307..6bf2eba34845 100644
--- a/account_vat_period_end_statement/views/account_view.xml
+++ b/account_vat_period_end_statement/views/account_view.xml
@@ -181,12 +181,16 @@