docs format updated

This commit is contained in:
Stephan D
2026-03-13 01:28:51 +01:00
parent b4eb1437f6
commit f1840690e1
54 changed files with 677 additions and 195 deletions

View File

@@ -6,11 +6,13 @@ import 'package:pweb/pages/report/table/row.dart';
class OperationsTable extends StatelessWidget {
final String paymentRef;
final List<OperationItem> operations;
final bool showFileNameColumn;
const OperationsTable({
super.key,
required this.paymentRef,
required this.operations,
required this.showFileNameColumn,
});
@@ -49,7 +51,7 @@ class OperationsTable extends StatelessWidget {
});
// Use the DataRow built by OperationRow and extract its cells
final row = OperationRow.build(op, context);
final row = OperationRow.build(paymentRef, op, context);
return DataRow.byIndex(
index: index,
color: color,