aggiunta scelta business o privato
This commit is contained in:
@@ -64,11 +64,17 @@ class SharedCustomerSection extends StatelessWidget {
|
||||
if (hasCustomer) ...[
|
||||
const SizedBox(width: 12),
|
||||
IconButton(
|
||||
onPressed: () => context.pushNamed(
|
||||
Routes.customerForm,
|
||||
pathParameters: {'id': customer!.id!},
|
||||
extra: customer,
|
||||
),
|
||||
onPressed: () async {
|
||||
final updatedCustomer = await context.pushNamed(
|
||||
Routes.customerForm,
|
||||
pathParameters: {'id': customer!.id!},
|
||||
extra: customer,
|
||||
);
|
||||
if (updatedCustomer != null &&
|
||||
updatedCustomer is CustomerModel) {
|
||||
onCustomerSelected(updatedCustomer);
|
||||
}
|
||||
},
|
||||
icon: const Icon(Icons.edit),
|
||||
),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user