Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • 33f96badd701d8534dc6d056b98b8b11055a0982
  • 16.0 par défaut protégée
2 résultats

backend_cashpad.py

Blame
  • backend_cashpad.py 1,43 Kio
    # Copyright 2023 Le Filament (https://le-filament.com)
    # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
    
    from odoo import models
    
    
    class BackendCashpad(models.Model):
        _name = "backend.cashpad"
        _inherit = ["api.backend"]
        _description = "Backend Cashpad"
    
        # ------------------------------------------------------
        # Fields declaration
        # ------------------------------------------------------
    
        # ------------------------------------------------------
        # SQL Constraints
        # ------------------------------------------------------
    
        # ------------------------------------------------------
        # Default methods
        # ------------------------------------------------------
    
        # ------------------------------------------------------
        # Computed fields / Search Fields
        # ------------------------------------------------------
    
        # ------------------------------------------------------
        # Onchange / Constraints
        # ------------------------------------------------------
    
        # ------------------------------------------------------
        # Inherit parent
        # ------------------------------------------------------
    
        # ------------------------------------------------------
        # Actions
        # ------------------------------------------------------
    
        # ------------------------------------------------------
        # Business methods
        # ------------------------------------------------------