Price | {{ price }}€ | |
---|---|---|
Persons | {{ persons }} | |
Taxes | {{ taxes }}% | |
Tips | {{ tips }}% | |
Total per person with taxes |
{{ totalTaxes().toFixed(2) }}€ |
(price * (taxes% / 100)) + price ({{ price }}€ * {{ taxes / 100 }}) + {{ price }}€
|
Total of all persons with taxes |
{{ totalPersons().toFixed(2) }}€ |
total dinner with taxes * persons {{ totalTaxes().toFixed(2) }}€ * {{persons}}
|
Total of all persons with tips |
{{ totalTips().toFixed(2) }}€ |
(total dinners * (tips% / 100)) + total dinners ({{ totalPersons().toFixed(2) }}€ * {{ tips / 100 }}) + {{ totalPersons().toFixed(2) }}€
|