Pagadito Payment Acquirer
by IT-Projects LLC https://it-projects.info/team/yelizariev , Ivan Yelizariev https://it-projects.info/team/yelizarievRequired Apps |
•
eCommerce (website_sale)
• Invoicing (account) • Website Builder (website) • Sales (sale) |
Technical Name |
payment_pagadito_itpp |
License | See License tab |
Website | https://it-projects.info/team/yelizariev |
Also available in version | v 12.0 |

Pagadito Payment Acquirer
Integration with Pagadito.com payment service
Roadmap
- Split module to exclude website_portal_sale dependency
Questions?
To get an assistance on this module contact us by email :arrow_right: help@itpp.dev
Contributors
- Ivan Yelizariev
Further information
Odoo Apps Store: https://apps.odoo.com/apps/modules/10.0/payment_pagadito/
Notifications on updates: via Atom, by Email
Tested on Odoo 10.0
Pagadito Payment Acquirer
Preparation
- You will need account at https://www.pagadito.com/
- Nagivate to pagadito dashboard. Check that you have access to integration parameters section.
- Under Connection Credentials you can find UID and WSK
- Return URL -- set to <odoo_instance_url>/payment/pagadito/confirmation?value={value}&ern_value={ern_value}, e.g. myshop.example.com/payment/pagadito/confirmation?value={value}&ern_value={ern_value}
Sandbox
You can play with a module via sandbox account created on this website: https://sandbox.pagadito.com.
If you get error "¡Lo sentimos! Pagadito Comercios aún no está disponible en su país o región" (Pagadito is not supported in your country), contact support team to add your IP to whilelist
Installation
Install zeep library:
pip install zeep
Configuration
- Activate Developer Mode
- Open menu [[ Settings ]] >> Technical >> Parameters >> System Parameters
- Check that parameter``web.base.url`` exists and has correct address for eCommerce website.
- Open menu [[ Invoicing ]] >> Configuration >> Payments >> Payment Acquirers
- Select Pagadito record and set following parameters:
- UID -- El identificador del Pagadito Comercio.
- WSK -- La clave de acceso
- Optionally, click [Unpublished On Website] button to allow pagadito at eCommerce
Mail notification
Pagadito requires to send confirmation codes by email. In order to do that:
Activate Developer Mode
Open menu [[ Settings ]] >> Technical >> Email >> Templates
Open template Sales Order - Send by Email
Click [Edit]
Switch editor to Code View via button </>
Add following code in a proper place, e.g. before the line <p>You can reply to this email if you have any questions.</p>
- % if object.payment_acquirer_id.provider == 'pagadito':
<p> Pagadito Payment confirmation codes: NAP=${object.payment_tx_id.acquirer_reference}, ERN=${object.payment_tx_id.reference} </p>
% endif
Click [Save]
Usage
eCommerce
- install website_sale module
- add a product to the cart
- checkout the order and select Pagadito as payment method
- proceed the payment at pagadito website
- RESULT: payment is done and processed at odoo backend
The MIT License (MIT) Copyright 2020 IT-Projects Labs Copyright 2015-2020 IT-Projects LLC Copyright 2015 Ivan Yelizariev Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module