kodewerk
Version:
Dictionary of kode/term objects for use with associated melosys projects
25 lines (24 loc) • 566 B
JavaScript
/**
* Kodeverk/behandlingsresultattyper
* ref: https://confluence.adeo.no/display/TEESSI/Kodeverk+i+Melosys
* @module
*/
const behandlingsresultattyper = [
{
kode: 'FASTSATT_LOVVALGSLAND',
term: 'Lovvalgsland er foreløpig fastsatt',
},
{
kode: 'FORELOEPIG_FASTSATT_LOVVALGSLAND',
term: 'Lovvalgsland er foreløpig fastsatt',
},
{
kode: 'HENLEGGELSE',
term: 'Saken er henlagt',
},
{
kode: 'ANMODNING_OM_UNNTAK',
term: 'Anmodning om unntak',
}
];
module.exports.behandlingsresultattyper = behandlingsresultattyper;