Skip to content

itwhy/SyliusInvoicingPlugin

 
 

Repository files navigation

Invoicing Plugin

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.

Screenshot showing invoice browsing page in administration panel

Installation

  1. Require plugin with composer:

    composer require sylius/invoicing-plugin
  2. Import configuration:

    imports:
        - { resource: "@SyliusInvoicingPlugin/Resources/config/config.yml" }
  3. Import routing:

    sylius_invoicing_plugin_admin:
        resource: "@SyliusInvoicingPlugin/Resources/config/app/routing/admin_invoicing.yml"
        prefix: /admin
    
    sylius_invoicing_plugin_shop:
        resource: "@SyliusInvoicingPlugin/Resources/config/app/routing/shop_invoicing.yml"
        prefix: /{_locale}
        requirements:
            _locale: ^[a-z]{2}(?:_[A-Z]{2})?$
  4. Add plugin class to your AppKernel:

    $bundles = [
        new \Knp\Bundle\SnappyBundle\KnpSnappyBundle(),
        new \Prooph\Bundle\ServiceBus\ProophServiceBusBundle(),
        new \Sylius\InvoicingPlugin\SyliusInvoicingPlugin(),
    ];
  5. Check if you have wkhtmltopdf binary. If not, you can download it here.

    In case wkhtmltopdf is not located in /usr/local/bin/wkhtmltopdf, add a following snippet at the end of your application's config.yml:

    knp_snappy:
        pdf:
            enabled: true
            binary: /usr/local/bin/wkhtmltopdf # Change this! :)
            options: []
  6. Copy migrations from vendor/sylius/invoicing-plugin/migrations/ to your migrations directory and run bin/console doctrine:migrations:migrate.

  7. Override Channel entity:

    a) Write new class which will use ShopBillingDataTrait and implement ShopBillingDataAwareInterface:

    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 the app/config/config.yml:

    sylius_channel:
        resources:
            channel:
                classes:
                    model: AppBundle\Entity\Channel
  8. Clear cache:

    bin/console cache:clear

Extension points

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:

$container->prependExtensionConfig('winzou_state_machine', [
    'sylius_order' => [
        'callbacks' => [
            'after' => [
                'sylius_invoicing_plugin_order_created_producer' => [
                    'on' => ['create'],
                    'do' => ['@Sylius\InvoicingPlugin\EventProducer\OrderPlacedProducer', '__invoke'],
                    'args' => ['object'],
                ],
            ],
        ],
    ],
]);

Code placed above is a part of logic placed in SyliusInvoicingExtension class. You can customize this class 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:

http://docs.sylius.com/en/1.2/customization/template.html

Since InvoicingPlugin is not the only plugin that uses wkhtmltopdf binary, you can customize the global path to wkhtmltopdf using following structure in config.yml file placed in your sylius-standard project:

knp_snappy:
    pdf:
        binary: path_to_binary

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 78.1%
  • HTML 10.5%
  • Gherkin 9.7%
  • JavaScript 1.7%