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.
34 lines
1.2 KiB
34 lines
1.2 KiB
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('docs', '0002_auto_20170520_0018'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='aktrabot',
|
|
name='bank_account',
|
|
field=models.ForeignKey(verbose_name='Расчётный счёт', blank=True, null=True, related_name='+', to='customer.BankAccount'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='faktura',
|
|
name='bank_account',
|
|
field=models.ForeignKey(verbose_name='Расчётный счёт', blank=True, null=True, related_name='+', to='customer.BankAccount'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='invoice',
|
|
name='bank_account',
|
|
field=models.ForeignKey(verbose_name='Расчётный счёт', blank=True, null=True, related_name='+', to='customer.BankAccount'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='nakladn',
|
|
name='bank_account',
|
|
field=models.ForeignKey(verbose_name='Расчётный счёт', blank=True, null=True, related_name='+', to='customer.BankAccount'),
|
|
),
|
|
]
|
|
|