move CurrencyField to counter

This commit is contained in:
imperosol
2025-03-14 16:04:16 +01:00
committed by Thomas Girod
parent 6dfd4e16e2
commit 002554b802
11 changed files with 55 additions and 53 deletions

View File

@ -2,7 +2,7 @@
from django.db import migrations
import accounting.models
import counter.fields
class Migration(migrations.Migration):
@ -14,7 +14,7 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name="customer",
name="amount",
field=accounting.models.CurrencyField(
field=counter.fields.CurrencyField(
decimal_places=2, default=0, max_digits=12, verbose_name="amount"
),
),