bill product flow bug fixes

This commit is contained in:
2025-11-28 12:18:40 +02:00
parent 556a83fa0c
commit 2313d72eab
13 changed files with 959 additions and 46 deletions

View File

@@ -583,7 +583,8 @@ class _PayScreenState extends State<PayScreen> with TickerProviderStateMixin {
...controller.model.products.map(
(e) => DropdownMenuItem<String>(
value: e.uid,
child: Text(e.displayName),
child: Text('${e.displayName} - '
'${transactionController.model.formData.debitCurrency}${e.defaultAmount}'),
),
),
],