Skip to content

Commit

Permalink
feat(IN-573): nuevo rol de internacion: farmacia
Browse files Browse the repository at this point in the history
  • Loading branch information
MarianoCampetella committed Feb 6, 2024
1 parent 2ae8262 commit de780ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions auth/permisos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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' }
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export type IPlanIndicacionesDoc = AndesDoc<IPlanIndicaciones>;
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,
Expand Down

0 comments on commit de780ec

Please sign in to comment.