perbaikan on possale string 1
This commit is contained in:
@@ -268,12 +268,12 @@ class StockListState extends ConsumerState<LowStock> {
|
||||
DataCell(
|
||||
onTap: () => navigateNextScreen(),
|
||||
Text(
|
||||
'$currency${formatPointNumber(lastStock?.productPurchasePrice ?? 0)}',
|
||||
'$currency${formatWithSeparator(lastStock?.productPurchasePrice ?? 0)}',
|
||||
style: theme.textTheme.bodyMedium?.copyWith())),
|
||||
DataCell(
|
||||
onTap: () => navigateNextScreen(),
|
||||
Text(
|
||||
'$currency${formatPointNumber(lastStock?.productSalePrice ?? 0)}',
|
||||
'$currency${formatWithSeparator(lastStock?.productSalePrice ?? 0)}',
|
||||
)),
|
||||
],
|
||||
);
|
||||
@@ -306,7 +306,7 @@ class StockListState extends ConsumerState<LowStock> {
|
||||
),
|
||||
),
|
||||
Text(
|
||||
'$currency${formatPointNumber(totalStockValue)}',
|
||||
'$currency${formatWithSeparator(totalStockValue)}',
|
||||
style: theme.textTheme.titleMedium?.copyWith(fontWeight: FontWeight.w600),
|
||||
),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user