perbaikan on possale string 1
This commit is contained in:
@@ -221,7 +221,7 @@ class _CustomerLedgerReportState extends ConsumerState<CustomerLedgerReport> {
|
||||
),
|
||||
),
|
||||
Text(
|
||||
'${_lang.due}: $currency${formatPointNumber(party.due ?? 0, addComma: true)}',
|
||||
'${_lang.due}: $currency${formatWithSeparator(party.due ?? 0)}',
|
||||
style: _theme.textTheme.titleSmall?.copyWith(
|
||||
fontWeight: FontWeight.w500,
|
||||
),
|
||||
@@ -251,7 +251,7 @@ class _CustomerLedgerReportState extends ConsumerState<CustomerLedgerReport> {
|
||||
style: _theme.textTheme.bodyMedium,
|
||||
),
|
||||
Text(
|
||||
'${_lang.paidAmount} : $currency${formatPointNumber(party.totalSalePaid ?? 0, addComma: true)}',
|
||||
'${_lang.paidAmount} : $currency${formatWithSeparator(party.totalSalePaid ?? 0)}',
|
||||
style: _theme.textTheme.bodyMedium,
|
||||
),
|
||||
],
|
||||
|
||||
@@ -232,7 +232,7 @@ class _CustomerLedgerReportState extends ConsumerState<SupplierLedger> {
|
||||
),
|
||||
),
|
||||
Text(
|
||||
'${_lang.due}: $currency${formatPointNumber(party.due ?? 0, addComma: true)}',
|
||||
'${_lang.due}: $currency${formatWithSeparator(party.due ?? 0)}',
|
||||
style: _theme.textTheme.titleSmall?.copyWith(
|
||||
fontWeight: FontWeight.w500,
|
||||
),
|
||||
@@ -262,7 +262,7 @@ class _CustomerLedgerReportState extends ConsumerState<SupplierLedger> {
|
||||
style: _theme.textTheme.bodyMedium,
|
||||
),
|
||||
Text(
|
||||
'${_lang.paidAmount} : $currency${formatPointNumber(party.totalPurchasePaid ?? 0, addComma: true)}',
|
||||
'${_lang.paidAmount} : $currency${formatWithSeparator(party.totalPurchasePaid ?? 0)}',
|
||||
style: _theme.textTheme.bodyMedium,
|
||||
),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user