Skip to content

Commit

Permalink
Merge pull request #654 from RamonSilva20/hotfix/bugfixes-and-validat…
Browse files Browse the repository at this point in the history
…ions

Hotfix/bugfixes and validations
  • Loading branch information
RamonSilva20 authored Apr 17, 2020
2 parents d4e48af + f2a7143 commit 0d7a1f2
Show file tree
Hide file tree
Showing 21 changed files with 334 additions and 150 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ 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.4.1] - 2020-05-10

### Fixed
- Criado mascara para cpf de usuario em adicionar e editar. Evitar erro de entra CNPJ nesse campo. [@willph](https://github.com/willph)
- Validação de cpf do usuario em adicionarUsuario.php. [@willph](https://github.com/willph)
- Criado verificação de CPF e CNPJ em adicionarCliente.php e editarCliente.php. [@willph](https://github.com/willph)
- Corrigido erro em view os.php devido preenchimendo de caracteres não numericos em view adicionarOs.php e EditarOs.php. [@willph](https://github.com/willph)
- Criado Campo CEP na tabela USUÁRIOS. [@willph](https://github.com/willph)
- Corrigido erro email do Usuário e Cliente em Vendas. [@willph](https://github.com/willph)
- Otimizado configuração de nginx em docker. [@Pr3d4dor](https://github.com/Pr3d4dor)

## [4.4.0] - 2020-05-10

### Added
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.4.0-blue.svg?longCache=true&style=flat-square)
![version](https://img.shields.io/badge/version-4.4.1-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/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
| $autoload['helper'] = array('url', 'file');
*/

$autoload['helper'] = ['url', 'audit', 'date', 'dd'];
$autoload['helper'] = ['url', 'audit', 'date', 'dd', 'validation'];


/*
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.4.0';
$config['app_version'] = '4.4.1';

/**
* Nome do sistema
Expand Down
Loading

0 comments on commit 0d7a1f2

Please sign in to comment.