adding stuff to the onClick

This commit is contained in:
noahnghg
2025-04-20 21:18:43 -06:00
parent f7e4b49ac8
commit 25f2c3d8af
5 changed files with 39 additions and 4 deletions

View File

@@ -7,10 +7,11 @@ exports.createTransaction = async (req, res) => {
const { userID, productID, date, paymentStatus } = req.body;
try {
const formattedDate = new Date(date).toISOString().slice(0, 19).replace("T", " ");
const [result] = await db.execute(
`INSERT INTO Transaction (UserID, ProductID, Date, PaymentStatus)
VALUES (?, ?, ?, ?)`,
[userID, productID, date, paymentStatus]
[userID, productID, formattedDate, paymentStatus]
);
res.json({