Compare commits
2 Commits
b60ce96dd7
...
22bb86f052
| Author | SHA1 | Date | |
|---|---|---|---|
| 22bb86f052 | |||
| fc850795c9 |
@@ -90,6 +90,32 @@ class _SharedAttachmentsSectionState extends State<SharedAttachmentsSection> {
|
|||||||
|
|
||||||
// --- SELEZIONE FILE DAL PC/TELEFONO ---
|
// --- SELEZIONE FILE DAL PC/TELEFONO ---
|
||||||
Future<void> _pickFiles() async {
|
Future<void> _pickFiles() async {
|
||||||
|
final attachmentsBloc = context.read<AttachmentsBloc>();
|
||||||
|
String? targetId = attachmentsBloc.state.parentId;
|
||||||
|
|
||||||
|
// 🥷 SE L'ID NON C'È (Nuova Operazione), FORZIAMO IL SALVATAGGIO PREVENTIVO!
|
||||||
|
if (targetId == null || targetId.isEmpty) {
|
||||||
|
if (widget.onGenerateIdForQr != null) {
|
||||||
|
ScaffoldMessenger.of(context).showSnackBar(
|
||||||
|
const SnackBar(
|
||||||
|
content: Text('Salvataggio rapido scheda per allegati... ⏳'),
|
||||||
|
duration: Duration(seconds: 1),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
// Chiamiamo la funzione passata dal TicketForm/OperationForm
|
||||||
|
targetId = await widget.onGenerateIdForQr!();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Se il salvataggio fallisce (es. form non valido), ci fermiamo per evitare file orfani
|
||||||
|
if (targetId == null || targetId.isEmpty) return;
|
||||||
|
|
||||||
|
// Comunichiamo immediatamente al BLoC che l'entità padre è stata salvata e ha un nuovo ID.
|
||||||
|
// Questo eviterà che i file finiscano nei `localFiles` temporanei.
|
||||||
|
attachmentsBloc.add(ParentEntitySavedEvent(targetId));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ora che abbiamo la certezza matematica di avere un targetId, apriamo il picker
|
||||||
final result = await FilePicker.pickFiles(
|
final result = await FilePicker.pickFiles(
|
||||||
allowMultiple: true,
|
allowMultiple: true,
|
||||||
type: FileType.custom,
|
type: FileType.custom,
|
||||||
@@ -98,8 +124,8 @@ class _SharedAttachmentsSectionState extends State<SharedAttachmentsSection> {
|
|||||||
);
|
);
|
||||||
|
|
||||||
if (result != null && mounted) {
|
if (result != null && mounted) {
|
||||||
// MAGIA: Passiamo direttamente la lista di PlatformFile al tuo BLoC!
|
// Ora il BLoC eseguirà l'ambiente di "Upload immediato" (Bivio 2) perché ha l'ID aggiornato!
|
||||||
context.read<AttachmentsBloc>().add(AddAttachmentsEvent(result.files));
|
attachmentsBloc.add(AddAttachmentsEvent(result.files));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -111,69 +111,6 @@ class OperationsRepository {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// --- RECUPERO PAGINATO CON FILTRI E JOIN ---
|
|
||||||
/* Future<List<OperationModel>> fetchOperations({
|
|
||||||
required String companyId,
|
|
||||||
String? storeId,
|
|
||||||
String? staffId,
|
|
||||||
String? providerId,
|
|
||||||
required int offset,
|
|
||||||
int limit = 50,
|
|
||||||
String? searchTerm,
|
|
||||||
DateTimeRange? dateRange,
|
|
||||||
}) async {
|
|
||||||
try {
|
|
||||||
var query = _supabase
|
|
||||||
.from(Tables.operations)
|
|
||||||
.select('''
|
|
||||||
*,
|
|
||||||
${Tables.customers}(*),
|
|
||||||
${Tables.stores}(name),
|
|
||||||
${Tables.providers}(name),
|
|
||||||
${Tables.models}(name_with_brand),
|
|
||||||
${Tables.staffMembers}(name),
|
|
||||||
${Tables.attachments}(*)
|
|
||||||
''')
|
|
||||||
.eq('company_id', companyId);
|
|
||||||
|
|
||||||
// Filtro Range Date
|
|
||||||
if (dateRange != null) {
|
|
||||||
query = query
|
|
||||||
.gte('created_at', dateRange.start.toIso8601String())
|
|
||||||
.lte('created_at', dateRange.end.toIso8601String());
|
|
||||||
}
|
|
||||||
|
|
||||||
if (storeId != null) {
|
|
||||||
query = query.or('store_id.eq.$storeId,store_id.is.null');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (staffId != null) {
|
|
||||||
query = query.or('staff_id.eq.$staffId,staff_id.is.null');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (providerId != null) {
|
|
||||||
query = query.or('provider_id.eq.$providerId,provider_id.is.null');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (searchTerm != null && searchTerm.isNotEmpty) {
|
|
||||||
// Filtra sui campi della tabella principale O su quelli della tabella joinata
|
|
||||||
query = query.or(
|
|
||||||
'reference.ilike.%$searchTerm%,note.ilike.%$searchTerm%,customer.name.ilike.%$searchTerm%',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
final response = await query
|
|
||||||
.order('created_at', ascending: false)
|
|
||||||
.range(offset, offset + limit - 1);
|
|
||||||
|
|
||||||
return (response as List)
|
|
||||||
.map((map) => OperationModel.fromMap(map))
|
|
||||||
.toList();
|
|
||||||
} catch (e) {
|
|
||||||
throw Exception('$e');
|
|
||||||
}
|
|
||||||
} */
|
|
||||||
|
|
||||||
Stream<List<Map<String, dynamic>>> watchStoreOperations({
|
Stream<List<Map<String, dynamic>>> watchStoreOperations({
|
||||||
required String storeId,
|
required String storeId,
|
||||||
required int limit,
|
required int limit,
|
||||||
|
|||||||
Reference in New Issue
Block a user