parent
bd7f1a39cd
commit
08a70243c6
9 changed files with 104 additions and 51 deletions
@ -0,0 +1,34 @@ |
||||
# -*- coding: utf-8 -*- |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import models, migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('docs', '0001_initial'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterField( |
||||
model_name='aktrabot', |
||||
name='bank_account', |
||||
field=models.ForeignKey(verbose_name='Расчётный счёт', blank=True, related_name='+', to='customer.BankAccount'), |
||||
), |
||||
migrations.AlterField( |
||||
model_name='faktura', |
||||
name='bank_account', |
||||
field=models.ForeignKey(verbose_name='Расчётный счёт', blank=True, related_name='+', to='customer.BankAccount'), |
||||
), |
||||
migrations.AlterField( |
||||
model_name='invoice', |
||||
name='bank_account', |
||||
field=models.ForeignKey(verbose_name='Расчётный счёт', blank=True, related_name='+', to='customer.BankAccount'), |
||||
), |
||||
migrations.AlterField( |
||||
model_name='nakladn', |
||||
name='bank_account', |
||||
field=models.ForeignKey(verbose_name='Расчётный счёт', blank=True, related_name='+', to='customer.BankAccount'), |
||||
), |
||||
] |
||||
@ -0,0 +1,34 @@ |
||||
# -*- 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'), |
||||
), |
||||
] |
||||
Loading…
Reference in new issue