Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Check for valid address before confirm an invoice, Odoo 16 CE

Subscriure's

Get notified when there's activity on this post

This question has been flagged
invoiceconfirmation
1 Respondre
1848 Vistes
Avatar
M. Höppner

Hello,

according to my accountant we always need an invoice address on an invoice ;-).
Some colleagues "always" forget that - that is why:


We need an additional check in Odoo 16 CE. 

An invoice can only be confirmed if the invoice address is complete: postcode, city, street, but also email. 

When Confirm is clicked, a pop-up or warning should appear. 

Standard users receive a warning that the address is incomplete. There should be a note/promt to complete it or to contact a user from the Chief Accounting group. These users should be listed with their real names. 

Users from the Chief Accounting group should see a pop-up with a warning similar to the one above: However, there should be 2 buttons: 1 button for "Go back" and 1 button for "OK confirm anyway".


  1. Question: is there an option / a tickbox I do not know to achieve that behaviour (or similar) out of the standard?
  2. Can someone check the module I tried to write with the help of an AI (sorry, I do not have the knowledge for that)?
structure:
/
├── __init__.py
├── __manifest__.py
├── models/
│   ├── __init__.py
│   └── account_move.py
└── views/
    └── account_move_views.xml

files:

__init__.py

from . import models


__manifest__.py

{
    'name': 'Invoice Address Validation',
    'version': '1.0',
    'category': 'Accounting',
    'summary': 'Verhindert das Bestätigen von Rechnungen bei unvollständiger Rechnungsadresse',
    'author': 'Dein Name',
    'depends': ['account'],
    'data': [
        'views/account_move_views.xml',
    ],
    'installable': True,
    'application': False,
}


models/__init__.py

from . import account_move
from . import warning_wizard

models/account_move.py

from odoo import models, fields, api, _

from odoo.exceptions import UserError


class AccountMove(models.Model):

    _inherit = 'account.move'


    @api.constrains('partner_id')

    def _check_invoice_address(self):

        for move in self:

            if move.move_type == 'out_invoice':  # Nur für Kundenrechnungen

                if not move.partner_id.street or not move.partner_id.zip or not move.partner_id.city or not move.partner_id.email:

                    # Fehler für Standard-User (keine Manager)

                    if not self.env.user.has_group('account.group_account_manager'):

                        accounting_managers = self.env['res.users'].search([('groups_id', 'in', self.env.ref('account.group_account_manager').id)])

                        managers_names = ', '.join([user.name for user in accounting_managers])

                        raise UserError(_('Die Rechnungsadresse ist unvollständig. Bitte fügen Sie die fehlenden Informationen hinzu oder kontaktieren Sie einen Accounting Manager: %s') % managers_names)


    def action_post(self):

        for move in self:

            if move.move_type == 'out_invoice':  # Nur für Kundenrechnungen

                if not move.partner_id.street or not move.partner_id.zip or not move.partner_id.city or not move.partner_id.email:

                    if self.env.user.has_group('account.group_account_manager'):

                        # Pop-up für Accounting Manager

                        return {

                            'type': 'ir.actions.act_window',

                            'name': 'Adresse unvollständig',

                            'res_model': 'warning.wizard',

                            'view_mode': 'form',

                            'view_id': self.env.ref('your_module_name.warning_wizard_view_form').id,

                            'target': 'new',

                        }

                    else:

                        # Fehlermeldung für Standard-User

                        accounting_managers = self.env['res.users'].search([('groups_id', 'in', self.env.ref('account.group_account_manager').id)])

                        managers_names = ', '.join([user.name for user in accounting_managers])

                        raise UserError(_('Die Rechnungsadresse ist unvollständig. Bitte fügen Sie die fehlenden Informationen hinzu oder kontaktieren Sie einen Accounting Manager: %s') % managers_names)

        # Wenn alles in Ordnung ist, den Super-Aufruf nutzen, um fortzufahren

        return super(AccountMove, self).action_post()



models/warning_wizard.py

from odoo import models, fields


class WarningWizard(models.TransientModel):

    _name = 'warning.wizard'

    _description = 'Warnung für unvollständige Adresse'


    message = fields.Text(string="Warnung", readonly=True, default="Die Rechnungsadresse ist unvollständig. Möchten Sie die Rechnung trotzdem bestätigen?")


    def action_confirm(self):

        # Rechnung trotzdem bestätigen

        active_id = self.env.context.get('active_id')

        if active_id:

            invoice = self.env['account.move'].browse(active_id)

            invoice._post(soft=False)  # Rechnung bestätigen

        return {'type': 'ir.actions.act_window_close'}


    def action_cancel(self):

        # Abbrechen

        return {'type': 'ir.actions.act_window_close'}



views/account_move_views.xml


(Uups - I can not insert the text / xml - it disappears...)


I can Install the modul but it does not work.
Frist test as a member of the chief accountant group gives me the error (hopefully the important lines):

...stuck ... :-(  I do not know, what I changed the last minutes...

Looking forward to get help.
Maybe someone knows an app from the app stor that solves the expectation.
Thanks








0
Avatar
Descartar
Avatar
Niyas Raphy (Walnut Software Solutions)
Best Answer

Hi,
By default there is no option for this, so coming to the added code, could you share the error message that you receive with the above codes.

Thanks

0
Avatar
Descartar
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Related Posts Respostes Vistes Activitat
change between 2 Invoice formats Solved
invoice
Avatar
Avatar
1
de jul. 25
1727
Hello, how can I change the size of the logo and the invoice? Solved
invoice
Avatar
Avatar
Avatar
2
de jul. 25
2070
Validation Error. You will need to clear the Journal Entry's Number to proceed
invoice
Avatar
Avatar
1
de jul. 25
3017
Restricting Salesperson Access to Customer Invoice Details
invoice
Avatar
Avatar
Avatar
3
d’abr. 25
2917
Odoo 16 - Download invoice preview doesn't work
invoice
Avatar
Avatar
Avatar
3
d’abr. 25
3892
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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