perbaikan on possale string 1
This commit is contained in:
@@ -239,8 +239,8 @@ class _CustomerDetailsState extends ConsumerState<CustomerDetails> {
|
||||
lang.S.of(context).type: widget.party.type,
|
||||
lang.S.of(context).phoneNumber: widget.party.phone,
|
||||
lang.S.of(context).email: widget.party.email ?? "n/a",
|
||||
lang.S.of(context).dueBalance: "$currency${(widget.party.due ?? "0")}",
|
||||
lang.S.of(context).walletBalance: "$currency${(widget.party.wallet ?? "0")}",
|
||||
lang.S.of(context).dueBalance: "$currency${formatWithSeparator(widget.party.due ?? 0)}",
|
||||
lang.S.of(context).walletBalance: "$currency${formatWithSeparator(widget.party.wallet ?? 0)}",
|
||||
lang.S.of(context).address: widget.party.address ?? "n/a",
|
||||
// "Party Credit Limit": widget.party.creditLimit ?? "0",
|
||||
// "Party GST": widget.party.creditLimit ?? "0",
|
||||
|
||||
@@ -392,7 +392,7 @@ class _PartyListScreenState extends State<PartyListScreen> {
|
||||
),
|
||||
const SizedBox(width: 4),
|
||||
Text(
|
||||
statusAmount != null ? '$currency${statusAmount.toStringAsFixed(2)}' : '',
|
||||
statusAmount != null ? '$currency${formatWithSeparator(statusAmount)}' : '',
|
||||
style: _theme.textTheme.bodyMedium?.copyWith(fontSize: 16.0),
|
||||
),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user