mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-07 15:25:41 +01:00
Enhancement: better monetary field with currency code (#5858)
This commit is contained in:
parent
84721b001f
commit
bf11dc8d1b
13 changed files with 283 additions and 38 deletions
|
|
@ -838,7 +838,7 @@ class CustomFieldInstance(models.Model):
|
|||
|
||||
value_float = models.FloatField(null=True)
|
||||
|
||||
value_monetary = models.DecimalField(null=True, decimal_places=2, max_digits=12)
|
||||
value_monetary = models.CharField(null=True, max_length=128)
|
||||
|
||||
value_document_ids = models.JSONField(null=True)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue