Initial commit: Odoo 18.0-20251222 extra-addons
This commit is contained in:
14
sale_invoice_frequency/models/sale_invoice_frequency.py
Executable file
14
sale_invoice_frequency/models/sale_invoice_frequency.py
Executable file
@@ -0,0 +1,14 @@
|
||||
# Copyright 2023 Moduon Team S.L.
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl-3.0)
|
||||
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class SaleInvoiceFrequency(models.Model):
|
||||
_name = "sale.invoice.frequency"
|
||||
_description = "Invoicing frequency for Customers"
|
||||
|
||||
name = fields.Char(
|
||||
translate=True,
|
||||
)
|
||||
Reference in New Issue
Block a user