|
|
@@ -288,7 +288,7 @@ class _ExpenseDetailReportPageState
|
|
|
child: _statCard(
|
|
|
l10n.get('statTransferredToPmtAmount'),
|
|
|
'¥${summary.transferredAmount.toStringAsFixed(2)}',
|
|
|
- colors.amountPrimary,
|
|
|
+ colors.textPrimary,
|
|
|
),
|
|
|
),
|
|
|
],
|
|
|
@@ -300,7 +300,7 @@ class _ExpenseDetailReportPageState
|
|
|
child: _statCard(
|
|
|
l10n.get('statApprovedAmount'),
|
|
|
'¥${summary.approvedAmount.toStringAsFixed(2)}',
|
|
|
- colors.amountPrimary,
|
|
|
+ colors.success,
|
|
|
),
|
|
|
),
|
|
|
],
|
|
|
@@ -749,7 +749,7 @@ class _ExpenseDetailReportPageState
|
|
|
TDTableCol(
|
|
|
title: l10n.get('date'),
|
|
|
colKey: 'billDate',
|
|
|
- width: 90,
|
|
|
+ width: 100,
|
|
|
),
|
|
|
TDTableCol(
|
|
|
title: l10n.get('expenseAmount'),
|
|
|
@@ -794,7 +794,7 @@ class _ExpenseDetailReportPageState
|
|
|
TDTableCol(
|
|
|
title: l10n.get('transferStatus'),
|
|
|
colKey: 'isTransferred',
|
|
|
- width: 85,
|
|
|
+ width: 90,
|
|
|
align: TDTableColAlign.center,
|
|
|
cellBuilder: (context, rowIndex) {
|
|
|
final transferred = tableData[rowIndex]['isTransferred'] as String;
|