Instead of returning await calculTarif try setting a variable to the result and then returning that variable at the end. For instance:
let tarif = await caclulTarif(arguments)
… rest of code here
return tarif
Instead of returning await calculTarif try setting a variable to the result and then returning that variable at the end. For instance:
let tarif = await caclulTarif(arguments)
… rest of code here
return tarif