Hello, I would like help from the university ... rs
I would like to know if I'm doing it right or if there is a better alternative to simplify this lot of if else
.
//APLICAÇÃO: [SEG] Sobre seguro, [KML] KmLivre, [DIA] Diária, [IE] Impostos/Encargos, [VLT] no valor total
//VALOR EM.: [MOT] Montante, [POR] Porcentagem.
//CALCULO..: [DIA]Por dia, [FIX]Fixo
//TIPO.....: [TXV]Taxa de Venda, [DES]Desconto, [ENC]Encargos Extras
if (aplicacao == "SEG") {
} else if (aplicacao == "KML") {
if (valor_em == "POR") {
if (calculo == "PD") {
if (tipo == "TXV") {
} else if (tipo == "DES") {
} else if (tipo == "ENC") {
}
} else {
if (tipo == "TXV") {
} else if (tipo == "DES") {
} else if (tipo == "ENC") {
}
}
} else {
}
} else if (aplicacao == "DIA") {
} else if (aplicacao == "IE") {
} else if (aplicacao == "VLT") {
}
Is this path even if I have to follow or is there something better?