Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

is there any open erp module which integrates authorized .net payment gate way ?

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
salescreditcardinvoicepayment
4 Respuestas
12754 Vistas
Avatar
Vaibhav

Hello,

is there any Open ERP module which integrates authorized .net payment gate way ?

Our Aim is to make payment by Credit Card so is there any module related to this ?

I am using OpenERP v7.0

Thank youin advnc

5
Avatar
Descartar
Avatar
Brett Lehrer
Mejor respuesta

I just finished re-writing the 6.0 module from NovaPoint for OpenERP v7 not too long ago. You're welcome to use it as a reference. We never process credit cards directly on sale orders due to our customer base, so there's a number of features that I didn't bother to flesh out. There are also several CIM methods I didn't bother with due to how infrequently we use them, but using the existing wizards you should be able to quickly add those remaining features in.

https://code.launchpad.net/~brett-lehrer

My apologies for the odd bazaar organization, I always use git and am not familiar with hosting bzr projects on launchpad. Couple notes, you'll need these three modules:

  • account_payment_cc
  • account_payment_cc_authorizenet
  • rsa_encryption

I split the main CC processing code into two modules because we may be moving to Chase Paymentech in the future, and I wanted to leave the code relatively abstracted so I can easily add their API in. Also, I'm using urllib3, which wasn't included in Ubuntu until 13.04 I believe. Probably don't need to, but I copied it from my shipping API code, and I needed something thread safe to query multiple shipping companies for quotes at once. Anyway, you can get the source code for that here: https://pypi.python.org/pypi/urllib3

Card information is either stored in the Authorize.net CIM, or as a one-time use card saved directly to the account_voucher record (card info is purged once the payment is validated). CIM records are created/stored on the res_partner record of a contact. rsa_encryption is used to encrypt sensitive fields in the voucher record, so you'll need to generate a public/private key pair before storing any encrypted data - those functions are built into the module so that can be done from OpenERP directly. I recommend a key size of 1024 or 2048 bits, if you go higher the database fields probably need to be expanded.

Feel free to send me any questions you have setting that up.

2
Avatar
Descartar
Vaibhav
Autor

current module is needed some configuration in code ? or just I need to download and install these modules in my openerp instance?

Brett Lehrer

It's working as-is, but I didn't implement every possible feature of the API, just the main ones.

Serpent Consulting Services Pvt. Ltd.

We have been using, implementing both CC API and CIM on 3 versions successfully, 6,6.1,7.0 6.0 and 6.1 is already on openerp-usa. We should be releasing 7.0 code soon.

richa soni

I am using your code for http://authorize.net connector for OpenERP v7 I did the following steps: >> generated RSA keys >>added CC API details >> added customer bank details and tried to Create customer profile. But i got the below error. Can you please let me know what is actual issue. Did i miss some step?

MaxRetryError: HTTPSConnectionPool(host='api.authorize.net', port=443): Max retries exceeded with url: /xml/v1/request.api (Caused by <class 'socket.error'>: [Errno 110] Connection timed out) mailid: soniricha22@hotmail.com

Avatar
Fabrice Henrion (fhe)
Mejor respuesta

On v7, authorize.net integration is not available. It was under v6 here: https://github.com/aliomattux/authorize (I didn't test it)

If you are interested in being able to receive credit card payments, the easiest will be to use Paypal which is already integrated in OpenERP (link in invoice emails). You can configure it in Settings > Accounting > Bank and Cash.

Alternatively, you can also have a look at the generic payment processors integration in Settings > Accounting > Bank and Cash > Configure payment acquiring methods where you can add other processors than Paypal for employees (Merchant feature) and portal users.

2
Avatar
Descartar
Vivekrajan Rayappan

Hi, Fabrice is right. I am actually upgrading the module to V7. If you are interested, contact me through mail. vivek.bics@gmail.com

Avatar
D P Hicks
Mejor respuesta

Hey guys.... what ever happened with this development?

Since this discussion, NPG has ported over to v7 the CC Auth.net, CC Auth.net with CIM, and soon well be developing the CC reconcilation module to reconcile CC transactions that go from Odoo to Authorize and then back to Odoo.

Just curious.

D.P. Hicks

President

NovaPoint Group

 

 

 

1
Avatar
Descartar
Avatar
OpenERP Master
Mejor respuesta

Hi Guys,

Most of the code available today is the Novapoint code thats been shuffled around a lot/re-implemented. We are working on a new implementation from scratch that uses the CIM (Customer information manager) instead of the current implementation most used which is (SIM) Server integration method. It is written in soap. Our version will be supported in the newest software v8 Odoo, not 7 though. We anticipate it being completed within 2 weeks. When it is finished we will make it available for free and I will post a link. If anyone is interested in contributing to it, we have set up a funding campaign. It is much more than authorize.net however, its several modules to produce an ecommerce solution for Magento. Here is the link: https://www.indiegogo.com/projects/mage2odoo-8-0-management-solution

1
Avatar
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
How can I set up a payment method to automatically send the invoice directly after the order is complete?
sales invoice payment 11
Avatar
0
abr 19
4295
invoices based on delivery/installation/finished.
sales invoice payment conditions.
Avatar
0
mar 15
4222
How do I mark a "partial" invoice as paid, for real? Resuelto
invoice payment
Avatar
1
nov 25
2414
Why don't I have the pay-partially option in Odoo 18.1? (Odoo 18.1 Alpha1) Resuelto
sales accounting invoice payment 18.0
Avatar
Avatar
Avatar
3
dic 24
3892
Sales upload Template required
sales invoice
Avatar
Avatar
2
dic 23
4091
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now