This plugin creates an invoice related to the order.
SyliusInvoicingPlugin creates new immutable invoice when the order is in given state (default: created) and allows both customer and admin to download invoices related to the order.
The primary aim of Invoicing Plugin is to create a document representing Customer's will to buy particular products and pay for them.
An Invoice can also be treated as a proof of placing an Order. Thus, it is downloadable as .pdf file and can be sent to Customer manually by the Administrator or automatically once an Order is paid.
Additional feature of the plugin that fulfills Invoicing domain is the ability to set billing data on a Seller.
-
Require plugin with composer:
composer require sylius/invoicing-plugin
Remember to allow community recipes with
composer config extra.symfony.allow-contrib true
or during plugin installation process -
Copy plugin migrations to your migrations directory (e.g.
src/Migrations
) and apply them to your database:cp -R vendor/sylius/invoicing-plugin/migrations/* src/Migrations bin/console doctrine:migrations:migrate
-
Override Channel entity:
a) Write new class which will use
ShopBillingDataTrait
and implementShopBillingDataAwareInterface
:<?php namespace App\Entity; use Doctrine\ORM\Mapping\MappedSuperclass; use Doctrine\ORM\Mapping\Table; use Sylius\Component\Core\Model\Channel as BaseChannel; use Sylius\InvoicingPlugin\Entity\ShopBillingDataAwareInterface; use Sylius\InvoicingPlugin\Entity\ShopBillingDataTrait; /** * @MappedSuperclass * @Table(name="sylius_channel") */ class Channel extends BaseChannel implements ShopBillingDataAwareInterface { use ShopBillingDataTrait; }
b) And override the model's class in chosen configuration file (e.g.
config/_sylius.yml
):sylius_channel: resources: channel: classes: model: App\Entity\Channel
This installation instruction assumes that you're using Symfony Flex. If you don't, take a look at the legacy installation instruction. However, we strongly encourage you to use Symfony Flex, it's much quicker! :)
Majority of actions contained in SyliusInvoicingPlugin is executed once an event after changing the state of
the Order on winzou_state_machine
is dispatched.
Here is the example:
winzou_state_machine:
sylius_payment:
callbacks:
after:
sylius_invoicing_plugin_payment_complete_producer:
on: ['complete']
do: ['@Sylius\InvoicingPlugin\EventProducer\OrderPaymentPaidProducer', '__invoke']
args: ['object']
Code placed above is a part of configuration placed in config.yml
file.
You can customize this file by adding new state machine events listeners or editing existing ones.
Apart from that an Invoice model is treated as a Resource.
You can read more about Resources here:
http://docs.sylius.com/en/1.2/components_and_bundles/bundles/SyliusResourceBundle/index.html.
Hence, template for displaying the list of Invoices is defined in routing.yml
file:
sylius_invoicing_plugin_invoice:
resource: |
alias: sylius_invoicing_plugin.invoice
section: admin
templates: SyliusAdminBundle:Crud
only: ['index']
grid: sylius_invoicing_plugin_invoice
permission: true
vars:
all:
subheader: sylius_invoicing_plugin.ui.manage_invoices
index:
icon: inbox
type: sylius.resource
Another aspect that can be both replaced and customized is displaying Invoices list on Order show view. Code responsible for displaying Invoices related to the Order is injected to existing Sylius template using Sonata events. You can read about customizing templates via events here: