Linux 软件免费装
Banner图

Plugin Name

开发者 baaaaas
更新时间 2021年10月13日 01:33
PHP版本: 4.0 及以上
WordPress版本: 5.8
版权: GPLv2 or later
版权网址: 版权信息

标签

email number cloud woocommerce pdf tax storage attachment generate sequential invoice processing customer invoice google drive dropbox packing slips vat delivery note packing list onedrive shipping list egnyte Invoices for WooCommerce

下载

1.1.0 2.0.4 2.4.13 3.1.9 1.0.0 1.1.1 1.1.2 2.0.0 2.0.1 2.0.2 2.0.3 2.1.0 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3.10 2.3.11 2.3.14 2.3.15 2.3.16 2.3.17 2.3.18 2.3.19 2.3.2 2.3.20 2.3.3 2.3.4 2.3.6 2.3.8 2.3.9 2.4.3 2.4.4 2.4.5 2.4.7 2.4.8 2.4.9 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 2.6.0 2.6.1 2.6.2 2.6.3 2.6.4 2.7.0 2.7.1 2.7.2 2.7.3 2.8.0 2.9.0 2.9.1 2.9.10 2.9.11 2.9.12 2.9.14 2.9.16 2.9.2 2.9.3 2.9.4 2.9.6 2.9.7 2.9.8 2.9.9 3.0.0 3.0.1 3.0.10 3.0.11 3.0.2 3.0.5 3.0.7 3.0.8 3.0.9 3.1.0 3.1.3 3.1.4 2.2.10 2.3.13 2.4.6 2.5.7 2.8.1 2.9.5 3.0.6 2.3.5 2.0.5 2.0.6 2.4.0 2.4.1 2.4.10 2.4.11 1.0.1 1.0.2 2.4.12 3.1.7 3.1.8

详情介绍:

Invoicing can be time consuming. Well, not anymore! Invoices for WooCommerce automates the invoicing process by generating and sending it to your customers. This WooCommerce plugin generates PDF invoices and PDF packing slips, attaches it to WooCommerce email types of your choice and sends invoices to your customers' Dropbox, Google Drive, OneDrive or Egnyte. Choose between multiple clean and customizable templates. Main features 技术支持 Support can take place on the forum page, where we will try to respond as soon as possible. Contributing If you want to add code to the source code, report an issue or request an enhancement, feel free to use GitHub. Translating Contribute a translation on GitHub.

安装:

自动安装 Automatic installation is the easiest option as WordPress handles the file transfers itself and you don't even need to leave your web browser. To do an automatic install of WooCommerce, log in to your WordPress admin panel, navigate to the Plugins menu and click Add New. In the search field type "Invoices for WooCommerce" and click Search Plugins. Once you've found our plugin you can view details about it such as the the point release, rating and description. Most importantly of course, you can install it by simply clicking Install Now. After clicking that link you will be asked if you're sure you want to install the plugin. Click yes and WordPress will automatically complete the installation. 手动安装 The manual installation method involves downloading our plugin and uploading it to your webserver via your favourite FTP application. 1. Download the plugin file to your computer and unzip it 1. Using an FTP program, or your hosting control panel, upload the unzipped plugin folder to your WordPress installation's wp-content/plugins/ directory. 1. Activate the plugin from the Plugins menu within the WordPress admin.

屏幕截图:

  • 一般设置
  • Template settings
  • View or Cancel invoice from the order page.
  • Create new invoice from the order page.
  • View invoice from the shop order page.
  • Download invoice from account.
  • Nice and clean template called 'Micro'.
  • Nice and clean template called 'Minimal'.

常见问题:

How to add your custom template?

Copy the default template files (including folder) you'll find in plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple to uploads/woocommerce-pdf-invoices/templates/invoice/simple. The plugin will automatically detect the template and makes it available for selection within the Template Settings. Now go ahead and start making some changes to the template files! :) Important: Before you update the plugin, always have a look at the Changelog if their have been any changes to the template files. There will be updates that require updating your custom template!

How to add a fee to the invoice?

To add a fee to WooCommerce and your invoice, simply add the following action to your themes functions.php. ` function add_woocommerce_fee() { global $woocommerce; if ( is_admin() && ! defined( 'DOING_AJAX' ) ) return; $amount = 5; $woocommerce->cart->add_fee( 'FEE_NAME', $amount, true, 'standard' ); } add_action( 'woocommerce_cart_calculate_fees','add_woocommerce_fee' ); `

How to hide order item meta?

