how can i pass a local Variable defined in qweb to a Python-method?
<t t-set="shop_location" t-value="Munich"/>
....
....
<t t-set="location" t-value="product.get_shop_barcode_location(shop_location)"/>
the function is defined like:
def get_shop_barcode_location(self,location)
....
but the location variable in Python is always just None.