.. index:: single: Payments Payments ======== Sylius contains a very flexible payments management system with support for many gateways (payment providers). We are using a payment abstraction library - `Payum `_, which handles all sorts of capturing, refunding and recurring payments logic. On Sylius side, we integrate it into our checkout and manage all the payment data. Payment ------- Every payment in Sylius, successful or failed, is represented by the **Payment** model, which contains basic information and a reference to appropriate order. .. rst-class:: plugin-feature Invoices ~~~~~~~~ By installing the `Sylius/InvoicingPlugin `_ you can enhance your Sylius application with the automatic generation of invoicing documents for each Order's payment. Sylius invoices have their own numbers, issuing dates, consist of shop and customer's data, the order items with prices and quantity and separated taxes section. Their templates can be changed, and of course the moment of invoice generation can be customized. Payment State Machine --------------------- A Payment that is assigned to an order will have it's own state machine with a few available states: ``cart``, ``new``, ``processing``, ``completed``, ``failed``, ``cancelled``, ``refunded``. The available transitions between these states are: .. code-block:: yaml transitions: create: from: [cart] to: new process: from: [new] to: processing authorize: from: [new, processing] to: authorized complete: from: [new, processing, authorized] to: completed fail: from: [new, processing] to: failed cancel: from: [new, processing, authorized] to: cancelled refund: from: [completed] to: refunded .. image:: ../../_images/sylius_payment.png :align: center :scale: 70% Of course, you can define your own states and transitions to create a workflow, that perfectly matches your needs. Full configuration can be seen in the `PaymentBundle/Resources/config/app/state_machine.yml `_. Changes to payment happen through applying appropriate transitions. How to create a Payment programmatically? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ We cannot create a Payment without an Order, therefore let's assume that you have an Order to which you will assign a new payment. .. code-block:: php $payment = $this->container->get('sylius.factory.payment')->createNew(); $payment->setOrder($order); $payment->setCurrencyCode('USD'); $this->container->get('sylius.repository.payment')->add($payment); .. tip:: Not familiar with the Order concept? Check :doc:`here `. Payment Methods --------------- A **PaymentMethod** represents a way that your customer pays during the checkout process. It holds a reference to a specific ``gateway`` with custom configuration. Gateway is configured for each payment method separately using the payment method form. How to create a PaymentMethod programmatically? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ As usual, use a factory to create a new PaymentMethod and give it a unique code. .. code-block:: php $paymentMethod = $this->container->get('sylius.factory.payment_method')->createWithGateway('offline'); $paymentMethod->setCode('ALFA1'); $this->container->get('sylius.repository.payment_method')->add($paymentMethod); In order to have your new payment method available in the checkout remember to **add your desired channel to the payment method**: .. code-block:: php $paymentMethod->addChannel($channel); Payment Gateway configuration ----------------------------- Payment Gateways that already have a Sylius bridge ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ First you need to create the configuration form type for your gateway. Have a look at the configuration form types of * `Paypal Commerce Platform `_ * `Paypal Express Checkout `_ * `Stripe `_ Then you should register its configuration form type with ``sylius.gateway_configuration_type`` tag. After that it will be available in the Admin panel in the gateway choice dropdown. .. tip:: If you are not sure how your configuration form type should look like, head to `Payum`_ documentation. Other Payment Gateways ~~~~~~~~~~~~~~~~~~~~~~ .. note:: Learn more about integrating payment gateways in the :doc:`dedicated guide ` and in `the Payum docs `_. When the Payment Gateway you are trying to use does have a bridge available and you integrate them on your own, use our guide on :doc:`extension development `. Troubleshooting --------------- Sylius stores the payment output inside the **details** column of the **sylius_payment** table. It can provide valuable information when debugging the payment process. PayPal Error Code 10409 ~~~~~~~~~~~~~~~~~~~~~~~ The 10409 code, also known as the *"Checkout token was issued for a merchant account other than yours"* error. You have most likely changed the PayPal credentials during the checkout process. Clear the cache and try again: .. code-block:: bash bin/console cache:clear Payment complete events ----------------------- .. warning:: The following events are not a universal way to listen for a completed payment, as they are only dispatched by `ResourceController` at specific places, like completing the payment for a given order in the Admin Panel. It means that `pre_complete` and `post_complete` events won't be triggered when a customer completes the payment by using, e.g., a payment gateway. .. tip:: If you are looking for a way to listen for completing the payment, consider :doc:`adding a new callback ` for a `sylius_order_payment` state machine on the `pay` transition. There are two events that are triggered on the payment complete action: +-------------------------------------+ | Event id | +=====================================+ | ``sylius.payment.pre_complete`` | +-------------------------------------+ | ``sylius.payment.post_complete`` | +-------------------------------------+ Learn more ---------- * :doc:`Payment - Component Documentation ` * `Payum - Project Documentation `_ * :doc:`Refunds `