diff --git a/ext/custom-addons/dp_custom/models/res_company.py b/ext/custom-addons/dp_custom/models/res_company.py
index 68d330a3..97fd75c6 100644
--- a/ext/custom-addons/dp_custom/models/res_company.py
+++ b/ext/custom-addons/dp_custom/models/res_company.py
@@ -28,6 +28,7 @@ class Company(models.Model):
_inherit = 'res.company'
eori_nr = fields.Char(string='EORI-Nr')
+ fax = fields.Char(related='partner_id.fax')
@api.model
def set_company_logo(self, company, logo):
diff --git a/ext/custom-addons/dp_custom/models/res_partner.py b/ext/custom-addons/dp_custom/models/res_partner.py
index 3ff96c32..53d1e676 100644
--- a/ext/custom-addons/dp_custom/models/res_partner.py
+++ b/ext/custom-addons/dp_custom/models/res_partner.py
@@ -76,6 +76,7 @@ class Partner(models.Model):
country_id = fields.Many2one('res.country', string='Country', ondelete='restrict', default=_default_country_id)
commission_account_ids = fields.Many2many(comodel_name='commission.account', string='Provisionsempfänger')
partner_flash = fields.Char()
+ fax = fields.Char(string='Fax')
_sql_constraints = [
('ref_uniq', 'unique(ref)', 'Die Interne Referenz muss eindeutig sein'),
diff --git a/ext/custom-addons/dp_custom/views/res_company_views.xml b/ext/custom-addons/dp_custom/views/res_company_views.xml
index aa6beb28..6b526078 100644
--- a/ext/custom-addons/dp_custom/views/res_company_views.xml
+++ b/ext/custom-addons/dp_custom/views/res_company_views.xml
@@ -9,6 +9,9 @@