Skip to content

Commit

Permalink
Corrigido problema em adicionar produtos/serviços e OS em que o últim…
Browse files Browse the repository at this point in the history
…o id de produto/serviço era mantido no campo hidden e assim era desconsiderado o produto/serviço sendo escolhido na segunda adição (#959)
  • Loading branch information
Pr3d4dor authored Sep 20, 2020
1 parent b9c0c97 commit 5afbc35
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Todas as alterações serão documentadas neste arquivo
Formato baseado em [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
e [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.13.2] - 2020-09-20

## Fixed
- Corrigido problema em adicionar produtos/serviços e OS em que o último id de produto/serviço era mantido no campo hidden e assim era desconsiderado o produto/serviço sendo escolhido na segunda adição. [@Pr3d4dor](https://github.com/Pr3d4dor)

## [4.13.1] - 2020-09-15

## Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

![MapOS](https://raw.githubusercontent.com/RamonSilva20/mapos/master/assets/img/logo.png)

![version](https://img.shields.io/badge/version-4.13.1-blue.svg?longCache=true&style=flat-square)
![version](https://img.shields.io/badge/version-4.13.2-blue.svg?longCache=true&style=flat-square)
![license](https://img.shields.io/badge/license-MIT-green.svg?longCache=true&style=flat-square)
![theme](https://img.shields.io/badge/theme-Matrix--Admin-lightgrey.svg?longCache=true&style=flat-square)
![issues](https://img.shields.io/github/issues/RamonSilva20/mapos.svg?longCache=true&style=flat-square)
Expand Down
2 changes: 1 addition & 1 deletion application/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/**
* App current version
*/
$config['app_version'] = '4.13.1';
$config['app_version'] = '4.13.2';

/**
* Nome do sistema
Expand Down
6 changes: 6 additions & 0 deletions application/views/os/editarOs.php
Original file line number Diff line number Diff line change
Expand Up @@ -694,6 +694,9 @@
title: "Atenção",
text: "Ocorreu um erro ao tentar adicionar produto."
});
},
complete: function() {
$("#idProduto").val('');
}
});
return false;
Expand Down Expand Up @@ -746,6 +749,9 @@
title: "Atenção",
text: "Ocorreu um erro ao tentar adicionar serviço."
});
},
complete: function() {
$("#idServico").val('');
}
});
return false;
Expand Down

0 comments on commit 5afbc35

Please sign in to comment.