Merge branch 'react-version' of https://github.com/MarcEricMartel/420-5DW-HY-TP into react-version
This commit is contained in:
commit
b3e916e50b
@ -52,7 +52,7 @@ const App = () => {
|
||||
<Route path="formulaire" element={<Formulaire />} />
|
||||
<Route path="myinvoices" element={<MyInvoices />} />
|
||||
<Route path="invoices" element={<Invoices />} />
|
||||
<Route path="reviewinvoice/:id" element={<ReviewInvoice />} />
|
||||
<Route path="reviewinvoice" element={<ReviewInvoice />} />
|
||||
</Route>
|
||||
</Routes>
|
||||
</BrowserRouter>
|
||||
|
@ -58,23 +58,13 @@ export default function App() {
|
||||
console.log("Your cart is empty!!!");
|
||||
}
|
||||
else {
|
||||
data.prodQuant ={};
|
||||
data.prodQuant = {};
|
||||
cart.map((p) => {
|
||||
data.prodQuant[p.id] = p.quantity;
|
||||
data.prodQuant[`${p.id}`] = p.quantity;
|
||||
});
|
||||
|
||||
console.log(data);
|
||||
|
||||
const jsonData = JSON.stringify(data);
|
||||
|
||||
fetch("https://localhost:7292/api/Invoice", {
|
||||
mode: "cors",
|
||||
method: "POST",
|
||||
credentials: "include",
|
||||
body: jsonData
|
||||
}).then((response) => {
|
||||
console.log(response);
|
||||
});
|
||||
cookies.set('invoice', data, { path: '/', SameSite: 'strict', secure: true, maxAge: 2592000 });
|
||||
navigate("/reviewinvoice");
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user