Open thor opened 7 years ago
This involves either rounding the invoices data when it multiplied with each other, or using the Python format tools to correct it.
Initially I used
models.DecimalField(decimal_places=2)
which didn't help, oddly enough on postgres, which has been changed to
postgres
models.DecimalField()
in 2e17503f76b34d7d9c9eb437f45069b40d345182 for the meanwhile. These details can be seen in spbm/apps/society/models.py.
Seeing as I've tried to fix this myself, and somewhat failed (let's be honest here), this is more of a help wanted situation.
This involves either rounding the invoices data when it multiplied with each other, or using the Python format tools to correct it.
Initially I used
which didn't help, oddly enough on
postgres
, which has been changed toin 2e17503f76b34d7d9c9eb437f45069b40d345182 for the meanwhile. These details can be seen in spbm/apps/society/models.py.