├── view ├── adminhtml │ ├── templates │ │ ├── transactions │ │ │ ├── toolbar │ │ │ │ └── buttons.phtml │ │ │ └── header.phtml │ │ ├── credentials │ │ │ └── error.phtml │ │ ├── cancellation │ │ │ ├── header.phtml │ │ │ ├── toolbar │ │ │ │ └── buttons.phtml │ │ │ └── content.phtml │ │ ├── abandoned │ │ │ ├── header.phtml │ │ │ ├── error │ │ │ │ └── active.phtml │ │ │ ├── toolbar │ │ │ │ └── buttons.phtml │ │ │ └── content.phtml │ │ ├── conciliation │ │ │ ├── header.phtml │ │ │ └── toolbar │ │ │ │ └── buttons.phtml │ │ └── refund │ │ │ ├── toolbar │ │ │ └── buttons.phtml │ │ │ └── header.phtml │ ├── web │ │ ├── images │ │ │ └── background.png │ │ └── css │ │ │ └── styles.css │ ├── requirejs-config.js │ ├── layout │ │ ├── pagseguro_credentials_error.xml │ │ ├── pagseguro_refund_index.xml │ │ ├── pagseguro_abandoned_index.xml │ │ ├── pagseguro_cancellation_index.xml │ │ ├── pagseguro_conciliation_index.xml │ │ ├── pagseguro_transactions_index.xml │ │ └── pagseguro_abandoned_error.xml │ └── ui_component │ │ └── sales_order_grid.xml └── frontend │ ├── web │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── images │ │ └── flag-origin-country.png │ ├── js │ │ └── view │ │ │ └── payment │ │ │ ├── payment.js │ │ │ └── method-renderer │ │ │ ├── default_lightbox-method.js │ │ │ ├── boleto-method.js │ │ │ └── online_debit-method.js │ └── template │ │ └── payment │ │ └── default-lightbox-form.html │ ├── requirejs-config.js │ ├── templates │ ├── failure.phtml │ ├── product │ │ └── view │ │ │ └── installments.phtml │ ├── checkout.phtml │ └── success.phtml │ ├── layout │ ├── pagseguro_payment_failure.xml │ ├── pagseguro_direct_success.xml │ ├── pagseguro_payment_checkout.xml │ └── catalog_product_view.xml │ └── email │ └── abandoned.html ├── .vs └── slnx.sqlite ├── registration.php ├── Block ├── Adminhtml │ └── Conciliation.php ├── Product │ └── View │ │ └── Installments.php └── Payment │ └── Checkout.php ├── etc ├── email_templates.xml ├── frontend │ ├── routes.xml │ └── di.xml ├── adminhtml │ ├── system │ │ ├── payment_configuration.xml │ │ ├── payment_boleto.xml │ │ ├── payment_credit_card.xml │ │ └── payment_online_debit.xml │ ├── routes.xml │ ├── system.xml │ └── menu.xml ├── acl.xml ├── events.xml ├── module.xml └── config.xml ├── composer.json ├── SECURITY.md ├── .github ├── ISSUE_TEMPLATE │ └── relatorio-de-bug.md └── workflows │ ├── codacy-analysis.yml │ └── codeql-analysis.yml ├── Model ├── Direct │ └── Contracts │ │ └── Checkout.php ├── ResourceModel │ ├── Orders.php │ └── Orders │ │ └── Collection.php ├── System │ └── Config │ │ ├── Yesno.php │ │ ├── Charset.php │ │ ├── Checkout.php │ │ ├── Status.php │ │ └── Environment.php ├── Orders.php ├── PaymentConfigProvider.php └── PaymentBoleto.php ├── Helper ├── Abandoned.php ├── Crypt.php └── Auth.php ├── Controller ├── Payment │ ├── Direct.php │ ├── Failure.php │ ├── Cancel.php │ └── Checkout.php ├── Adminhtml │ ├── Abandoned │ │ ├── Error.php │ │ ├── Index.php │ │ ├── Request.php │ │ └── Transport.php │ ├── Credentials │ │ └── Error.php │ ├── Refund │ │ ├── Index.php │ │ ├── Request.php │ │ └── Refund.php │ ├── Cancellation │ │ ├── Index.php │ │ ├── Cancel.php │ │ └── Request.php │ ├── Conciliation │ │ ├── Index.php │ │ ├── Request.php │ │ └── Conciliate.php │ └── Transactions │ │ ├── Index.php │ │ ├── Transaction.php │ │ └── Request.php ├── Ajaxable.php ├── Pageable.php ├── Direct │ ├── Search.code-search │ ├── Payment.php │ └── Success.php └── Notification │ └── Response.php ├── CHANGELOG.md ├── .gitignore └── Setup ├── InstallData.php └── Uninstall.php /view/adminhtml/templates/transactions/toolbar/buttons.phtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagseguro/pagseguro-modulo-magento-v2/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /view/adminhtml/web/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagseguro/pagseguro-modulo-magento-v2/HEAD/view/adminhtml/web/images/background.png -------------------------------------------------------------------------------- /view/frontend/web/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagseguro/pagseguro-modulo-magento-v2/HEAD/view/frontend/web/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /view/frontend/web/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagseguro/pagseguro-modulo-magento-v2/HEAD/view/frontend/web/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /view/frontend/web/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagseguro/pagseguro-modulo-magento-v2/HEAD/view/frontend/web/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /view/frontend/web/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagseguro/pagseguro-modulo-magento-v2/HEAD/view/frontend/web/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /view/frontend/web/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagseguro/pagseguro-modulo-magento-v2/HEAD/view/frontend/web/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /view/frontend/web/images/flag-origin-country.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagseguro/pagseguro-modulo-magento-v2/HEAD/view/frontend/web/images/flag-origin-country.png -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- 1 | 2 |
Erro: Certifique-se de que o e-mail e token foram corretamente preenchidos e são válidos para o ambiente selecionado.
3 | 4 | -------------------------------------------------------------------------------- /Block/Adminhtml/Conciliation.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |