File size: 6,530 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
import React from 'react';
import 'bootstrap/dist/css/bootstrap.min.css';
import Row from 'react-bootstrap/Row';
import Col from 'react-bootstrap/Col';
import Button from 'react-bootstrap/Button';
import Table from 'react-bootstrap/Table';
import Modal from 'react-bootstrap/Modal';
import { BiPaperPlane, BiCloudDownload } from "react-icons/bi";
import html2canvas from 'html2canvas';
import jsPDF from 'jspdf'
function GenerateInvoice() {
html2canvas(document.querySelector("#invoiceCapture")).then((canvas) => {
const imgData = canvas.toDataURL('image/png', 1.0);
const pdf = new jsPDF({
orientation: 'portrait',
unit: 'pt',
format: [612, 792]
});
pdf.internal.scaleFactor = 1;
const imgProps= pdf.getImageProperties(imgData);
const pdfWidth = pdf.internal.pageSize.getWidth();
const pdfHeight = (imgProps.height * pdfWidth) / imgProps.width;
pdf.addImage(imgData, 'PNG', 0, 0, pdfWidth, pdfHeight);
pdf.save('invoice-001.pdf');
});
}
class InvoiceModal extends React.Component {
constructor(props) {
super(props);
}
render() {
return(
<div>
<Modal show={this.props.showModal} onHide={this.props.closeModal} size="lg" centered>
<div id="invoiceCapture">
<div className="d-flex flex-row justify-content-between align-items-start bg-light w-100 p-4">
<div className="w-100">
<h4 className="fw-bold my-2">{this.props.info.billFrom||'John Uberbacher'}</h4>
<h6 className="fw-bold text-secondary mb-1">
Invoice #: {this.props.info.invoiceNumber||''}
</h6>
</div>
<div className="text-end ms-4">
<h6 className="fw-bold mt-1 mb-2">Amount Due:</h6>
<h5 className="fw-bold text-secondary"> {this.props.currency} {this.props.total}</h5>
</div>
</div>
<div className="p-4">
<Row className="mb-4">
<Col md={4}>
<div className="fw-bold">Billed to:</div>
<div>{this.props.info.billTo||''}</div>
<div>{this.props.info.billToAddress||''}</div>
<div>{this.props.info.billToEmail||''}</div>
</Col>
<Col md={4}>
<div className="fw-bold">Billed From:</div>
<div>{this.props.info.billFrom||''}</div>
<div>{this.props.info.billFromAddress||''}</div>
<div>{this.props.info.billFromEmail||''}</div>
</Col>
<Col md={4}>
<div className="fw-bold mt-2">Date Of Issue:</div>
<div>{this.props.info.dateOfIssue||''}</div>
</Col>
</Row>
<Table className="mb-0">
<thead>
<tr>
<th>QTY</th>
<th>DESCRIPTION</th>
<th className="text-end">PRICE</th>
<th className="text-end">AMOUNT</th>
</tr>
</thead>
<tbody>
{this.props.items.map((item, i) => {
return (
<tr id={i} key={i}>
<td style={{width: '70px'}}>
{item.quantity}
</td>
<td>
{item.name} - {item.description}
</td>
<td className="text-end" style={{width: '100px'}}>{this.props.currency} {item.price}</td>
<td className="text-end" style={{width: '100px'}}>{this.props.currency} {item.price * item.quantity}</td>
</tr>
);
})}
</tbody>
</Table>
<Table>
<tbody>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr className="text-end">
<td></td>
<td className="fw-bold" style={{width: '100px'}}>SUBTOTAL</td>
<td className="text-end" style={{width: '100px'}}>{this.props.currency} {this.props.subTotal}</td>
</tr>
{this.props.taxAmmount != 0.00 &&
<tr className="text-end">
<td></td>
<td className="fw-bold" style={{width: '100px'}}>TAX</td>
<td className="text-end" style={{width: '100px'}}>{this.props.currency} {this.props.taxAmmount}</td>
</tr>
}
{this.props.discountAmmount != 0.00 &&
<tr className="text-end">
<td></td>
<td className="fw-bold" style={{width: '100px'}}>DISCOUNT</td>
<td className="text-end" style={{width: '100px'}}>{this.props.currency} {this.props.discountAmmount}</td>
</tr>
}
<tr className="text-end">
<td></td>
<td className="fw-bold" style={{width: '100px'}}>TOTAL</td>
<td className="text-end" style={{width: '100px'}}>{this.props.currency} {this.props.total}</td>
</tr>
</tbody>
</Table>
{this.props.info.notes &&
<div className="bg-light py-3 px-4 rounded">
{this.props.info.notes}
</div>}
</div>
</div>
<div className="pb-4 px-4">
<Row>
<Col md={6}>
<Button variant="primary" className="d-block w-100" onClick={GenerateInvoice}>
<BiPaperPlane style={{width: '15px', height: '15px', marginTop: '-3px'}} className="me-2"/>Send Invoice
</Button>
</Col>
<Col md={6}>
<Button variant="outline-primary" className="d-block w-100 mt-3 mt-md-0" onClick={GenerateInvoice}>
<BiCloudDownload style={{width: '16px', height: '16px', marginTop: '-3px'}} className="me-2"/>
Download Copy
</Button>
</Col>
</Row>
</div>
</Modal>
<hr className="mt-4 mb-3"/>
</div>
)
}
}
export default InvoiceModal;
|