Django - 注释加密的 TextField 并将其转换为 FloatField 到小数点后两位

Django - Annotate and cast an encrypted TextField to a FloatField to 2 decimal places

我正在使用 Django pgcrypto fields 来加密模型中的金额值 Invoice如下:

from pgcrypto import fields

class Invoice(models.Model):
    # Some other fields
    amount_usd = fields.TextPGPSymmetricKeyField(default='')

    objects = InvoicePGPManager()  # Manager used for PGP Fields

我正在使用 TextPGPSymmetricKeyField,因为我必须将该值存储为浮点数,而 django-pgcrypto-fields 没有 FloatField 的等效项。

现在我需要通过 API 传递这个 amount_usd 值,我必须将小数限制为最多两位。

我试过使用以下方法:

Invoice.objects.all().values('amount_usd').annotate(
    amount_to_float=Cast('amount_usd', FloatField())
)

但这会出错,因为无法将字节(加密数据)转换为浮点数。

我也试过用这个:

from django.db.models import Func

class Round(Func):
    function = 'ROUND'
    template='%(function)s(%(expressions)s, 2)'


Invoice.objects.all().annotate(PGPSymmetricKeyAggregate(
            'amount_usd')).annotate(amount=Cast(
            'amount_usd__decrypted', FloatField())).annotate(
            amount_final = Round('amount'))

我收到以下错误:

django.db.utils.ProgrammingError: function round(double precision, integer) does not exist
LINE 1: ...sd, 'ultrasecret')::double precision AS "amount", ROUND(pgp_...
                                                         ^
HINT:  No function matches the given name and argument types. You might need to add explicit type casts.

有什么方法可以将加密字段转换为最多 2 位小数的 FloatField?

你的错误是:double precision AS "amount" 那是因为您正在将 amount_usd 转换为 FloatField,后者在 SQL.

中转换为双精度

尝试使用 DecimalField(在 SQL 中转换为数字类型)及其参数。

Invoices.objects.all().annotate(amount=Cast(
    PGPSymmetricKeyAggregate('amount_usd'),
    DecimalField(max_digits=20, decimal_places=2)))

在此处查看文档:Django DecimalField