Enhancement: better monetary field with currency code (#5858)

This commit is contained in:
shamoon
2024-02-27 08:26:06 -08:00
committed by GitHub
parent d6e4187336
commit f1db5ae91a
13 changed files with 283 additions and 38 deletions

View File

@@ -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)