feat: rename invoice (RE-) to order confirmation (BE-) throughout the application
All checks were successful
Staging Build / build (push) Successful in 2m42s

This commit is contained in:
DanielS
2026-06-25 22:43:17 +02:00
parent 52f2a78753
commit 16fb713665
7 changed files with 11 additions and 11 deletions

View File

@@ -182,7 +182,7 @@ export function OrdersTable({ initialOrders }: OrdersTableProps) {
</Button>
</div>
) : (
<span className="text-xs text-slate-500 italic">Keine Rechnung</span>
<span className="text-xs text-slate-500 italic">Keine Bestätigung</span>
)}
</TableCell>
</TableRow>

View File

@@ -117,10 +117,10 @@ export const InvoicePDF = ({ order, orderSnapshot, customer }: any) => {
</View>
</View>
<Text style={styles.title}>Bestellbestätigung / Rechnung</Text>
<Text style={styles.title}>Bestellbestätigung</Text>
<View style={styles.section}>
<Text style={styles.label}>Rechnungsempfänger</Text>
<Text style={styles.label}>Besteller / Kunde</Text>
<Text>{customer.company_name}</Text>
<Text>{customer.first_name} {customer.last_name}</Text>
<Text>{customer.address}</Text>