Implement order cancellation feature in OrdersTab: Added functionality to confirm and cancel orders, including a confirmation dialog. Enhanced payment method display in OrderDetailsDialog and updated VAT calculations. Improved localization for order-related messages across multiple languages.

This commit is contained in:
sebseb7
2025-07-17 21:35:00 +02:00
parent 64048e6d0b
commit cb8ce69903
9 changed files with 185 additions and 53 deletions

View File

@@ -19,6 +19,10 @@ export default {
"actions": "Aktionen",
"viewDetails": "Details anzeigen"
},
"tooltips": {
"viewDetails": "Details anzeigen",
"cancelOrder": "Bestellung stornieren"
},
"noOrders": "Sie haben noch keine Bestellungen aufgegeben.",
"details": {
"title": "Bestelldetails: {{orderId}}",
@@ -35,5 +39,11 @@ export default {
"total": "Gesamt",
"cancelOrder": "Bestellung stornieren"
},
"cancelConfirm": {
"title": "Bestellung stornieren",
"message": "Sind Sie sicher, dass Sie diese Bestellung stornieren möchten?",
"confirm": "Stornieren",
"cancelling": "Wird storniert..."
},
"processing": "Bestellung wird abgeschlossen..."
};