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

invoice payment by different partner

Subscribe

Get notified when there's activity on this post

This question has been flagged
paymentinvoicespartners
9 Replies
10726 Views
Avatar
Koffi KPONOUGLO

Hi,

please is it possible with odoo 10 to have a sale invoice of agrolait partner and for the payment :

  • Agrolait will pay 30% of amount total

  • CamptoCamp will pay 70% of amount total?


Thanks.

0
Avatar
Discard
Avatar
Ray Carnes (ray)
Best Answer

There is an option to roll up AR balances - it works well in situations where a Head Office (like Walmart) pays for products that both Distribution Centers (children of the Head Office) and stores (children of the Distribution Centers) place orders.  In this situation there are multiple levels in the Customer hierarchy:

 


It may or may not work for you. Please make sure you understand how this affects your book keeping before you implement it.  it also affects who is liable for the balance, so be sure you are OK with how that looks on your Financial Reports. I am posting this mainly because your question reminds me of the requirement to rollup based on the SAME company, so I am unsure if it will be acceptable when you have DIFFERENT companies paying for things.

Account Receivable balances can only be paid by the same Customer that accrued them and Odoo manages this via the Commercial Entity field - this field is hidden by default and managed by Odoo.

If you setup three Customers, all Companies, this is how Odoo sets the Commercial Entity field:

 

In this way, each Company accrues and pays its own AR balance.

You can setup your Customers so that Agrolait and CamptoCamp accrue AR balances on behalf of the same Commercial Entity - a third Customer - and any of the three Customers can pay those balances. 

You would manually override the Commercial Entity field like this:

 

To do this requires two changes.

1: Expose the commercial_partner_id (COMMERCIAL ENTITY) field on the Customer form, so you can manage it. Odoo sets the Commercial Entity to match the Customer if you make the Customer a Company or an Individual without a Parent Company.  Odoo sets the Commercial Entity to match the Parent if the Invidual works for a Parent Company.

In base.view_partner_form, the field is defined like this:

<field name="commercial_partner_id" invisible="1"/>


You would make your own view and set invisible to 0 and readonly to 0, so that you can edit the field.

When you are setting up the multi-level Customer structure, be sure to realize that Odoo only lets you set a parent when the INDIVIDUAL checkbox is selected, so temporarily set your child companies to INDIVIDUAL so you can set the parent, then set them back to COMPANY.

Also, select the appropriate Commercial Entity which involves editing the field after Odoo has given it a value.


2: Modify the filters on the Search View because they filter for Customers that don't have a parent, and the ones you are setting up DO have a parent.


<filter string="Customers" name="customer" domain="[('customer','=',1), ('parent_id', '=', False)]"/>


would be overwritten to become:

<filter string="Customers" name="customer" domain="[('customer','=',1), ('is_company','=','1')]"/>


Now these Payments:

 


And this Invoice:

 


Will show up on the AR Aging like this:

 


This is how it looks in the General Ledger:



Note that Odoo will let you apply BOTH payments to the ONE Invoice:



2
Avatar
Discard
Avatar
Kevin
Best Answer

Yep, Use Payment terms in the partner form. You can design new payment terms and add those for individual customers in the form view.



see documentation for more

\https://www.odoo.com/documentation/user/11.0/accounting/receivables/customer_invoices/payment_terms.html



0
Avatar
Discard
Mohammed Amal N

Payment terms are used so same customer can make payment in a period of time, it cannot be used to make different customer pay for a single invoice

Koffi KPONOUGLO
Author

Yes you right. I problem can't be solve by payment_term. May be i will do some change on payment code to be able to use it to fix my problem.

Avatar
Pinakin Nayi (pna)
Best Answer

Not possible, if you can make it possible then you can loose the partner reference from payments(so you don't know who paid the amount).

0
Avatar
Discard
Avatar
Ermin Trevisan
Best Answer

From a legal and business perspective, this does not make much sense. If the corresponding delieveries were for different partners, you'll have to invoice the partners separately.

0
Avatar
Discard
Koffi KPONOUGLO
Author

Thanks Ermin for your answer. I am aggre wuth you. But in the case who customer have to pay for example 0% of invoice and his insurance company will pay 70%. What can i do?

Avatar
vishalratani
Best Answer

Why not raise two invoices? Again legally you should check who's got to hold the liablity. Ideally you should be using the same Source document field on each of the inovices for tracking purpose

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
To delete a payment
payment invoices
Avatar
Avatar
1
Apr 22
2641
pay an invoice generated by code
payment invoices openerp7
Avatar
1
Jan 24
5190
In odoo 14 reload page after payment create from invoice
payment invoices v14
Avatar
Avatar
1
Aug 23
3221
How Multi-currency works with openerp7?
accounting v7 payment invoices
Avatar
Avatar
Avatar
2
Mar 15
11726
Odoo-12 Invoices sequence skipped for no apparent reason
invoices
Avatar
Avatar
2
Jun 25
1784
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