Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

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

Subscribe

Get notified when there's activity on this post

This question has been flagged
salescreditcardinvoicepayment
4 Replies
12751 Views
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
Discard
Avatar
Brett Lehrer
Best Answer

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
Discard
Vaibhav
Author

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)
Best Answer

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
Discard
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
Best Answer

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
Discard
Avatar
OpenERP Master
Best Answer

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
Discard
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
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
Mar 15
4221
How do I mark a "partial" invoice as paid, for real? Solved
invoice payment
Avatar
1
Nov 25
2412
Why don't I have the pay-partially option in Odoo 18.1? (Odoo 18.1 Alpha1) Solved
sales accounting invoice payment 18.0
Avatar
Avatar
Avatar
3
Dec 24
3887
Sales upload Template required
sales invoice
Avatar
Avatar
2
Dec 23
4087
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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