You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.3 KiB
40 lines
1.3 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2018-04-12 16:28
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('finance', '0009_invoicerebilling_pay_count'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='invoicerebilling',
|
|
name='pay_count',
|
|
),
|
|
migrations.AddField(
|
|
model_name='bill',
|
|
name='freeze',
|
|
field=models.BooleanField(default=False, verbose_name='Отказ от платежей'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='invoice',
|
|
name='date_of_payment',
|
|
field=models.DateTimeField(blank=True, null=True, verbose_name='Дата фактической оплаты'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='invoice',
|
|
name='expected_date',
|
|
field=models.DateTimeField(default=django.utils.timezone.now, verbose_name='Ожидаемая дата платежа'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='invoice',
|
|
name='date',
|
|
field=models.DateTimeField(auto_now_add=True, verbose_name='Дата создания платежа'),
|
|
),
|
|
]
|
|
|