Skip to content

Commit

Permalink
Correccion de proceso de pago
Browse files Browse the repository at this point in the history
  • Loading branch information
mariolada committed May 1, 2022
1 parent 0a855eb commit 16e5989
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion webapp/src/PayForm/ProcesoPago.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,14 @@ const ProcesoPago:React.FC<Props> = ({cartItems}) => {
toast.warn("Por favor, inicie sesión con su POD para que podamos obtener su dirección", {position: toast.POSITION.TOP_CENTER})
} else {
let variable = await getGastosEnvio();
if(gastosEnvio==0.00 || localStorage.getItem("direccion")=="null") {
toast.error("Su dirección no fue encontrada, lo sentimos. Para solucionar el problema "+
"modifique la dirección de su POD", {position: toast.POSITION.TOP_CENTER})
} else {
setPasoActual((pasoPrevio) => pasoPrevio + 1);
}
}
};

const steps = ["Envío", "Entrega", "Resumen", "¡Pedido Finalizado!"]

const pasoAnterior = () => {
Expand Down

0 comments on commit 16e5989

Please sign in to comment.