Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

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

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
invoiceconfirmation
1 Rispondi
1840 Visualizzazioni
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
Abbandona
Avatar
Niyas Raphy (Walnut Software Solutions)
Risposta migliore

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
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
change between 2 Invoice formats Risolto
invoice
Avatar
Avatar
1
lug 25
1726
Hello, how can I change the size of the logo and the invoice? Risolto
invoice
Avatar
Avatar
Avatar
2
lug 25
2066
Validation Error. You will need to clear the Journal Entry's Number to proceed
invoice
Avatar
Avatar
1
lug 25
3015
Restricting Salesperson Access to Customer Invoice Details
invoice
Avatar
Avatar
Avatar
3
apr 25
2916
Odoo 16 - Download invoice preview doesn't work
invoice
Avatar
Avatar
Avatar
3
apr 25
3890
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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