fix for quote and operations addition

This commit is contained in:
Arseni
2026-03-13 16:07:22 +03:00
parent 34a7edd50c
commit 530432e3f8
13 changed files with 200 additions and 359 deletions

View File

@@ -17,7 +17,7 @@ class OperationItem {
final PaymentMethod? paymentMethod;
final String name;
final DateTime date;
final String comment;
// final String comment;
OperationItem({
required this.status,
@@ -34,6 +34,6 @@ class OperationItem {
this.paymentMethod,
required this.name,
required this.date,
required this.comment,
// required this.comment,
});
}