Closed yandeu closed 2 years ago
Hi,
What exactly is service.float_amount and is it the right implementation?
service.float_amount
https://github.com/etceterra/aposto-server/blob/ae40624a888c27c7b9801b58326b3f80c4c8005f/pdf_generation/contents/invoice_content.py#L185
I got the invoice below from another vendor (HealthAdvisor), but the calculation doesn't match.
The string ends with #120.00#3#3#0000. Why would there be two 3 in there?
#120.00#3#3#0000
3
.
I get it. It's the last missing digit from the Luhn algorithm.
212121 00800(3)
212121 11200(3)
Hi,
What exactly is
service.float_amount
and is it the right implementation?https://github.com/etceterra/aposto-server/blob/ae40624a888c27c7b9801b58326b3f80c4c8005f/pdf_generation/contents/invoice_content.py#L185
I got the invoice below from another vendor (HealthAdvisor), but the calculation doesn't match.
The string ends with
#120.00#3#3#0000
. Why would there be two3
in there?.