F3.1 Android: crear flujo estructural intuitivo de inspección
This commit is contained in:
@@ -0,0 +1,738 @@
|
|||||||
|
package com.korexlabs.dhinspeccion.ui
|
||||||
|
|
||||||
|
import android.Manifest
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.pm.PackageManager
|
||||||
|
import android.net.Uri
|
||||||
|
import android.os.Environment
|
||||||
|
import androidx.activity.compose.rememberLauncherForActivityResult
|
||||||
|
import androidx.activity.result.contract.ActivityResultContracts
|
||||||
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.foundation.layout.Box
|
||||||
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.Spacer
|
||||||
|
import androidx.compose.foundation.layout.fillMaxSize
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.height
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.foundation.layout.width
|
||||||
|
import androidx.compose.foundation.lazy.LazyColumn
|
||||||
|
import androidx.compose.foundation.lazy.LazyRow
|
||||||
|
import androidx.compose.foundation.lazy.items
|
||||||
|
import androidx.compose.foundation.rememberScrollState
|
||||||
|
import androidx.compose.foundation.text.KeyboardOptions
|
||||||
|
import androidx.compose.foundation.verticalScroll
|
||||||
|
import androidx.compose.material3.AssistChip
|
||||||
|
import androidx.compose.material3.Button
|
||||||
|
import androidx.compose.material3.Card
|
||||||
|
import androidx.compose.material3.CardDefaults
|
||||||
|
import androidx.compose.material3.HorizontalDivider
|
||||||
|
import androidx.compose.material3.MaterialTheme
|
||||||
|
import androidx.compose.material3.OutlinedButton
|
||||||
|
import androidx.compose.material3.OutlinedTextField
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.LaunchedEffect
|
||||||
|
import androidx.compose.runtime.getValue
|
||||||
|
import androidx.compose.runtime.mutableStateMapOf
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.runtime.rememberCoroutineScope
|
||||||
|
import androidx.compose.runtime.saveable.rememberSaveable
|
||||||
|
import androidx.compose.runtime.setValue
|
||||||
|
import androidx.compose.ui.Alignment
|
||||||
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.platform.LocalContext
|
||||||
|
import androidx.compose.ui.text.font.FontWeight
|
||||||
|
import androidx.compose.ui.text.input.KeyboardType
|
||||||
|
import androidx.compose.ui.unit.dp
|
||||||
|
import androidx.core.content.ContextCompat
|
||||||
|
import androidx.core.content.FileProvider
|
||||||
|
import androidx.exifinterface.media.ExifInterface
|
||||||
|
import com.google.android.gms.location.LocationServices
|
||||||
|
import com.google.android.gms.location.Priority
|
||||||
|
import com.google.android.gms.tasks.CancellationTokenSource
|
||||||
|
import com.korexlabs.dhinspeccion.MainViewModel
|
||||||
|
import com.korexlabs.dhinspeccion.data.FieldAttributeDefinition
|
||||||
|
import com.korexlabs.dhinspeccion.data.FieldInventoryItem
|
||||||
|
import com.korexlabs.dhinspeccion.data.FieldType
|
||||||
|
import com.korexlabs.dhinspeccion.data.VisitDetail
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import kotlinx.coroutines.suspendCancellableCoroutine
|
||||||
|
import java.io.File
|
||||||
|
import java.time.Instant
|
||||||
|
import java.time.ZoneId
|
||||||
|
import java.time.format.DateTimeFormatter
|
||||||
|
import kotlin.coroutines.resume
|
||||||
|
import kotlin.coroutines.resumeWithException
|
||||||
|
|
||||||
|
private data class F3GeoSnapshot(
|
||||||
|
val latitude: Double,
|
||||||
|
val longitude: Double,
|
||||||
|
val accuracyM: Double?,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
fun F3VisitRoot(model: MainViewModel) {
|
||||||
|
var inventoryMode by rememberSaveable(model.visit?.id) { mutableStateOf(false) }
|
||||||
|
if (inventoryMode) {
|
||||||
|
F3FieldInventoryScreen(model, onBack = { inventoryMode = false })
|
||||||
|
} else {
|
||||||
|
F3VisitOverview(model, onInventory = { inventoryMode = true })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun F3VisitOverview(model: MainViewModel, onInventory: () -> Unit) {
|
||||||
|
val visit = model.visit ?: return
|
||||||
|
Column(
|
||||||
|
Modifier
|
||||||
|
.fillMaxSize()
|
||||||
|
.verticalScroll(rememberScrollState())
|
||||||
|
.padding(top = 28.dp, start = 16.dp, end = 16.dp, bottom = 30.dp),
|
||||||
|
verticalArrangement = Arrangement.spacedBy(12.dp),
|
||||||
|
) {
|
||||||
|
Row(
|
||||||
|
Modifier.fillMaxWidth(),
|
||||||
|
horizontalArrangement = Arrangement.SpaceBetween,
|
||||||
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
|
) {
|
||||||
|
OutlinedButton(onClick = { model.closeVisitView() }) { Text("Volver") }
|
||||||
|
Text(statusLabel(visit.status), fontWeight = FontWeight.Bold)
|
||||||
|
}
|
||||||
|
Text(visit.code, style = MaterialTheme.typography.headlineMedium, fontWeight = FontWeight.Bold)
|
||||||
|
Text("${visit.operatorCompany?.name ?: "Sin operadora"} · ${visit.operationalArea?.name ?: "Sin área"}")
|
||||||
|
visit.plannedStartAt?.let {
|
||||||
|
Text("Planificada: ${f3ShortDate(it)}", style = MaterialTheme.typography.bodySmall)
|
||||||
|
}
|
||||||
|
visit.instructions?.takeIf { it.isNotBlank() }?.let {
|
||||||
|
Card(Modifier.fillMaxWidth()) {
|
||||||
|
Column(Modifier.padding(12.dp)) {
|
||||||
|
Text("Instrucciones", fontWeight = FontWeight.Bold)
|
||||||
|
Text(it)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
F3MessageStrip(model)
|
||||||
|
|
||||||
|
if (visit.status == "PLANNED") {
|
||||||
|
Card(
|
||||||
|
Modifier.fillMaxWidth(),
|
||||||
|
colors = CardDefaults.cardColors(containerColor = MaterialTheme.colorScheme.primaryContainer),
|
||||||
|
) {
|
||||||
|
Column(Modifier.padding(14.dp), verticalArrangement = Arrangement.spacedBy(8.dp)) {
|
||||||
|
Text("La inspección todavía no comenzó", fontWeight = FontWeight.Bold)
|
||||||
|
Text("Iniciarla registra fecha/hora real y tu usuario como actor de campo.")
|
||||||
|
Button(
|
||||||
|
onClick = { model.startVisit() },
|
||||||
|
enabled = !model.busy,
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
) { Text(if (model.busy) "Iniciando…" else "Iniciar inspección") }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (visit.status == "IN_PROGRESS") {
|
||||||
|
Button(onClick = onInventory, modifier = Modifier.fillMaxWidth()) {
|
||||||
|
Text("Abrir Inventario de campo")
|
||||||
|
}
|
||||||
|
} else if (visit.status == "PLANNED") {
|
||||||
|
Text(
|
||||||
|
"Primero iniciá la inspección para habilitar altas, fotografías y Hallazgos.",
|
||||||
|
style = MaterialTheme.typography.bodySmall,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
F3ChecklistCard(visit)
|
||||||
|
|
||||||
|
Text("Inventario planificado", style = MaterialTheme.typography.titleMedium, fontWeight = FontWeight.Bold)
|
||||||
|
if (visit.planningAssets.none { it.included }) {
|
||||||
|
Text("Sin elementos planificados.")
|
||||||
|
}
|
||||||
|
visit.planningAssets.filter { it.included }.forEach { asset ->
|
||||||
|
Card(Modifier.fillMaxWidth()) {
|
||||||
|
Column(Modifier.padding(10.dp)) {
|
||||||
|
Text(asset.name, fontWeight = FontWeight.SemiBold)
|
||||||
|
Text("${asset.code} · ${asset.typeName.orEmpty()}", style = MaterialTheme.typography.bodySmall)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun F3ChecklistCard(visit: VisitDetail) {
|
||||||
|
val checklist = visit.checklist
|
||||||
|
Card(Modifier.fillMaxWidth()) {
|
||||||
|
Column(Modifier.padding(12.dp), verticalArrangement = Arrangement.spacedBy(6.dp)) {
|
||||||
|
Text("Antecedentes antes de salir", fontWeight = FontWeight.Bold)
|
||||||
|
Text("Vencidos empresa: ${checklist.companyOverdue} · Verificaciones vencidas: ${checklist.verificationOverdue}")
|
||||||
|
Text("Antecedentes: ${checklist.antecedents} · Próximos controles: ${checklist.upcomingControls}")
|
||||||
|
if (checklist.stale) {
|
||||||
|
Text("El checklist requiere revisión/actualización.", color = MaterialTheme.colorScheme.error)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun F3FieldInventoryScreen(model: MainViewModel, onBack: () -> Unit) {
|
||||||
|
val context = LocalContext.current
|
||||||
|
val scope = rememberCoroutineScope()
|
||||||
|
val visit = model.visit ?: return
|
||||||
|
|
||||||
|
var search by rememberSaveable(visit.id) { mutableStateOf("") }
|
||||||
|
var showCreate by rememberSaveable(visit.id) { mutableStateOf(false) }
|
||||||
|
var parentId by rememberSaveable(visit.id) { mutableStateOf<String?>(null) }
|
||||||
|
var parentLabel by rememberSaveable(visit.id) { mutableStateOf("Área de la inspección") }
|
||||||
|
var name by rememberSaveable(visit.id) { mutableStateOf("") }
|
||||||
|
var commonName by rememberSaveable(visit.id) { mutableStateOf("") }
|
||||||
|
var selectedTypeId by rememberSaveable(visit.id) { mutableStateOf<String?>(null) }
|
||||||
|
var selectedFamilyId by rememberSaveable(visit.id) { mutableStateOf<String?>(null) }
|
||||||
|
val attributeValues = remember { mutableStateMapOf<String, String>() }
|
||||||
|
|
||||||
|
var mergeSearch by rememberSaveable(visit.id) { mutableStateOf("") }
|
||||||
|
var mergeCandidateId by rememberSaveable(visit.id) { mutableStateOf<String?>(null) }
|
||||||
|
var mergeReason by rememberSaveable(visit.id) { mutableStateOf("") }
|
||||||
|
|
||||||
|
LaunchedEffect(visit.id) {
|
||||||
|
model.searchInventory("")
|
||||||
|
model.loadFieldTypes(null)
|
||||||
|
}
|
||||||
|
LaunchedEffect(model.fieldTypes) {
|
||||||
|
if (model.fieldTypes.none { it.id == selectedTypeId }) {
|
||||||
|
selectedTypeId = model.fieldTypes.firstOrNull()?.id
|
||||||
|
selectedFamilyId = null
|
||||||
|
attributeValues.clear()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val selectedType = model.fieldTypes.firstOrNull { it.id == selectedTypeId }
|
||||||
|
val selectedFamily = selectedType?.families?.firstOrNull { it.id == selectedFamilyId }
|
||||||
|
|
||||||
|
fun resetCreateForm() {
|
||||||
|
name = ""
|
||||||
|
commonName = ""
|
||||||
|
selectedFamilyId = null
|
||||||
|
attributeValues.clear()
|
||||||
|
}
|
||||||
|
|
||||||
|
val createWithLocation: () -> Unit = {
|
||||||
|
val type = selectedType
|
||||||
|
if (type != null) {
|
||||||
|
scope.launch {
|
||||||
|
runCatching { currentF3Geo(context) }
|
||||||
|
.onSuccess { geo ->
|
||||||
|
model.createFieldAsset(
|
||||||
|
type = type,
|
||||||
|
parentId = parentId,
|
||||||
|
familyId = selectedFamilyId,
|
||||||
|
name = name,
|
||||||
|
commonName = commonName,
|
||||||
|
attributes = buildF3Attributes(type, attributeValues),
|
||||||
|
latitude = geo.latitude,
|
||||||
|
longitude = geo.longitude,
|
||||||
|
accuracyM = geo.accuracyM,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
val locationPermissionLauncher = rememberLauncherForActivityResult(
|
||||||
|
ActivityResultContracts.RequestMultiplePermissions(),
|
||||||
|
) { result ->
|
||||||
|
val allowed = result[Manifest.permission.ACCESS_FINE_LOCATION] == true ||
|
||||||
|
result[Manifest.permission.ACCESS_COARSE_LOCATION] == true
|
||||||
|
if (allowed) createWithLocation()
|
||||||
|
}
|
||||||
|
|
||||||
|
var pendingPhotoFile by remember { mutableStateOf<File?>(null) }
|
||||||
|
var pendingPhotoGeo by remember { mutableStateOf<F3GeoSnapshot?>(null) }
|
||||||
|
val takePicture = rememberLauncherForActivityResult(ActivityResultContracts.TakePicture()) { success ->
|
||||||
|
val file = pendingPhotoFile
|
||||||
|
val geo = pendingPhotoGeo
|
||||||
|
if (success && file != null && geo != null) {
|
||||||
|
runCatching { writeF3Exif(file, geo) }
|
||||||
|
model.uploadFieldPhoto(file, geo.latitude, geo.longitude, geo.accuracyM)
|
||||||
|
}
|
||||||
|
pendingPhotoFile = null
|
||||||
|
pendingPhotoGeo = null
|
||||||
|
}
|
||||||
|
val beginPhoto: () -> Unit = {
|
||||||
|
scope.launch {
|
||||||
|
runCatching { currentF3Geo(context) }.onSuccess { geo ->
|
||||||
|
val (file, uri) = newF3Photo(context)
|
||||||
|
pendingPhotoFile = file
|
||||||
|
pendingPhotoGeo = geo
|
||||||
|
takePicture.launch(uri)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
val photoPermissionLauncher = rememberLauncherForActivityResult(
|
||||||
|
ActivityResultContracts.RequestMultiplePermissions(),
|
||||||
|
) { result ->
|
||||||
|
val camera = result[Manifest.permission.CAMERA] == true || f3HasPermission(context, Manifest.permission.CAMERA)
|
||||||
|
val location = result[Manifest.permission.ACCESS_FINE_LOCATION] == true ||
|
||||||
|
result[Manifest.permission.ACCESS_COARSE_LOCATION] == true || f3HasLocation(context)
|
||||||
|
if (camera && location) beginPhoto()
|
||||||
|
}
|
||||||
|
|
||||||
|
val selectedCapture = model.selectedFieldAsset
|
||||||
|
val mergeSource = selectedCapture?.takeIf {
|
||||||
|
it.capture.captureRequired &&
|
||||||
|
it.asset.type?.let { type -> f3TypeCode(type) in setOf("instalacion", "subinstalacion") } == true
|
||||||
|
}
|
||||||
|
val mergeCandidates = remember(model.inventory, mergeSource) {
|
||||||
|
if (mergeSource == null) emptyList() else model.inventory.filter { candidate ->
|
||||||
|
candidate.id != mergeSource.asset.id &&
|
||||||
|
candidate.informationStatus != "INACTIVE" &&
|
||||||
|
candidate.type?.id == mergeSource.asset.type?.id &&
|
||||||
|
candidate.parent?.id == mergeSource.asset.parent?.id &&
|
||||||
|
!candidate.captureRequired
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Column(Modifier.fillMaxSize().padding(top = 28.dp)) {
|
||||||
|
Row(
|
||||||
|
Modifier.fillMaxWidth().padding(horizontal = 16.dp, vertical = 8.dp),
|
||||||
|
horizontalArrangement = Arrangement.SpaceBetween,
|
||||||
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
|
) {
|
||||||
|
OutlinedButton(onClick = onBack) { Text("Volver") }
|
||||||
|
Column(horizontalAlignment = Alignment.End) {
|
||||||
|
Text("Inventario de campo", style = MaterialTheme.typography.titleLarge, fontWeight = FontWeight.Bold)
|
||||||
|
Text("Área → Yacimiento → Instalación → Subinstalación", style = MaterialTheme.typography.bodySmall)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Column(Modifier.padding(horizontal = 16.dp)) { F3MessageStrip(model) }
|
||||||
|
|
||||||
|
if (selectedCapture != null) {
|
||||||
|
F3CaptureCard(
|
||||||
|
detailName = selectedCapture.asset.name,
|
||||||
|
captureRequired = selectedCapture.capture.captureRequired,
|
||||||
|
gps = selectedCapture.capture.creationGpsCaptured,
|
||||||
|
photos = selectedCapture.capture.fieldPhotoCount,
|
||||||
|
ready = selectedCapture.capture.readyForFinding,
|
||||||
|
onPhoto = {
|
||||||
|
val permissions = arrayOf(
|
||||||
|
Manifest.permission.CAMERA,
|
||||||
|
Manifest.permission.ACCESS_FINE_LOCATION,
|
||||||
|
Manifest.permission.ACCESS_COARSE_LOCATION,
|
||||||
|
)
|
||||||
|
if (f3HasPermission(context, Manifest.permission.CAMERA) && f3HasLocation(context)) beginPhoto()
|
||||||
|
else photoPermissionLauncher.launch(permissions)
|
||||||
|
},
|
||||||
|
onClose = { model.clearSelectedFieldAsset() },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mergeSource != null) {
|
||||||
|
Card(
|
||||||
|
Modifier.fillMaxWidth().padding(horizontal = 16.dp, vertical = 6.dp),
|
||||||
|
colors = CardDefaults.cardColors(containerColor = MaterialTheme.colorScheme.secondaryContainer),
|
||||||
|
) {
|
||||||
|
Column(Modifier.padding(12.dp), verticalArrangement = Arrangement.spacedBy(8.dp)) {
|
||||||
|
Text("¿Lo acabás de crear y ya existía?", fontWeight = FontWeight.Bold)
|
||||||
|
Text(
|
||||||
|
"Podés fusionar esta alta de campo con el registro existente. La ficha nueva no se borra: queda como alias histórico con fecha, inspector e inspección.",
|
||||||
|
style = MaterialTheme.typography.bodySmall,
|
||||||
|
)
|
||||||
|
Row(Modifier.fillMaxWidth(), verticalAlignment = Alignment.CenterVertically) {
|
||||||
|
OutlinedTextField(
|
||||||
|
value = mergeSearch,
|
||||||
|
onValueChange = { mergeSearch = it },
|
||||||
|
label = { Text("Buscar posible duplicado") },
|
||||||
|
modifier = Modifier.weight(1f),
|
||||||
|
singleLine = true,
|
||||||
|
)
|
||||||
|
Spacer(Modifier.width(8.dp))
|
||||||
|
OutlinedButton(onClick = {
|
||||||
|
mergeCandidateId = null
|
||||||
|
model.searchInventory(mergeSearch, mergeSource.asset.parent?.id)
|
||||||
|
}) { Text("Buscar") }
|
||||||
|
}
|
||||||
|
if (mergeCandidates.isEmpty()) {
|
||||||
|
Text("No hay coincidencias compatibles en esta búsqueda.", style = MaterialTheme.typography.bodySmall)
|
||||||
|
} else {
|
||||||
|
mergeCandidates.take(8).forEach { candidate ->
|
||||||
|
AssistChip(
|
||||||
|
onClick = { mergeCandidateId = candidate.id },
|
||||||
|
label = {
|
||||||
|
Text(
|
||||||
|
if (mergeCandidateId == candidate.id) "✓ ${candidate.code} · ${candidate.name}"
|
||||||
|
else "${candidate.code} · ${candidate.name}",
|
||||||
|
)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
OutlinedTextField(
|
||||||
|
value = mergeReason,
|
||||||
|
onValueChange = { mergeReason = it },
|
||||||
|
label = { Text("Motivo de la fusión") },
|
||||||
|
minLines = 2,
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
)
|
||||||
|
Button(
|
||||||
|
onClick = {
|
||||||
|
val target = mergeCandidateId ?: return@Button
|
||||||
|
model.mergeCreatedFieldAsset(target, mergeReason)
|
||||||
|
},
|
||||||
|
enabled = mergeCandidateId != null && mergeReason.trim().length >= 8 && !model.busy,
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
) { Text("Fusionar y conservar el registro existente") }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Row(
|
||||||
|
Modifier.fillMaxWidth().padding(horizontal = 16.dp),
|
||||||
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
|
) {
|
||||||
|
OutlinedTextField(
|
||||||
|
value = search,
|
||||||
|
onValueChange = { search = it },
|
||||||
|
label = { Text("Buscar por nombre o código") },
|
||||||
|
modifier = Modifier.weight(1f),
|
||||||
|
singleLine = true,
|
||||||
|
)
|
||||||
|
Spacer(Modifier.width(8.dp))
|
||||||
|
Button(onClick = { model.searchInventory(search) }, enabled = !model.busy) { Text("Buscar") }
|
||||||
|
}
|
||||||
|
|
||||||
|
Row(
|
||||||
|
Modifier.fillMaxWidth().padding(16.dp),
|
||||||
|
horizontalArrangement = Arrangement.SpaceBetween,
|
||||||
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
|
) {
|
||||||
|
Column {
|
||||||
|
Text("Alta en campo", fontWeight = FontWeight.Bold)
|
||||||
|
Text("Padre: $parentLabel", style = MaterialTheme.typography.bodySmall)
|
||||||
|
}
|
||||||
|
OutlinedButton(onClick = {
|
||||||
|
showCreate = !showCreate
|
||||||
|
if (showCreate) model.loadFieldTypes(parentId)
|
||||||
|
}) { Text(if (showCreate) "Ocultar" else "Agregar") }
|
||||||
|
}
|
||||||
|
|
||||||
|
if (showCreate) {
|
||||||
|
Column(
|
||||||
|
Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(horizontal = 16.dp)
|
||||||
|
.verticalScroll(rememberScrollState())
|
||||||
|
.weight(1f, fill = false),
|
||||||
|
verticalArrangement = Arrangement.spacedBy(10.dp),
|
||||||
|
) {
|
||||||
|
if (parentId != null) {
|
||||||
|
OutlinedButton(onClick = {
|
||||||
|
parentId = null
|
||||||
|
parentLabel = "Área de la inspección"
|
||||||
|
resetCreateForm()
|
||||||
|
selectedTypeId = null
|
||||||
|
model.loadFieldTypes(null)
|
||||||
|
}) { Text("Volver al Área") }
|
||||||
|
}
|
||||||
|
|
||||||
|
if (model.fieldTypes.isEmpty()) {
|
||||||
|
Text("Este nivel no admite más hijos estructurales.")
|
||||||
|
} else {
|
||||||
|
Text("Vas a crear", style = MaterialTheme.typography.bodySmall)
|
||||||
|
LazyRow(horizontalArrangement = Arrangement.spacedBy(8.dp)) {
|
||||||
|
items(model.fieldTypes, key = { it.id }) { type ->
|
||||||
|
AssistChip(
|
||||||
|
onClick = {
|
||||||
|
selectedTypeId = type.id
|
||||||
|
selectedFamilyId = null
|
||||||
|
attributeValues.clear()
|
||||||
|
},
|
||||||
|
label = { Text(if (type.id == selectedTypeId) "✓ ${type.name}" else type.name) },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (selectedType?.familyRequired == true) {
|
||||||
|
Text("Familia técnica", fontWeight = FontWeight.Bold)
|
||||||
|
Text(
|
||||||
|
"Elegí la que corresponda al Excel. Si no existe, usá Otro / no catalogado; nunca quedás bloqueado.",
|
||||||
|
style = MaterialTheme.typography.bodySmall,
|
||||||
|
)
|
||||||
|
LazyRow(horizontalArrangement = Arrangement.spacedBy(8.dp)) {
|
||||||
|
items(selectedType.families, key = { it.id }) { family ->
|
||||||
|
AssistChip(
|
||||||
|
onClick = { selectedFamilyId = family.id },
|
||||||
|
label = {
|
||||||
|
val prefix = when {
|
||||||
|
selectedFamilyId == family.id -> "✓ "
|
||||||
|
family.isOther -> "+ "
|
||||||
|
else -> ""
|
||||||
|
}
|
||||||
|
Text(prefix + family.name)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
selectedFamily?.let { family ->
|
||||||
|
if (family.isOther) {
|
||||||
|
Text(
|
||||||
|
"Se registrará como familia no catalogada para revisión posterior en oficina.",
|
||||||
|
color = MaterialTheme.colorScheme.secondary,
|
||||||
|
style = MaterialTheme.typography.bodySmall,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
if (family.informationLabels.isNotEmpty()) {
|
||||||
|
Text(
|
||||||
|
"Información esperada: ${family.informationLabels.joinToString(" · ")}",
|
||||||
|
style = MaterialTheme.typography.bodySmall,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
OutlinedTextField(
|
||||||
|
value = name,
|
||||||
|
onValueChange = { name = it },
|
||||||
|
label = { Text("Nombre identificable *") },
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
)
|
||||||
|
OutlinedTextField(
|
||||||
|
value = commonName,
|
||||||
|
onValueChange = { commonName = it },
|
||||||
|
label = { Text("Nombre habitual") },
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
)
|
||||||
|
|
||||||
|
selectedType?.attributes?.forEach { definition ->
|
||||||
|
OutlinedTextField(
|
||||||
|
value = attributeValues[definition.code].orEmpty(),
|
||||||
|
onValueChange = { attributeValues[definition.code] = it },
|
||||||
|
label = { Text(definition.name + if (definition.isRequired) " *" else "") },
|
||||||
|
supportingText = {
|
||||||
|
val details = listOfNotNull(definition.unit, definition.options?.toString()).joinToString(" · ")
|
||||||
|
if (details.isNotBlank()) Text(details)
|
||||||
|
},
|
||||||
|
keyboardOptions = KeyboardOptions(
|
||||||
|
keyboardType = if (
|
||||||
|
definition.dataType.uppercase() in setOf("NUMBER", "DECIMAL", "INTEGER", "FLOAT")
|
||||||
|
) KeyboardType.Decimal else KeyboardType.Text,
|
||||||
|
),
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
val attributesReady = selectedType?.attributes
|
||||||
|
?.filter { it.isRequired }
|
||||||
|
?.all { attributeValues[it.code].orEmpty().isNotBlank() }
|
||||||
|
?: false
|
||||||
|
val familyReady = selectedType?.familyRequired != true || selectedFamilyId != null
|
||||||
|
Button(
|
||||||
|
onClick = {
|
||||||
|
if (f3HasLocation(context)) createWithLocation()
|
||||||
|
else locationPermissionLauncher.launch(
|
||||||
|
arrayOf(
|
||||||
|
Manifest.permission.ACCESS_FINE_LOCATION,
|
||||||
|
Manifest.permission.ACCESS_COARSE_LOCATION,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
},
|
||||||
|
enabled = selectedType != null && name.isNotBlank() && attributesReady && familyReady && !model.busy,
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
) { Text("Capturar GPS y crear") }
|
||||||
|
HorizontalDivider()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Text("Estructura disponible", modifier = Modifier.padding(horizontal = 16.dp, vertical = 8.dp), fontWeight = FontWeight.Bold)
|
||||||
|
LazyColumn(
|
||||||
|
Modifier.fillMaxSize().padding(horizontal = 16.dp),
|
||||||
|
verticalArrangement = Arrangement.spacedBy(8.dp),
|
||||||
|
) {
|
||||||
|
items(model.inventory, key = { it.id }) { item ->
|
||||||
|
F3InventoryCard(
|
||||||
|
item = item,
|
||||||
|
onInspect = { model.selectExisting(item) },
|
||||||
|
onUseParent = {
|
||||||
|
parentId = item.id
|
||||||
|
parentLabel = "${item.name} (${item.code})"
|
||||||
|
showCreate = true
|
||||||
|
selectedTypeId = null
|
||||||
|
resetCreateForm()
|
||||||
|
model.loadFieldTypes(item.id)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
item { Spacer(Modifier.height(30.dp)) }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun F3CaptureCard(
|
||||||
|
detailName: String,
|
||||||
|
captureRequired: Boolean,
|
||||||
|
gps: Boolean,
|
||||||
|
photos: Int,
|
||||||
|
ready: Boolean,
|
||||||
|
onPhoto: () -> Unit,
|
||||||
|
onClose: () -> Unit,
|
||||||
|
) {
|
||||||
|
Card(Modifier.fillMaxWidth().padding(horizontal = 16.dp, vertical = 6.dp)) {
|
||||||
|
Column(Modifier.padding(12.dp), verticalArrangement = Arrangement.spacedBy(6.dp)) {
|
||||||
|
Row(Modifier.fillMaxWidth(), horizontalArrangement = Arrangement.SpaceBetween) {
|
||||||
|
Text(detailName, fontWeight = FontWeight.Bold)
|
||||||
|
OutlinedButton(onClick = onClose) { Text("Cerrar") }
|
||||||
|
}
|
||||||
|
if (captureRequired) {
|
||||||
|
Text("GPS de alta: ${if (gps) "OK" else "pendiente"} · Fotos: $photos")
|
||||||
|
if (!ready) {
|
||||||
|
Text("Antes de registrar Hallazgos, completá GPS + foto.", color = MaterialTheme.colorScheme.error)
|
||||||
|
Button(onClick = onPhoto, modifier = Modifier.fillMaxWidth()) { Text("Tomar foto obligatoria") }
|
||||||
|
} else {
|
||||||
|
Text("Captura completa · listo para Hallazgos", color = MaterialTheme.colorScheme.primary)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Text("Registro existente seleccionado.", style = MaterialTheme.typography.bodySmall)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun F3InventoryCard(
|
||||||
|
item: FieldInventoryItem,
|
||||||
|
onInspect: () -> Unit,
|
||||||
|
onUseParent: () -> Unit,
|
||||||
|
) {
|
||||||
|
val typeCode = item.type?.let(::f3TypeCode).orEmpty()
|
||||||
|
val canHaveFinding = typeCode in setOf("instalacion", "subinstalacion")
|
||||||
|
val canHaveChild = typeCode in setOf("yacimiento", "instalacion")
|
||||||
|
val childLabel = if (typeCode == "yacimiento") "Agregar instalación aquí" else "Agregar subinstalación aquí"
|
||||||
|
|
||||||
|
Card(Modifier.fillMaxWidth()) {
|
||||||
|
Column(Modifier.padding(12.dp), verticalArrangement = Arrangement.spacedBy(5.dp)) {
|
||||||
|
Row(Modifier.fillMaxWidth(), horizontalArrangement = Arrangement.SpaceBetween) {
|
||||||
|
Text(item.name, fontWeight = FontWeight.SemiBold)
|
||||||
|
Text(structureLabel(typeCode), style = MaterialTheme.typography.bodySmall)
|
||||||
|
}
|
||||||
|
Text(item.code, style = MaterialTheme.typography.bodySmall)
|
||||||
|
item.commonName?.takeIf { it.isNotBlank() }?.let {
|
||||||
|
Text(it, style = MaterialTheme.typography.bodySmall)
|
||||||
|
}
|
||||||
|
if (canHaveFinding) {
|
||||||
|
Text(
|
||||||
|
if (item.readyForFinding) "Disponible para Hallazgos" else "GPS/foto pendiente",
|
||||||
|
color = if (item.readyForFinding) MaterialTheme.colorScheme.primary else MaterialTheme.colorScheme.error,
|
||||||
|
style = MaterialTheme.typography.bodySmall,
|
||||||
|
)
|
||||||
|
OutlinedButton(onClick = onInspect, modifier = Modifier.fillMaxWidth()) {
|
||||||
|
Text(if (item.selectedInInspection) "Abrir Hallazgos" else "Usar en esta inspección")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (canHaveChild) {
|
||||||
|
OutlinedButton(onClick = onUseParent, modifier = Modifier.fillMaxWidth()) { Text(childLabel) }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun F3MessageStrip(model: MainViewModel) {
|
||||||
|
val error = model.error
|
||||||
|
val notice = model.notice
|
||||||
|
if (error != null || notice != null) {
|
||||||
|
Card(
|
||||||
|
modifier = Modifier.fillMaxWidth().padding(bottom = 10.dp),
|
||||||
|
colors = CardDefaults.cardColors(
|
||||||
|
containerColor = if (error != null) MaterialTheme.colorScheme.errorContainer
|
||||||
|
else MaterialTheme.colorScheme.secondaryContainer,
|
||||||
|
),
|
||||||
|
onClick = { model.clearMessages() },
|
||||||
|
) {
|
||||||
|
Text(error ?: notice.orEmpty(), Modifier.padding(12.dp))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun f3TypeCode(summary: com.korexlabs.dhinspeccion.data.AssetSummary): String =
|
||||||
|
(summary.typeName ?: summary.name).trim().lowercase()
|
||||||
|
.replace('ó', 'o').replace('í', 'i').replace('á', 'a').replace('é', 'e').replace('ú', 'u')
|
||||||
|
|
||||||
|
private fun structureLabel(typeCode: String): String = when (typeCode) {
|
||||||
|
"area" -> "Área"
|
||||||
|
"yacimiento" -> "Yacimiento"
|
||||||
|
"instalacion" -> "Instalación"
|
||||||
|
"subinstalacion" -> "Subinstalación"
|
||||||
|
else -> typeCode.ifBlank { "Inventario" }
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun statusLabel(status: String): String = when (status) {
|
||||||
|
"PLANNED" -> "Planificada"
|
||||||
|
"IN_PROGRESS" -> "En curso"
|
||||||
|
"CLOSED" -> "Cerrada"
|
||||||
|
"CANCELLED" -> "Cancelada"
|
||||||
|
else -> status
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun buildF3Attributes(type: FieldType, values: Map<String, String>): Map<String, Any?> =
|
||||||
|
type.attributes.mapNotNull { definition ->
|
||||||
|
val raw = values[definition.code]?.trim().orEmpty()
|
||||||
|
if (raw.isBlank()) return@mapNotNull null
|
||||||
|
definition.code to coerceF3Attribute(definition, raw)
|
||||||
|
}.toMap()
|
||||||
|
|
||||||
|
private fun coerceF3Attribute(definition: FieldAttributeDefinition, raw: String): Any = when (definition.dataType.uppercase()) {
|
||||||
|
"INTEGER", "INT" -> raw.toLongOrNull() ?: raw
|
||||||
|
"NUMBER", "DECIMAL", "FLOAT", "DOUBLE" -> raw.replace(',', '.').toDoubleOrNull() ?: raw
|
||||||
|
"BOOLEAN", "BOOL" -> raw.lowercase() in setOf("true", "1", "si", "sí", "yes")
|
||||||
|
else -> raw
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun f3HasPermission(context: Context, permission: String): Boolean =
|
||||||
|
ContextCompat.checkSelfPermission(context, permission) == PackageManager.PERMISSION_GRANTED
|
||||||
|
|
||||||
|
private fun f3HasLocation(context: Context): Boolean =
|
||||||
|
f3HasPermission(context, Manifest.permission.ACCESS_FINE_LOCATION) ||
|
||||||
|
f3HasPermission(context, Manifest.permission.ACCESS_COARSE_LOCATION)
|
||||||
|
|
||||||
|
private suspend fun currentF3Geo(context: Context): F3GeoSnapshot = suspendCancellableCoroutine { continuation ->
|
||||||
|
if (!f3HasLocation(context)) {
|
||||||
|
continuation.resumeWithException(SecurityException("Se necesita permiso de ubicación."))
|
||||||
|
return@suspendCancellableCoroutine
|
||||||
|
}
|
||||||
|
val source = CancellationTokenSource()
|
||||||
|
val client = LocationServices.getFusedLocationProviderClient(context)
|
||||||
|
client.getCurrentLocation(Priority.PRIORITY_HIGH_ACCURACY, source.token)
|
||||||
|
.addOnSuccessListener { location ->
|
||||||
|
if (!continuation.isActive) return@addOnSuccessListener
|
||||||
|
if (location == null) {
|
||||||
|
continuation.resumeWithException(IllegalStateException("No se pudo obtener una ubicación GPS actual."))
|
||||||
|
} else {
|
||||||
|
continuation.resume(F3GeoSnapshot(location.latitude, location.longitude, location.accuracy.toDouble()))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.addOnFailureListener { if (continuation.isActive) continuation.resumeWithException(it) }
|
||||||
|
continuation.invokeOnCancellation { source.cancel() }
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun newF3Photo(context: Context): Pair<File, Uri> {
|
||||||
|
val directory = context.getExternalFilesDir(Environment.DIRECTORY_PICTURES)
|
||||||
|
?: throw IllegalStateException("No se pudo acceder al almacenamiento de fotografías.")
|
||||||
|
directory.mkdirs()
|
||||||
|
val file = File.createTempFile("DH_F3_${System.currentTimeMillis()}_", ".jpg", directory)
|
||||||
|
val uri = FileProvider.getUriForFile(context, "${context.packageName}.files", file)
|
||||||
|
return file to uri
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun writeF3Exif(file: File, geo: F3GeoSnapshot) {
|
||||||
|
val now = Instant.now()
|
||||||
|
val exif = ExifInterface(file)
|
||||||
|
exif.setLatLong(geo.latitude, geo.longitude)
|
||||||
|
val formatter = DateTimeFormatter.ofPattern("yyyy:MM:dd HH:mm:ss").withZone(ZoneId.systemDefault())
|
||||||
|
exif.setAttribute(ExifInterface.TAG_DATETIME_ORIGINAL, formatter.format(now))
|
||||||
|
exif.setAttribute(ExifInterface.TAG_DATETIME_DIGITIZED, formatter.format(now))
|
||||||
|
exif.saveAttributes()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun f3ShortDate(value: String): String = value.replace('T', ' ').take(16)
|
||||||
Reference in New Issue
Block a user