feat: Add new cultivo types

This commit is contained in:
2026-08-12 20:18:22 +00:00
parent 15049939c3
commit 369112d384
2 changed files with 11 additions and 2 deletions
+10 -1
View File
@@ -53,7 +53,7 @@ import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import { Textarea } from '@/components/ui/textarea';
import { Dialog, DialogContent, DialogHeader, DialogTitle } from '@/components/ui/dialog';
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, SelectGroup, SelectLabel } from '@/components/ui/select';
import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs';
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/components/ui/table';
import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area"
@@ -2531,6 +2531,15 @@ function SeccionCultivos({ cults, patient, internacionId, add, update, del, canE
<SelectItem value="LAbd">LAbd</SelectItem>
<SelectItem value="Coleccion">Coleccion</SelectItem>
<SelectItem value="Partes Blandas">Partes Blandas</SelectItem>
<SelectItem value="Esputo GC">Esputo GC</SelectItem>
<SelectItem value="Esputo TBC">Esputo TBC</SelectItem>
<SelectItem value="Baciloscopia">Baciloscopia</SelectItem>
<SelectGroup>
<SelectLabel>HNF</SelectLabel>
<SelectItem value="HNF Test Rápido">Test Rápido</SelectItem>
<SelectItem value="HNF Panel PCR">Panel PCR</SelectItem>
</SelectGroup>
<SelectItem value="Hisopado Rectal KPC">Hisopado Rectal KPC</SelectItem>
</SelectContent>
</Select>
</div>
+1 -1
View File
@@ -156,7 +156,7 @@ export interface Cultivo {
fechaToma: string;
protocolo?: string;
fechaResultado?: string;
tipoMuestra: 'HMCx2' | 'RC' | 'PC' | 'UC' | 'LCR' | 'LP' | 'LAsc' | 'LAbd' | 'Coleccion' | 'Partes Blandas';
tipoMuestra: 'HMCx2' | 'RC' | 'PC' | 'UC' | 'LCR' | 'LP' | 'LAsc' | 'LAbd' | 'Coleccion' | 'Partes Blandas' | 'Esputo GC' | 'Esputo TBC' | 'Baciloscopia' | 'HNF Test Rápido' | 'HNF Panel PCR' | 'Hisopado Rectal KPC';
germen?: string;
sensible?: string;
resistente?: string;