0005_auto_20170608_2213.py 615 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import migrations, models
  4. import coin.utils
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('billing', '0004_auto_20161230_1803'),
  8. ]
  9. operations = [
  10. migrations.AlterField(
  11. model_name='invoice',
  12. name='date_due',
  13. field=models.DateField(default=coin.utils.end_of_month, help_text='Le d\xe9lai de paiement sera fix\xe9 \xe0 30 jours \xe0 la validation si laiss\xe9 vide', null=True, verbose_name="date d'\xe9ch\xe9ance de paiement", blank=True),
  14. ),
  15. ]