|
@@ -0,0 +1,34 @@
|
|
|
+# -*- coding: utf-8 -*-
|
|
|
+from __future__ import unicode_literals
|
|
|
+
|
|
|
+from django.db import migrations, models
|
|
|
+
|
|
|
+
|
|
|
+class Migration(migrations.Migration):
|
|
|
+
|
|
|
+ dependencies = [
|
|
|
+ ('billing', '0017_auto_20180416_0103'),
|
|
|
+ ]
|
|
|
+
|
|
|
+ operations = [
|
|
|
+ migrations.AlterField(
|
|
|
+ model_name='invoicedetail',
|
|
|
+ name='amount',
|
|
|
+ field=models.DecimalField(verbose_name='montant', max_digits=8, decimal_places=2),
|
|
|
+ ),
|
|
|
+ migrations.AlterField(
|
|
|
+ model_name='membershipfee',
|
|
|
+ name='_amount',
|
|
|
+ field=models.DecimalField(default=None, help_text='en \u20ac', verbose_name='montant', max_digits=8, decimal_places=2),
|
|
|
+ ),
|
|
|
+ migrations.AlterField(
|
|
|
+ model_name='payment',
|
|
|
+ name='amount',
|
|
|
+ field=models.DecimalField(null=True, verbose_name='montant', max_digits=8, decimal_places=2),
|
|
|
+ ),
|
|
|
+ migrations.AlterField(
|
|
|
+ model_name='paymentallocation',
|
|
|
+ name='amount',
|
|
|
+ field=models.DecimalField(null=True, verbose_name='montant', max_digits=8, decimal_places=2),
|
|
|
+ ),
|
|
|
+ ]
|