quitar console log
This commit is contained in:
parent
7d035b0a57
commit
208ae1f9b4
|
@ -4,7 +4,6 @@ class ContactController {
|
|||
async Create(req, res) {
|
||||
try {
|
||||
const { name, phone, email, message } = req.body;
|
||||
console.log(name, phone, email, message);
|
||||
const contact = await db.contact_Request(name, phone, email, message);
|
||||
|
||||
return res.status(200).send({
|
||||
|
|
|
@ -7,7 +7,6 @@ const {
|
|||
|
||||
class RedsysProviders {
|
||||
async New(orderFk, price) {
|
||||
console.log("Chama");
|
||||
try {
|
||||
const redsys = new Redsys({
|
||||
secretKey: 'sq7HjrUOBfKmC576ILgskD5srU870gJ7',
|
||||
|
@ -28,7 +27,6 @@ class RedsysProviders {
|
|||
|
||||
const form = redsys.redirectPetition(obj)
|
||||
|
||||
console.log(form);
|
||||
return true
|
||||
} catch (error) {
|
||||
throw error;
|
||||
|
|
|
@ -5,7 +5,6 @@ const {
|
|||
|
||||
class RedsysProviders {
|
||||
async New(orderFk, price) {
|
||||
console.log("Chama");
|
||||
try {
|
||||
const MERCHANT_KEY = "sq7HjrUOBfKmC576ILgskD5srU870gJ7";
|
||||
const redsys = new RedsysPos(MERCHANT_KEY);
|
||||
|
@ -22,7 +21,6 @@ class RedsysProviders {
|
|||
errorURL: `${process.env.BASE_URL}/checkout/error`
|
||||
});
|
||||
|
||||
console.log(obj);
|
||||
const result = redsys.makePaymentParameters(obj);
|
||||
return ""
|
||||
} catch (error) {
|
||||
|
|
|
@ -30,7 +30,7 @@ async function orderData_put(jsonOrderData) {
|
|||
if (err) {
|
||||
console.error(err);
|
||||
} else {
|
||||
console.log('Result:', results);
|
||||
|
||||
}
|
||||
});
|
||||
return rows;
|
||||
|
|
|
@ -4,7 +4,7 @@ export const useTextInputStore = defineStore("text-input", () => {
|
|||
const dedication = ref("");
|
||||
|
||||
function handleDedicationSubmit() {
|
||||
console.log(dedication);
|
||||
|
||||
}
|
||||
|
||||
return {
|
||||
|
|
Loading…
Reference in New Issue