mod add Verkauf
This commit is contained in:
@@ -112,21 +112,21 @@ class HomeController extends GetxController {
|
||||
confirmTextColor: Colors.white,
|
||||
cancelTextColor: Colors.red,
|
||||
buttonColor: Colors.blue,
|
||||
onCancel: () async {
|
||||
// Handle cancel action
|
||||
await _loadFromNotionKantine();
|
||||
onCancel: () {
|
||||
Get.back();
|
||||
},
|
||||
onConfirm: () {
|
||||
onConfirm: () async {
|
||||
// Handle adding the receipt
|
||||
// Handle cancel action
|
||||
await _loadFromNotionKantine();
|
||||
print('Beleg Name: ${newBelegName.value}');
|
||||
print('Beleg Datum: ${newBelegDate.value}');
|
||||
print('Beleg Betrag: ${newBelegBetrag.value}');
|
||||
Get.back();
|
||||
_saveData();
|
||||
},
|
||||
);
|
||||
update();
|
||||
_saveData();
|
||||
}
|
||||
|
||||
Map<String, dynamic> currentBodyItem(
|
||||
|
||||
Reference in New Issue
Block a user