diff --git a/auth/permisos.ts b/auth/permisos.ts index 642f2985f9..9ea86da80c 100644 --- a/auth/permisos.ts +++ b/auth/permisos.ts @@ -149,6 +149,7 @@ export default [ { key: 'enfermeria', title: 'Enfermero', type: 'boolean' }, { key: 'estadistica', title: 'Estadístico', type: 'boolean' }, { key: 'interconsultores', title: 'Interconsultor', type: 'boolean' }, + { key: 'farmaceutica', title: 'Farmacéutico', type: 'boolean' }, { key: 'estadistica-v2', title: 'Estadístico (nuevo)', type: 'boolean' } ] }, diff --git a/modules/rup/internacion/plan-indicaciones/plan-indicaciones.schema.ts b/modules/rup/internacion/plan-indicaciones/plan-indicaciones.schema.ts index 0b999bafeb..d9d8593828 100644 --- a/modules/rup/internacion/plan-indicaciones/plan-indicaciones.schema.ts +++ b/modules/rup/internacion/plan-indicaciones/plan-indicaciones.schema.ts @@ -12,7 +12,7 @@ export type IPlanIndicacionesDoc = AndesDoc; export const PlanIndicacionesEstadoSchema = new Schema({ tipo: { type: String, - enum: ['active', 'on-hold', 'cancelled', 'completed', 'entered-in-error', 'stopped', 'draft', 'unknown', 'edited', 'pending'] + enum: ['active', 'on-hold', 'cancelled', 'completed', 'entered-in-error', 'stopped', 'draft', 'unknown', 'edited', 'pending', 'bypass'] }, fecha: Date, observaciones: String,