To hide order item meta from the invoice, simply add the following filter to your themes functions.php. ` /**

  • Hide order itemmeta on Invoices for WooCommerce' invoice template.
  • @param array $hidden_order_itemmeta itemmeta.
  • @return array */ function bewpi_alter_hidden_order_itemmeta( $hidden_order_itemmeta ) { $hidden_order_itemmeta[] = '_wc_cog_item_cost'; $hidden_order_itemmeta[] = '_wc_cog_item_total_cost'; $hidden_order_itemmeta[] = '_subscription_interval'; $hidden_order_itemmeta[] = '_subscription_length'; // end so on.. return $hidden_order_itemmeta; } add_filter( 'bewpi_hidden_order_itemmeta', 'bewpi_alter_hidden_order_itemmeta', 10, 1 ); `

How to change the common PDF options?

To change the more common options of the PDF, use below example. ` function custom_bewpi_mpdf_options( $options ) { $options['mode'] = ''; $options['format'] = ''; // use [format]-L or [format]-P to force orientation (A4-L will be size A4 with landscape orientation) $options['default_font_size'] = 0; $options['default_font'] = 'opensans'; $options['margin_left'] = 14; $options['margin_right'] = 14; $options['margin_top'] = 14; $options['margin_bottom'] = 0; $options['margin_header'] = 14; $options['margin_footer'] = 6; $options['orientation'] = 'P'; // Also try to force with format option return $options; } add_filter( 'bewpi_mpdf_options', 'custom_bewpi_mpdf_options' ); `

How to change the more advanced PDF options?

To fully customize the PDF, use below code. This filter gives you full control over the mPDF library. Check the mPDF manual for more info. ` function bewpi_mpdf( $mpdf, $document ) { // change the direction of the invoice to RTL $mpdf->SetDirectionality( 'rtl' ); return $mpdf; } add_filter( 'bewpi_mpdf', 'bewpi_mpdf', 10, 2 ); `

How to display invoice download button on specific template files?

Add below code for example to your "thankyou" page or "customer-completed-order" email template. echo do_shortcode( '[bewpi-download-invoice title="Download (PDF) Invoice {formatted_invoice_number}" order_id="' . $order->get_id() . '"]' ); For use in WordPress editor use below shortcode. This will only work if you replace "ORDER_ID" with an actual order id. [bewpi-download-invoice title="Download (PDF) Invoice {formatted_invoice_number}" order_id="ORDER_ID"] Note: Download button will only be displayed when PDF exists and order has been paid.

How to skip invoice generation based on specific payment methods?

Add the name of the payment method to the array. function bewpi_attach_invoice_excluded_payment_methods( $payment_methods ) { return array( 'bacs', 'cod', 'cheque', 'paypal' ); } add_filter( 'bewpi_attach_invoice_excluded_payment_methods', 'bewpi_attach_invoice_excluded_payment_methods', 10, 2 );

How to skip invoice generation in general?

Add below function to your themes 'functions.php' file. ` function bewpi_skip_invoice_generation( $skip, $status, $order ) { // Do your stuff based on the order. return true; // True to skip. } add_filter( 'bewpi_skip_invoice_generation', 'bewpi_skip_invoice_generation', 10, 3 ); `

How to allow specific roles to download invoice?

