Création de K-Psul
K-Psul est l'interface pour l'équipe K-Fêt servant à effectuer des opérations sur les comtpes General : - Ajout d'un default sur le montant d'un groupe d'opérations K-Psul : - Création de l'interface pour enregistrer une opération
This commit is contained in:
parent
e9bbb35e66
commit
6be65df654
7 changed files with 526 additions and 8 deletions
24
kfet/migrations/0009_auto_20160805_0720.py
Normal file
24
kfet/migrations/0009_auto_20160805_0720.py
Normal file
|
@ -0,0 +1,24 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('kfet', '0008_auto_20160804_1736'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='operation',
|
||||
old_name='on_checkout',
|
||||
new_name='is_checkout',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='operation',
|
||||
name='article_nb',
|
||||
field=models.PositiveSmallIntegerField(default=None, null=True, blank=True),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue