-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dev v. 1.2.5 See merge request di/budgetweb!20
- Loading branch information
Showing
6 changed files
with
122 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
VERSION = (1, 2, 4) | ||
VERSION = (1, 2, 5) | ||
|
||
|
||
def get_version(): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
budgetweb/apps/structure/migrations/0002_auto_20191003_1531.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11.24 on 2019-10-03 13:31 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('structure', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='planfinancement', | ||
name='centrecoutderive', | ||
field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Related cost center'), | ||
), | ||
migrations.AlterField( | ||
model_name='planfinancement', | ||
name='centreprofitderive', | ||
field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Related profit center'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11.24 on 2019-10-03 13:31 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('budgetweb', '0009_auto_20170518_0941'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='structureauthorizations', | ||
name='structures', | ||
field=models.ManyToManyField(related_name='authorized_structures', to='structure.Structure', verbose_name='structures'), | ||
), | ||
migrations.AlterField( | ||
model_name='structuremontant', | ||
name='structure', | ||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='structure.Structure', verbose_name='structure'), | ||
), | ||
] |