2016-08-23 02:45:49 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
from django.db import migrations, models
|
2016-08-23 02:45:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
2018-10-06 12:35:49 +02:00
|
|
|
dependencies = [("kfet", "0033_checkoutstatement_not_count")]
|
2016-08-23 02:45:49 +02:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2018-10-06 12:35:49 +02:00
|
|
|
model_name="checkoutstatement",
|
|
|
|
name="taken_cheque",
|
2016-08-23 02:45:49 +02:00
|
|
|
field=models.DecimalField(max_digits=6, decimal_places=2, default=0),
|
2018-10-06 12:35:49 +02:00
|
|
|
)
|
2016-08-23 02:45:49 +02:00
|
|
|
]
|