Zum Inhalt springen
Odoo Menü
  • Anmelden
  • Jetzt gratis testen
  • Apps
    Finanzen
    • Buchhaltung
    • Rechnungsstellung
    • Spesenabrechnung
    • Tabellenkalkulation (BI)
    • Dokumente
    • E-Signatur
    Vertrieb
    • CRM
    • Vertrieb
    • Kassensystem – Shop
    • Kassensystem – Restaurant
    • Abonnements
    • Vermietung
    Websites
    • Website-Builder
    • E-Commerce
    • Blog
    • Forum
    • Livechat
    • E-Learning
    Lieferkette
    • Lager
    • Fertigung
    • PLM
    • Einkauf
    • Wartung
    • Qualität
    Personalwesen
    • Mitarbeiter
    • Personalbeschaffung
    • Abwesenheiten
    • Mitarbeiterbeurteilung
    • Personalempfehlungen
    • Fuhrpark
    Marketing
    • Social Marketing
    • E-Mail-Marketing
    • SMS-Marketing
    • Veranstaltungen
    • Marketing-Automatisierung
    • Umfragen
    Dienstleistungen
    • Projekte
    • Zeiterfassung
    • Außendienst
    • Kundendienst
    • Planung
    • Termine
    Produktivität
    • Dialog
    • Genehmigungen
    • IoT
    • VoIP
    • Wissensdatenbank
    • WhatsApp
    Apps von Drittanbietern Odoo Studio Odoo Cloud-Plattform
  • Branchen
    Einzelhandel
    • Buchladen
    • Kleidergeschäft
    • Möbelhaus
    • Lebensmittelgeschäft
    • Baumarkt
    • Spielwarengeschäft
    Essen & Gastgewerbe
    • Bar und Kneipe
    • Restaurant
    • Fast Food
    • Gästehaus
    • Getränkehändler
    • Hotel
    Immobilien
    • Immobilienagentur
    • Architekturbüro
    • Baugewerbe
    • Immobilienverwaltung
    • Gartenarbeit
    • Eigentümervereinigung
    Beratung
    • Buchhaltungsfirma
    • Odoo-Partner
    • Marketingagentur
    • Anwaltskanzlei
    • Talentakquise
    • Prüfung & Zertifizierung
    Fertigung
    • Textil
    • Metall
    • Möbel
    • Speisen
    • Brauerei
    • Firmengeschenke
    Gesundheit & Fitness
    • Sportklub
    • Brillengeschäft
    • Fitnessstudio
    • Therapeut
    • Apotheke
    • Friseursalon
    Handel
    • Handyman
    • IT-Hardware & -Support
    • Solarenergiesysteme
    • Schuster
    • Reinigungsdienstleistungen
    • HLK-Dienstleistungen
    Sonstiges
    • Gemeinnützige Organisation
    • Umweltschutzagentur
    • Plakatwandvermietung
    • Fotostudio
    • Fahrrad-Leasing
    • Software-Händler
    Alle Branchen ansehen
  • Community
    Lernen
    • Tutorials
    • Dokumentation
    • Zertifizierungen
    • Schulung
    • Blog
    • Podcast
    Bildung fördern
    • Bildungsprogramm
    • Scale-Up! Planspiel
    • Odoo besuchen
    Software anfragen
    • Herunterladen
    • Editionen vergleichen
    • Releases
    Zusammenarbeiten
    • Github
    • Forum
    • Veranstaltungen
    • Übersetzungen
    • Partner werden
    • Dienstleistungen für Partner
    • Buchhaltungsfirma registrieren
    Services anfragen
    • Partner finden
    • Buchhalter finden
    • Einen Experten treffen
    • Implementierungsservices
    • Kundenreferenzen
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Eine Demo erhalten
  • Preiskalkulation
  • Hilfe

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

  • CRM
  • e-Commerce
  • Buchhaltung
  • Lager
  • PoS
  • Projekte
  • MRP
All apps
Sie müssen registriert sein, um mit der Community zu interagieren.
Alle Beiträge Personen Abzeichen
Stichwörter (Alle anzeigen)
odoo accounting v14 pos v15
Über dieses Forum
Sie müssen registriert sein, um mit der Community zu interagieren.
Alle Beiträge Personen Abzeichen
Stichwörter (Alle anzeigen)
odoo accounting v14 pos v15
Über dieses Forum
Hilfe

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

Abonnieren

Erhalten Sie eine Benachrichtigung, wenn es eine Aktivität zu diesem Beitrag gibt

Diese Frage wurde gekennzeichnet
salescreditcardinvoicepayment
4 Antworten
12757 Ansichten
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
Verwerfen
Avatar
Brett Lehrer
Beste Antwort

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
Verwerfen
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)
Beste Antwort

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
Verwerfen
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
Beste Antwort

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
Verwerfen
Avatar
OpenERP Master
Beste Antwort

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
Verwerfen
Diskutieren Sie gerne? Treten Sie bei, statt nur zu lesen!

Erstellen Sie heute ein Konto, um exklusive Funktionen zu nutzen und mit unserer tollen Community zu interagieren!

Registrieren
Verknüpfte Beiträge Antworten Ansichten Aktivität
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
Apr. 19
4295
invoices based on delivery/installation/finished.
sales invoice payment conditions.
Avatar
0
März 15
4224
How do I mark a "partial" invoice as paid, for real? Gelöst
invoice payment
Avatar
1
Nov. 25
2414
Why don't I have the pay-partially option in Odoo 18.1? (Odoo 18.1 Alpha1) Gelöst
sales accounting invoice payment 18.0
Avatar
Avatar
Avatar
3
Dez. 24
3897
Sales upload Template required
sales invoice
Avatar
Avatar
2
Dez. 23
4092
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Herunterladen
  • Github
  • Runbot
  • Übersetzungen
Dienstleistungen
  • Odoo.sh-Hosting
  • Support
  • Upgrade
  • Individuelle Entwicklungen
  • Bildung
  • Buchhalter finden
  • Partner finden
  • Partner werden
Über uns
  • Unsere Firma
  • Markenwerte
  • Kontakt
  • Karriere
  • Veranstaltungen
  • Podcast
  • Blog
  • Kunden
  • Rechtliches • Datenschutz
  • Sicherheit
الْعَرَبيّة 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 ist eine Suite von Open-Source-Betriebsanwendungen, die alle Bedürfnisse Ihres Unternehmens abdecken: CRM, E-Commerce, Buchhaltung, Lager, Kassensystem, Projektmanagement etc.

Das einzigartige Wertversprechen von Odoo ist, dass es gleichzeitig sehr einfach zu bedienen und voll integriert ist.

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