add billing entity docs
All checks were successful
Tests / test (push) Successful in 24s

This commit is contained in:
Tobias Brunner 2025-06-05 10:58:12 +02:00 committed by Tobias Kunze
parent a3011444ec
commit adda59fe7f
3 changed files with 28 additions and 1 deletions

View file

@ -148,7 +148,7 @@ class BillingEntity(ServalaModelMixin, models.Model):
# Odoo IDs are nullable for creation, should never be null in practice
# The company ID points at a record of type res.partner with company_type=company
# The invoice ID points at a record of type res.partner with company_type=person,
# type=invoic, parent_id=company_id (the invoice address).
# type=invoice, parent_id=company_id (the invoice address).
odoo_company_id = models.IntegerField(null=True)
odoo_invoice_id = models.IntegerField(null=True)