parent
9d0b48fbde
commit
dbd3a7803d
2 changed files with 43 additions and 0 deletions
@ -0,0 +1,19 @@ |
||||
# -*- coding: utf-8 -*- |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('customer', '0009_payment_date'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterField( |
||||
model_name='license', |
||||
name='payform', |
||||
field=models.IntegerField(verbose_name='форма оплаты', default=0, choices=[(-2, 'Бонусная'), (-1, 'Бесплатно'), (0, 'Безналичный расчёт'), (1, 'Карта, электронные деньги, наличные')]), |
||||
), |
||||
] |
||||
@ -0,0 +1,24 @@ |
||||
# -*- coding: utf-8 -*- |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('docs', '0004_auto_20170609_0104'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='faktura', |
||||
name='government', |
||||
field=models.BooleanField(verbose_name='Госконтракт', default=False), |
||||
), |
||||
migrations.AddField( |
||||
model_name='faktura', |
||||
name='government_description', |
||||
field=models.CharField(verbose_name='Идентификатор госконтракта, договора', max_length=256, blank=True, default=''), |
||||
), |
||||
] |
||||
Loading…
Reference in new issue