Merged with dev

This commit is contained in:
Abdullah Alassaf
2025-04-16 04:00:07 +03:00
61 changed files with 2783 additions and 667 deletions

View File

@ -70,8 +70,9 @@ class IfContainer extends StatelessWidget {
'1G',
'2G',
'3G',
'WPS'
'GW',
'WPS',
'GW',
'CPS',
].contains(state.ifItems[index]['productType'])) {
context
.read<RoutineBloc>()
@ -121,7 +122,7 @@ class IfContainer extends StatelessWidget {
if (result != null) {
context.read<RoutineBloc>().add(AddToIfContainer(mutableData, false));
} else if (!['AC', '1G', '2G', '3G', 'WPS', 'GW']
} else if (!['AC', '1G', '2G', '3G', 'WPS', 'GW', 'CPS']
.contains(mutableData['productType'])) {
context.read<RoutineBloc>().add(AddToIfContainer(mutableData, false));
}