Repository
OCA/account-invoicing · module folder · Try on Runboat
Module version
1.0.0
Category
Accounting & Finance
Folder size
0.06 MB
License
AGPL-3
Application
No
Auto-installable
No
Website
https://github.com/OCA/account-invoicing
Last tracking update
2026-08-07 08:42:46
Authors
Camptocamp, Odoo Community Association (OCA)
Maintainers
Camptocamp, Odoo Community Association (OCA)
Committers
OCA-git-bot, oca-ci, chaule97
Odoo dependencies
Python dependencies
requests
System dependencies
None
Required by
None
Description
This module allows to select a monthly invoicing mode for a customer. It
is based on partner_invoicing_mode. When this mode is selected for a
customer, the customer will be automatically invoiced

Code Analysis

Views touched (1)
XML IDNameModelTypeStatus
res_config_settings_view_form res.config.settings form Inherits partner_invoicing_mode.res_config_settings_view_form
HTTP endpoints (0)

No HTTP endpoints found for this module.

Models touched (4)

New fields (2)
  • invoicing_mode_monthly_day_todo Integer
    default='31' help='Day of the month to execute the invoicing. For a number higherthan the number of days in a month, the invoicing will beexecuted on the last day of the month.' args: 'Invoicing Day'
  • invoicing_mode_monthly_last_execution Datetime
    help='Last execution of monthly invoicing.' string='Last execution (monthly)'
Public methods (0)

No public methods.

New fields (2)
  • res_invoicing_mode_monthly_day_todo Integer
    readonly=False related='company_id.invoicing_mode_monthly_day_todo'
  • res_invoicing_mode_monthly_last_execution Datetime
    related='company_id.invoicing_mode_monthly_last_execution'
Public methods (0)

No public methods.

New fields (1)
  • invoicing_mode Selection
    ondelete={'monthly': 'set default'} selection_add=[('monthly', 'Monthly')]
Public methods (0)

No public methods.

New fields (0)

No new fields.

Public methods (2)
  • cron_generate_monthly_invoices(self)
    @api.model
    Cron called daily to check if monthly invoicing needs to be done.
  • generate_monthly_invoices(self, companies=None)
    @api.model

Loading…