From 0f0e5f7408969fcc4473746919bb0e8aaa89947c Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Sun, 8 Aug 2021 13:00:16 +0530 Subject: half-cleaned the way saving invoices works --- src/components/Pages/BillingPage.tsx | 33 +++++++++------------------------ 1 file changed, 9 insertions(+), 24 deletions(-) (limited to 'src/components/Pages/BillingPage.tsx') diff --git a/src/components/Pages/BillingPage.tsx b/src/components/Pages/BillingPage.tsx index 8848406..58fdd40 100644 --- a/src/components/Pages/BillingPage.tsx +++ b/src/components/Pages/BillingPage.tsx @@ -7,7 +7,7 @@ */ import React, { useState, useEffect } from "react"; -import { Item, Person, Transport, Invoice } from "../../interfaces"; +import { Item, Person, Transport/*, Invoice*/ } from "../../interfaces"; import axios from "axios"; import DocumentInfoForm from "./../Form/Document/DocumentInfoForm"; @@ -29,10 +29,9 @@ const BillingPage: React.FC = () => { const [registerItemFormVisibility, setRegisterItemFormVisibility] = useState(false); const [registerPersonFormVisibility, setRegisterPersonFormVisibility] = useState(false); const [items, setItems] = useState([]); - const [invoiceNumber, setInvoiceNumber] = useState(1234); // get data from backend + const [invoiceNumber, setInvoiceNumber] = useState(1234); // TODO: get data from backend const [showTransportForm, setShowTransportForm] = useState(false); const [transporter, setTransporter] = useState({Name: "", VehicleNum: "", Method: "", GSTIN: "", Builty: ""}) - console.log(transporter); const [showSubmitMenu, setShowSubmitMenu] = useState(false); const getRegisteredItems = () => @@ -57,28 +56,11 @@ 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) - }) - } - */ - const handleSubmit = () => { setShowSubmitMenu(true); + axios.post(`/api/invoices/preview`, {ID: 1010, Items: items, Transporter: transporter}) + .then(() => alert("yay")) + .catch(() => alert("nay")); } return ( @@ -101,6 +83,7 @@ const BillingPage: React.FC = () => { {showTransportForm && } @@ -108,6 +91,8 @@ const BillingPage: React.FC = () => { {showSubmitMenu && } @@ -135,8 +120,8 @@ const BillingPage: React.FC = () => { setShowTransportForm={setShowTransportForm} /> + - ); } -- cgit v1.2.3