-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from fga-eps-mds/18-supplier-form
18 supplier form
- Loading branch information
Showing
5 changed files
with
307 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
const SupplierForm = require("../Models/supplierFormSchema"); | ||
const util = require("../Util/utils"); | ||
|
||
const createSupplierForm = async (req, res) => { | ||
try { | ||
message = util.validator(req.body.supplierData); | ||
|
||
if (message) { | ||
return res.status(404).send({ erro: message }); | ||
} | ||
|
||
const supplier = new SupplierForm(req.body.supplierData); | ||
|
||
await supplier.save(); | ||
return res.status(201).send(supplier); | ||
} catch (error) { | ||
return res.status(400).send(error); | ||
} | ||
}; | ||
|
||
const getSupplierForm = async (req, res) => { | ||
try { | ||
const supplier = await SupplierForm.find({}); | ||
return res.status(200).send(supplier); | ||
} catch (error) { | ||
return res.status(400).send(error); | ||
} | ||
}; | ||
|
||
const getSupplierFormById = async (req, res) => { | ||
try { | ||
const supplier = await SupplierForm.findById(req.params.id); | ||
return res.status(200).send(supplier); | ||
} catch (error) { | ||
return res.status(400).send(error); | ||
} | ||
}; | ||
|
||
const deleteSupplierFormById = async (req, res) => { | ||
try { | ||
const deletedSupplier = await SupplierForm.findByIdAndDelete(req.params.id); | ||
return res.status(200).send(deletedSupplier); | ||
} catch (error) { | ||
return res.status(400).send(error); | ||
} | ||
}; | ||
|
||
const updateSupplierFormById = async (req, res) => { | ||
try { | ||
const updatedSupplier = await SupplierForm.findById(req.params.id); | ||
if (!updatedSupplier) { | ||
return res.status(404).send(); | ||
} | ||
Object.assign(updatedSupplier, req.body.supplierData); | ||
updatedSupplier.updatedAt = new Date(); | ||
await updatedSupplier.save(); | ||
return res.status(200).send(updatedSupplier); | ||
} catch (error) { | ||
return res.status(400).send(error); | ||
} | ||
}; | ||
|
||
module.exports = { | ||
createSupplierForm, | ||
getSupplierForm, | ||
getSupplierFormById, | ||
deleteSupplierFormById, | ||
updateSupplierFormById, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
const mongoose = require('mongoose'); | ||
|
||
const supplierFormSchema = new mongoose.Schema({ | ||
|
||
nome: { | ||
type: String, | ||
required: true, | ||
unique: true | ||
}, | ||
tipoPessoa: { | ||
type: String, | ||
enum: ['Jurídica', 'Física', ''] | ||
}, | ||
cpfCnpj: { | ||
type: String, | ||
unique: true, | ||
immutable: true, | ||
sparse: true | ||
}, | ||
statusFornecedor: { | ||
type: String, | ||
enum: ['Ativo', 'Inativo', ''] | ||
}, | ||
naturezaTransacao: { | ||
type: String, | ||
enum: ['Receita', 'Despesa', ''] | ||
}, | ||
email: { | ||
type: String, | ||
unique: true, | ||
sparse:true | ||
}, | ||
nomeContato: { | ||
type: String | ||
}, | ||
celular: { | ||
type: String, | ||
unique: true, | ||
sparse:true | ||
}, | ||
telefone: { | ||
type: String, | ||
unique: true, | ||
sparse:true | ||
}, | ||
cep: { | ||
type: String, | ||
unique: true, | ||
sparse:true | ||
}, | ||
cidade: { | ||
type: String | ||
}, | ||
uf_endereco: { | ||
type: String, | ||
enum: ['AC', 'AL', 'AP', 'AM', 'BA', 'CE', 'DF', 'ES', 'GO', 'MA', 'MT', 'MS', 'MG', 'PA', 'PB', 'PR', 'PE', 'PI', 'RJ', 'RN', 'RS', 'RO', 'RR', 'SC', 'SP', 'SE', 'TO', ''] | ||
}, | ||
logradouro: { | ||
type: String | ||
}, | ||
complemento: { | ||
type: String | ||
}, | ||
nomeBanco: { | ||
type: String | ||
}, | ||
agencia: { | ||
type: String | ||
}, | ||
numeroBanco: { | ||
type: String, | ||
unique: true, | ||
sparse: true | ||
}, | ||
dv: { | ||
type: String, | ||
unique: true, | ||
sparse: true | ||
}, | ||
chavePix: { | ||
type: String, | ||
unique: true, | ||
sparse: true | ||
}, | ||
createdAt: { | ||
type: Date, | ||
default: Date.now | ||
}, | ||
updatedAt: { | ||
type: Date, | ||
default: Date.now | ||
}, | ||
}) | ||
|
||
const supplierForm = mongoose.model('Supplier', supplierFormSchema); | ||
module.exports = supplierForm; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
const validator = (dados) => { | ||
|
||
if (typeof dados.nome !== "string" || dados.nome === "") { | ||
return "Nome ou Razão social inválidos"; | ||
} | ||
|
||
if (dados.tipoPessoa !== null) { | ||
const tipoPessoaValidas = ["Jurídica", "Física"]; | ||
if (!tipoPessoaValidas.includes(dados.tipoPessoa)) { | ||
return "Tipo de pessoa inválida"; | ||
} | ||
} | ||
|
||
if (dados.cpfCnpj !== null) { | ||
const cpfValido = /^(\d{3}\.\d{3}\.\d{3}-\d{2})$/; | ||
const cnpjValido = /^(\d{2}\.\d{3}\.\d{3}\/\d{4}-\d{2})$/; | ||
if ( | ||
(!cpfValido.test(dados.cpfCnpj) && dados.tipoPessoa === "Física") || | ||
(!cnpjValido.test(dados.cpfCnpj) && dados.tipoPessoa === "Jurídica") | ||
) { | ||
return "CPF ou CNPJ inválido"; | ||
} | ||
} | ||
|
||
if (dados.statusFornecedor !== null) { | ||
const statusFornecedorValido = ["Ativo", "Inativo"]; | ||
if (!statusFornecedorValido.includes(dados.statusFornecedor)) { | ||
return "Status de fornecedor inválido"; | ||
} | ||
} | ||
|
||
if (dados.naturezaTransacao !== null) { | ||
const tipoTransacaoValida = ["Receita", "Despesa"]; | ||
if (!tipoTransacaoValida.includes(dados.naturezaTransacao)) { | ||
return "Tipo de transação inválida"; | ||
} | ||
} | ||
|
||
if (dados.email !== null) { | ||
const emailValido = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; | ||
if (!emailValido.test(dados.email)) { | ||
return "E-mail inválido"; | ||
} | ||
} | ||
|
||
if (dados.nomeContato !== null) { | ||
if (typeof dados.nomeContato !== "string") { | ||
return "Nome de contato inválido"; | ||
} | ||
} | ||
|
||
if (dados.celular !== null) { | ||
const celularValido = /^\(\d{2}\) \d{5}-\d{4}$/; | ||
if (!celularValido.test(dados.celular)) { | ||
return "Número de celular inválido"; | ||
} | ||
} | ||
|
||
if (dados.telefone !== null) { | ||
const telefoneValido = /^\(\d{2}\) \d{4}-\d{4}$/; | ||
if (!telefoneValido.test(dados.telefone)) { | ||
return "Número de telefone inválido"; | ||
} | ||
} | ||
|
||
if (dados.cep !== null) { | ||
const cepValido = /^\d{5}-\d{3}$/; | ||
if (!cepValido.test(dados.cep)) { | ||
return "Cep inválido"; | ||
} | ||
} | ||
|
||
if (dados.cidade !== null) { | ||
if (typeof dados.cidade !== "string") { | ||
return "Cidade inválida"; | ||
} | ||
} | ||
|
||
if (dados.uf_endereco !== null) { | ||
const ufsValidos = ["AC", "AL", "AP", "AM", "BA", "CE", "DF", "ES", "GO", "MA", "MT", "MS", "MG", "PA", "PB", "PR", "PE", "PI", "RJ", "RN", "RS", "RO", "RR", "SC", "SP", "SE", "TO"]; | ||
if (!ufsValidos.includes(dados.uf_endereco)) { | ||
return "UF inválida"; | ||
} | ||
} | ||
|
||
if (dados.logradouro !== null) { | ||
const logradouro = /^[a-zA-Z0-9\s,.()-]{5,100}$/; | ||
if (!logradouro.test(dados.logradouro)) { | ||
return "Logradouro inválido. Deve conter entre 5 e 100 caracteres."; | ||
} | ||
} | ||
|
||
if (dados.complemento !== null) { | ||
if (typeof dados.complemento !== "string") { | ||
return "Complemento inválido"; | ||
} | ||
} | ||
|
||
if (dados.agencia !== null) { | ||
if (typeof dados.agencia !== "string") { | ||
return "Agência inválida"; | ||
} | ||
} | ||
|
||
if (dados.numeroBanco !== null) { | ||
const numeroValido = /^\d*$/; | ||
if (!numeroValido.test(dados.numeroBanco)) { | ||
return "Número inválido"; | ||
} | ||
} | ||
|
||
if (dados.dv !== null) { | ||
const dvValido = /^\d*$/; | ||
if (!dvValido.test(dados.dv)) { | ||
return "DV inválido"; | ||
} | ||
} | ||
|
||
if (dados.chavePix !== null) { | ||
if (typeof dados.chavePix !== "string") { | ||
return "Chave Pix inválida"; | ||
} | ||
} | ||
|
||
return null; | ||
}; | ||
|
||
module.exports = { | ||
validator, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters