fix for fees for selling.

fix for taxfree amount.
add description to transactions.
This commit is contained in:
2021-05-12 06:54:32 +02:00
parent 2818d9c11f
commit 68c26eb924
7 changed files with 70 additions and 3 deletions
+1
View File
@@ -40,6 +40,7 @@ class Transaction(models.Model):
fiat_fee = NonscientificDecimalField(max_digits=24, decimal_places=10, null=True, blank=True)
date_valid = models.DateTimeField('date transfered')
transaction_type = models.CharField(max_length=1, choices=TRANSACTION_TYPES, default='B')
description = models.CharField(max_length=100, null=True, blank=True)
class Meta:
db_table = "transaction"