Skip to content

Commit

Permalink
Fix admin
Browse files Browse the repository at this point in the history
  • Loading branch information
JobDoesburg committed Nov 12, 2023
1 parent 73fe1ce commit 864f33a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 4.2.6 on 2023-11-12 21:08
# Generated by Django 4.2.6 on 2023-11-12 21:51

from django.db import migrations, models
import django.db.models.deletion
Expand All @@ -17,6 +17,7 @@ class Migration(migrations.Migration):
name="price",
field=payments.models.PaymentAmountField(
decimal_places=2,
help_text="Current sales price of the merchandise item per piece (incl. VAT).",
max_digits=8,
validators=[payments.models.validate_not_zero],
),
Expand All @@ -39,6 +40,7 @@ class Migration(migrations.Migration):
"stock_value",
payments.models.PaymentAmountField(
decimal_places=2,
help_text="Current stock ledger value of this product per piece (excl. VAT).",
max_digits=8,
validators=[payments.models.validate_not_zero],
),
Expand Down

0 comments on commit 864f33a

Please sign in to comment.