Wups, Sligro is excl. VAT
This commit is contained in:
parent
2c47ab3a0d
commit
56c724e8d0
1 changed files with 4 additions and 1 deletions
|
@ -9,6 +9,9 @@ import subprocess
|
|||
import logging
|
||||
|
||||
|
||||
vat = Decimal('1.09')
|
||||
|
||||
|
||||
class Product:
|
||||
def __init__(self, *, name, price, gtin, units, aliases=[]):
|
||||
self.name = name
|
||||
|
@ -128,7 +131,7 @@ def sligro_get_by_gtin(gtin13):
|
|||
|
||||
return Product(
|
||||
name=f'{product["brandName"]} {product["name"]} ({volume})',
|
||||
price=Decimal(price_obj['value']),
|
||||
price=Decimal(price_obj['value']) * vat,
|
||||
gtin=gtin13,
|
||||
units=units,
|
||||
aliases=[sub_gtin] if sub_gtin else [],
|
||||
|
|
Loading…
Add table
Reference in a new issue