perbaikan on possale string 1

This commit is contained in:
2026-04-18 22:45:08 +07:00
parent d912b1f63a
commit b1781625f2
2693 changed files with 366 additions and 6459 deletions

View File

@@ -329,7 +329,7 @@ class _LedgerPartyListScreenState extends State<LedgerPartyListScreen> {
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text("$currency${summaryDue.toStringAsFixed(0)}",
Text("$currency${formatWithSeparator(summaryDue)}",
style: _theme.textTheme.titleLarge?.copyWith(
fontWeight: FontWeight.w600,
)),
@@ -361,7 +361,7 @@ class _LedgerPartyListScreenState extends State<LedgerPartyListScreen> {
),
child: Column(
children: [
Text('$currency${totalCustomerDue.toStringAsFixed(2)}',
Text('$currency${formatWithSeparator(totalCustomerDue)}',
style: _theme.textTheme.titleLarge?.copyWith(
fontWeight: FontWeight.w600,
fontSize: 18,
@@ -391,7 +391,7 @@ class _LedgerPartyListScreenState extends State<LedgerPartyListScreen> {
child: Column(
children: [
Text(
'$currency${totalSupplierDue.toStringAsFixed(2)}',
'$currency${formatWithSeparator(totalSupplierDue)}',
style: _theme.textTheme.titleLarge?.copyWith(
fontWeight: FontWeight.w600,
fontSize: 18,
@@ -612,7 +612,7 @@ class _LedgerPartyListScreenState extends State<LedgerPartyListScreen> {
children: [
if (statusAmount != null)
Text(
'$currency${statusAmount.toStringAsFixed(0)}',
'$currency${formatWithSeparator(statusAmount)}',
style: _theme.textTheme.titleMedium?.copyWith(
fontWeight: FontWeight.w500,
),