Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixing-18-supplier #7

Merged
merged 3 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions src/Models/supplierFormSchema.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ const supplierFormSchema = new mongoose.Schema({
},
cpfCnpj: {
type: String,
unique: true,
immutable: true,
sparse: true,
},
statusFornecedor: {
type: String,
Expand All @@ -26,26 +23,18 @@ const supplierFormSchema = new mongoose.Schema({
},
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,
Expand Down Expand Up @@ -97,18 +86,12 @@ const supplierFormSchema = new mongoose.Schema({
},
numeroBanco: {
type: String,
unique: true,
sparse: true,
},
dv: {
type: String,
unique: true,
sparse: true,
},
chavePix: {
type: String,
unique: true,
sparse: true,
},
createdAt: {
type: Date,
Expand Down
148 changes: 1 addition & 147 deletions src/Util/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,153 +2,7 @@
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";
}
}


Check failure on line 5 in src/Util/utils.js

View workflow job for this annotation

GitHub Actions / lint

Delete `····`
return null;
};

Expand Down
Loading