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.
25 lines
1.1 KiB
25 lines
1.1 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.3 on 2017-04-24 16:38
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('finance', '0069_auto_20170203_1333'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='bill',
|
|
name='_method',
|
|
field=models.CharField(choices=[('C', 'Наличные'), ('H', 'JustClick'), ('B', 'Банковский перевод'), ('G', 'На расчетный счет'), ('A', 'Альфа-Банк'), ('P', 'PayPal'), ('W', 'WebMoney'), ('S', 'SimplePay'), ('Y', 'YandexKassa')], default='Y', max_length=2, verbose_name='Способ оплаты'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='servicerequest',
|
|
name='status',
|
|
field=models.CharField(choices=[('S', 'Не обработан'), ('E', 'Ошибка контекста'), ('W', 'В работе'), ('F', 'Продан'), ('B', 'Не продал')], default='S', max_length=1, verbose_name='Статус'),
|
|
),
|
|
]
|
|
|