Skip to content
Snippets Groups Projects
Commit 88bc524f authored by Vytor Calixto's avatar Vytor Calixto :space_invader:
Browse files

Fix return string in contract type id 1

Related simcaq/SCRUM#491
parent dad490e8
No related branches found
No related tags found
1 merge request!155Release v1.7.0
Pipeline #17583 canceled
...@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) ...@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/). and this project adheres to [Semantic Versioning](http://semver.org/).
## UNRELEASED ## UNRELEASED
### Changed
- Fix return string in contract type id 1
## 1.6.1 - 2018-08-23 ## 1.6.1 - 2018-08-23
# Changed # Changed
- Fix return json name in transport route - Fix return json name in transport route
......
module.exports = function idhmLevel(id) { module.exports = function contractType(id) {
switch (id) { switch (id) {
case 1: case 1:
return 'Concursado/Efetivo/Estavél'; return 'Concursado/Efetivo/Estável';
case 2: case 2:
return 'Contrato temporário'; return 'Contrato temporário';
case 3: case 3:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment