From 9d941b5d99621bc98df0be3002aa7121f98e7a56 Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Thu, 8 Jul 2021 11:35:30 +0530 Subject: Added basic functionality to send the invoice data to server --- src/components/Pages/BillingPage.tsx | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) (limited to 'src/components/Pages/BillingPage.tsx') diff --git a/src/components/Pages/BillingPage.tsx b/src/components/Pages/BillingPage.tsx index 3949beb..301f39e 100644 --- a/src/components/Pages/BillingPage.tsx +++ b/src/components/Pages/BillingPage.tsx @@ -9,7 +9,7 @@ import React, { useState, useEffect } from "react"; import axios from "axios"; -import { Item, Person, Transport } from "../../interfaces"; +import { Item, Person, Transport, Invoice } from "../../interfaces"; import AddNewItemForm from "./../Form/Items/AddNewItemForm"; import RegisterItemForm from "./../Form/Items/RegisterItemForm"; @@ -57,6 +57,24 @@ const BillingPage: React.FC = () => { // update the items from AddNewItemForm const getItems = (item: Item) => setItems([...items, item]); + const postInvoice = () => { + const newInvoice: Invoice = { + Items: items, + Transport: transporter + } + window.print(); + + // just for testing it will not save to DB + axios.post("/api/invoice/preview", newInvoice) + .then((res) => { + alert("OH MY FUCKEN GOD") + console.log(res) + }) + .catch((res) => { + console.log(res) + }) + } + return ( <> {registerItemFormVisibility && @@ -106,6 +124,7 @@ const BillingPage: React.FC = () => { /> + ); } -- cgit v1.2.3