The WC-InvoicePdf plugin is used to generate PDF documents from woocommerce orders.
It also allows to setup WC Orders to be recurring and submits the invoices to there customers respectively.
Features
- Save invoice as pdf from any order created by WooCommerce
- Export invoices into CSV (primary GnuCash, more may follow...)
- Preview quote as pdf to submit provisional offer to customers
- Schedule recurring invoices directly send to customers email address
- Send kindly reminders for over due invoices
- Show payable invoices in customers "My Account"
- Individual the PDF template in text and picture
- Remind delegate person about pending payments from customers
- A "Webspace" product type for recurring payment support
- A "Working hours" product type to support service hours being invoiced to customers
RELEASE NOTES
- Search for "wp-ispconfig3" in the "Plugins -> Install" register
- Install and active the plugin
- Open the "WC-Invoices" -> "Settings" menu from admin pane for configuration
TESTING
For testing the recuring payments (submission of invoices) the "Test recuring" settings can be hooked to overwrite any customer email address
DEVELOPMENT
To set the
recurring state of an order while receiving a request, an action hook can be used to achieve this
// call the plugin to mark it as yearly recurring payment order do_action('wcinvoicepdf_order_period', $order_id, 'yearly'); // call the plugin to mark it as monthly recurring payment order do_action('wcinvoicepdf_order_period', $order_id, 'monthly');
To add additional info into the invoice metabox located in order, the following hook is availble
do_action('wcinvoicepdf_invoice_metabox', $post_id);
Release notes are provided by the
Github project page