feat(POS-006): completed feature

This commit is contained in:
chattie
2026-08-22 13:39:11 +02:00
parent 915fbe0ba9
commit 25e4e5b622
24 changed files with 448 additions and 62 deletions

View File

@@ -0,0 +1,4 @@
/** Format cents as EUR string. */
export function formatPrice(cents: number): string {
return `${(cents / 100).toFixed(2)}`;
}