Skip to content

daneoshiga/django-oscar-pagseguro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pagseguro package for django-oscar

image

This package provides integration between django-oscar and Pagseguro

It's only on early development

It depends on django_pagseguro2 library

It works by adding the Pagseguro API call to the handle_successful_order method, so it finalizes the order before redirecting the user to Pagseguro because it needs to use the order number as reference for the order.

Pagseguro assumes that the order is completed when it's called, which is different from django-oscar, where it's possible to use the success of the payment as a confirmation for order placement.

The payment status are sent afterwards and dealt with using a view provided by django_pagseguro2 library, the signals are then used for order status changing in signals.py

Usage

  • Add the pagseguro package to the INSTALLED_APPS:

    INSTALLED_APPS = [
        ...
        pagseguro,
    ]
  • Add the following url to the urls.py of the django-oscar project:

    url(r'^', include('oscar_pagseguro.urls')),
  • And have a oscar order status pipeline that matches Pagseguro one:

    OSCAR_ORDER_STATUS_PIPELINE = {
        'Aguardando pagamento': ('Paga', u'Em analíse', 'Cancelada'),
        u'Em analíse': ('Paga', 'Cancelada'),
        'Paga': ('Em disputa', 'Devolvida', u'Disponível', 'Cancelada'),
        u'Disponível': ('Devolvida', 'Em disputa'),
        'Em disputa': (u'Disponível', 'Devolvida', 'Paga'),
        'Devolvida': (),
        'Cancelada': (),
    }

- Configure Pagseguro with fix redirection page (Página de redirecionamento fixa) para:

/checkout/thank-you/

- Configure Pagseguro with transaction notification (Notificação de transação), to the following URL:

/retorno/pagseguro/

TODO

Drop the status pipeline matching by making the status used by the django_pagseguro2 configurable

About

PagSeguro integration for django-oscar e-commerce

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages