mirror of
https://github.com/bringout/oca-financial.git
synced 2026-04-26 02:22:05 +02:00
25 lines
757 B
ReStructuredText
25 lines
757 B
ReStructuredText
This is a base module for implementing different invoicing mode for customers.
|
|
It adds a selection field `invoicing_mode` in the Accounting tab of the partner
|
|
with a default value (Odoo standard invoicing mode).
|
|
|
|
It can be used on its own to generate automatically (e.g.: each day)
|
|
the invoices for standard invoicing mode.
|
|
|
|
In core, Odoo is grouping invoicing from a group of sale orders on:
|
|
|
|
- Company
|
|
- Partner
|
|
- Currency
|
|
|
|
This module uses grouping on those keys:
|
|
|
|
- Company
|
|
- Invoiced partner
|
|
- Currency
|
|
- Payment term (as this can be selected on sale order level)
|
|
|
|
The following modules use it to install specific invoicing mode :
|
|
|
|
* `partner_invoicing_mode_at_shipping`
|
|
* `partner_invoicing_mode_monthly`
|
|
* `partner_invoicing_mode_weekly`
|