Skip to content

Commit

Permalink
Set foodorder tax rate to 0 (#3751)
Browse files Browse the repository at this point in the history
Closes #3750
  • Loading branch information
DeD1rk authored Jul 10, 2024
1 parent 5c04b0b commit 9f366ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/moneybirdsynchronization/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def period_for_payable_model(obj) -> str | None:


def tax_rate_for_payable_model(obj) -> int | None:
if isinstance(obj, Registration | Renewal):
if isinstance(obj, Registration | Renewal | FoodOrder):
return settings.MONEYBIRD_ZERO_TAX_RATE_ID
return None

Expand Down

0 comments on commit 9f366ea

Please sign in to comment.