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

How to add a Payment Method?

Subscribe

Get notified when there's activity on this post

This question has been flagged
paymentmethod
6 Replies
82147 Views
Avatar
Doug Ricket

From an invoice, I click Register Payment. However, Payment Method includes only two items: Cash (USD) and Bank (USD). My invoice, journal, and accounts relating to this transaction are all in NGN and that's how I want to record the payment. Where can I add a new Payment Method such as Cash (NGN)?

Thanks!

2
Avatar
Discard
Allan Lindquist

I have ver 7.0 I have looked in Accounting/Configuration/Journals/Journals both Cash and Bank and I cannot find an option "Allow multi-currencies" to check?

Avatar
Nilim
Best Answer

Hi,

In order to create a Payment Method is POS in Odoo , the following steps needs to be followed :-

  • First thing which is required is to be done is to create a ACCOUNT, by following ACCOUNTING>CONFIGURATION>ACCOUNTS. We can either copy any exiting account or create a new one depending on the requirement

  • After creating an account, we need to create a JOURNAL, which is in turn a PAYMENT METHOD for our Point Of Sales. During this journal creation we would assign the account created by us in the previous step. The Journal can be created either following POINT OF SALES>CONFIGURATION>PAYMENT METHOD Or ACCOUNTING>CONFIGURATION>JOURNALS

  • Now once the Payment Method is created as described above, we need to add the new Payment Method to the Point Of Sales by following, POINT OF SALES>CONFIGURATION>POINT OF SALES. Here we need add the new payment method under “AVAILABLE PAYMENT METHODS”

           Now we can use the payment method created.

   

 Hope it helps!

    

Cheers.

1
Avatar
Discard
Herbert Van de Poel

This didn't answer the initial question but it did answer my question: how to add a different payment method, other then cash and bank transfer. We have a lot of payments being paid by credit card or direct debit, so we do not want them to end up in a list of items that need batch payment via bank transfer.

Avatar
Ray Carnes
Best Answer

Payment Methods are Journals of type Cash or type Bank and Checks.

These are managed via the menu sequence:

Accounting --> Configuration --> Journals --> Journals

You can define a currency for each Journal when you set it up, and you need to check the 'Allow multi-currencies' option from the menu sequence:

Settings --> Accounting


EDIT: To address followup question:

To understand OpenERP you need a mixture of

  • Experimentation - use the software, try different things
  • Reading the source code - look at the Python and XML, Activate Developer mode, review patches, use debug mode
  • Documentation
  • Learning from others - use a search engine every time - I do this before I use the forum search

    • forum posts - including those from the old forums at http://forum.openerp.com/forum/
    • bugs - learn where at https://accounts.openerp.com/forum/Help-1/question/1077
    • feedback - including http://feedback.openerp.com/forums/77459-general-improvements
    • Twitter - to understand the conversation others are having hashtag #openerp
    • videos, blogs, slides

Make sure you know about all of the Documentation sources (and more details on blogs, videos and slides) at https://accounts.openerp.com/forum/Help-1/question/6817

Specifically for your question:

1) The link between a payment method and a journal, it is discussed at https://doc.openerp.com/v7.0/book/3/3_6/invoice_payment.html/

2) That the TYPE of Journal is important, can be found by looking at the XML that defines the dropdown. You can activate developer mode (https://accounts.openerp.com/forum/Help-1/question/83/) and examine the XML that defines the form view. (The Edit FormView option in the debug dropdown on the Payment screen). You can see the XML definition for payment method is:

<field name="journal_id" domain="[('type','in',['bank', 'cash'])]" ...
9
Avatar
Discard
Doug Ricket
Author

Thanks, works perfectly! Your first sentence was the key. To guide my self-education, is there somewhere I should be looking other than https://doc.openerp.com/contents/#contents-link to find this kind of thing?

Doug Ricket
Author

Awesome, super helpful!

Avatar
sultan homoud
Best Answer

In the payment method, whether it is Visa ,cash  how is the correct accounting entry made?



0
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
Step by step guide on creating a new payment method for the POS. Solved
payment method
Avatar
Avatar
Avatar
Avatar
4
Dec 19
20528
How to set the journal on the customer payment based on the payment method
payment method
Avatar
4
Oct 16
6372
Payment Status Solved
payment
Avatar
Avatar
Avatar
Avatar
3
Sep 25
10545
Check is not enabled for Internal Transfers Odoo 18
payment
Avatar
Avatar
1
Sep 25
3125
In Odoo 17, how do I override the default accounts set in the journal entry created by a customer payment? Solved
payment customize method v17
Avatar
Avatar
1
Sep 24
4458
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