superbig/craft-batchpdfexport

Mass export PDF invoices in one go

1.0.4 2020-12-03 13:35 UTC

This package is auto-updated.

Last update: 2024-04-15 09:06:53 UTC


README

Mass export PDF invoices in one go.

This plugin costs $29 when used in production (After that, it's $15/year to receive updates).

Icon

Screenshots

Screenshot

Requirements

This plugin requires Craft CMS 3.0.0 or later.

Installation

To install the plugin, follow these instructions.

  1. Open your terminal and go to your Craft project:

     cd /path/to/project
    
  2. Then tell Composer to load the plugin:

     composer require superbig/craft-batchpdfexport
    
  3. In the Control Panel, go to Settings → Plugins and click the “Install” button for Batch PDF Export.

Batch PDF Export Overview

After you install it, the option Export PDFs will be available under the element actions menu when you select 1 or more order in the Commerce orders list.

Configuring Batch PDF Export

This plugin uses the settings Order PDF Template and Order PDF Filename Format in Commerce -> General Settings to generate the PDFs by default.

In general, if the normal PDF download works, the batch export should also work.

If you want to add custom labels and templates, you can use the Plugin settings to enable this.

You can also override the options with a config file called batch-pdf-export.php:

<?php
return [
    'defaultLabel' => 'Export Invoices',
    'useCustomActions' => true,
    'actions'          => [
        [
            'label'    => 'Order Labels',
            'template' => 'shop/_pdf/order-labels',
        ],
        [
            'label'    => 'Order invoices',
            'template' => 'shop/_pdf/order-invoices',
        ],
    ],
];

Using Batch PDF Export

  1. Select one or more order in the Orders list and click the action dropdown in the toolbar
  2. Select Generate Invoices PDF (default label)

Brought to you by Superbig