Billing Entity Management #66

Merged
rixx merged 32 commits from 54-billing-entity-management into main 2025-06-22 15:42:14 +00:00
Showing only changes of commit 10fd7d2356 - Show all commits

View file

@ -0,0 +1,30 @@
# Generated by Django 5.2.1 on 2025-06-15 16:16
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0004_billingentity_odoo_fields"),
]
operations = [
migrations.AddField(
model_name="organization",
name="odoo_sale_order_id",
field=models.IntegerField(
blank=True, null=True, verbose_name="Odoo Sale Order ID"
),
),
migrations.AddField(
model_name="organization",
name="odoo_sale_order_name",
field=models.CharField(
blank=True,
max_length=100,
null=True,
verbose_name="Odoo Sale Order Name",
),
),
]