Add the name of the role to the array. By default shop managers and administrators are allowed to download invoices. function bewpi_allowed_roles_to_download_invoice($allowed_roles) { // available roles: shop_manager, customer, contributor, author, editor, administrator $allowed_roles[] = "editor"; // end so on.. return $allowed_roles; } add_filter( 'bewpi_allowed_roles_to_download_invoice', 'bewpi_allowed_roles_to_download_invoice', 10, 2 );

How to alter formatted invoice number?

Add following filter function to your 'functions.php' within your theme. ` function alter_formatted_invoice_number( $formatted_invoice_number, $document_type ) { if ( $document_type === 'invoice/global' ) { // 'simple' or 'global'. // add M for global invoices. return 'M' . $formatted_invoice_number; } return $formatted_invoice_number; } add_filter( 'bewpi_formatted_invoice_number', 'alter_formatted_invoice_number', 10, 2 ); `

How to add custom fields/meta-data to the PDF invoice template?

Use below code to display meta-data. Replace {META_KEY} with the actual key. If you use another plugin, just ask the key from the author of that plugin. ` templater()->get_meta( '{META_KEY}' ); ?> ` Important: A custom template is required to add a custom field to the PDF invoice.

How to use a different template based on some order variable?

Use below code to use a different template based on WPML order language. You can for example change the function to use a different template based on the payment method instead. ` /**

  • Change template based on WPML order language.
  • Make sure to create custom templates with the correct names or the templates won't be found.
  • @param string $template_name template name.
  • @param string $template_type template type like global or simple.
  • @param int $order_id WC Order ID.
  • @return string */ function change_template_based_on_order_language( $template_name, $template_type, $order_id ) { $order_language = get_post_meta( $order_id, 'wpml_language', true );
if ( false === $order_language ) { return $template_name; } switch ( $order_language ) { case 'en': $template_name = 'minimal-en'; break; case 'nl': $template_name = 'minimal-nl'; break; } return $template_name; } add_filter( 'wpi_template_name', 'change_template_based_on_order_language', 10, 3 ); `

How to add invoice information meta?

Use below code to add invoice information meta to the PDF invoice template. ` /**

  • Add PDF invoice information meta (from third party plugins).
  • @param array $info Invoice info meta.
  • @param BEWPI_Invoice $invoice Invoice object.
  • @since 2.9.8
  • @return array. */ function add_invoice_information_meta( $info, $invoice ) { $payment_gateway = wc_get_payment_gateway_by_order( $invoice->order );
// Add PO Number from 'WooCommerce Purchase Order Gateway' plugin. if ( $payment_gateway && 'woocommerce_gateway_purchase_order' === $payment_gateway->get_method_title() ) { $po_number = WPI()->get_meta( $invoice->order, '_po_number' ); if ( $po_number ) { $info['po_number'] = array( 'title' => __( 'Purchase Order Number:', 'woocommerce-pdf-invoices' ), 'value' => $po_number, ); } } // Add VAT Number from 'WooCommerce EU VAT Number' plugin. $vat_number = WPI()->get_meta( $invoice->order, '_vat_number' ); if ( $vat_number ) { $info['vat_number'] = array( 'title' => __( 'VAT Number:', 'woocommerce-pdf-invoices' ), 'value' => $vat_number, ); } return $info; } add_filter( 'wpi_invoice_information_meta', 'add_invoice_information_meta', 10, 2 ); `

How to change the invoice date?

Use below filter to change the invoice date. ` /**

  • Change invoice date to order date in order to regenerate old invoices and keep the date.
  • @param string $invoice_date date of invoice.
  • @param BEWPI_Abstract_Invoice $invoice invoice object.
  • @return string needs to be in mysql format. */ function change_invoice_date_to_order_date( $invoice_date, $invoice ) { // get_date_paid() or get_date_created(). $date_completed = $invoice->order->get_date_completed(); if ( null !== $date_completed ) { return $date_completed->date( 'Y-m-d H:i:s' ); }
return $invoice_date; } add_filter( 'wpi_invoice_date', 'change_invoice_date_to_order_date', 10, 2 ); `

How to update the PDF invoice when it already has been sent to the customer?

Since version 2.9.4 the plugin removed the ability to update the PDF invoice when it already has been sent to the customer. If in what manner you still want to update the invoice, you can do so by resetting a custom field. 1. Go to Edit Order page. 1. Change custom field 'bewpi_pdf_invoice_sent' value within custom field widget to 0. 1. Refresh page and Update button will appear.

更新日志:

3.1.9 - October 12, 2021 3.1.8 - September 17, 2021 3.1.7 - July 13, 2021 3.1.6 - April 23, 2021 3.1.5 - April 21, 2021 3.1.4 - September 17, 2020 3.1.3 - August 31, 2020 3.1.2 - August 31, 2020 3.1.1 - June 21, 2020 3.1.0 - June 17, 2020 3.0.11 - November 8, 2019 3.0.10 - October 28, 2019 3.0.9 - October 26, 2019 3.0.8 - August 30, 2019 3.0.7 - June 11, 2019 3.0.6 - June 7, 2019 3.0.5 - May 31, 2019 3.0.4 - May 21, 2019 3.0.3 - May 20, 2019 3.0.2 - April 25, 2019 3.0.1 - April, 2019 3.0.0 - April, 2019 2.9.17 - August 9, 2018 2.9.16 - August 3, 2018 2.9.15 - July 26, 2018 2.9.14 - July 23, 2018 2.9.13 - July 18, 2018 2.9.12 - February 18, 2018 2.9.11 - January 17, 2018 2.9.10 - November 13, 2017 2.9.9 - October 19, 2017 2.9.8 - October 18, 2017 2.9.7 - October 12, 2017 2.9.6 - October 10, 2017 2.9.5 - September 20, 2017 2.9.4 - September 13, 2017 2.9.3 - July 5, 2017 2.9.2 - June 12, 2017 2.9.1 - May 15, 2017 2.9.0 - May 15, 2017