forked from DGNum/gestioCOF
b6c75fd84a
- Reprise de l'affichage - Affichage en direct des totaux et erreurs - Possibilité de ne pas compter la caisse ajoutée (et identifiée par `not_count` dans le modèle Statement si tel est le cas)
19 lines
456 B
Python
19 lines
456 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('kfet', '0033_checkoutstatement_not_count'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='checkoutstatement',
|
|
name='taken_cheque',
|
|
field=models.DecimalField(max_digits=6, decimal_places=2, default=0),
|
|
),
|
|
]
|