Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

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

Odebírat

Get notified when there's activity on this post

This question has been flagged
invoiceconfirmation
1 Odpovědět
1844 Zobrazení
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
Zrušit
Avatar
Niyas Raphy (Walnut Software Solutions)
Nejlepší odpověď

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
Zrušit
Enjoying the discussion? Don't just read, join in!

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
change between 2 Invoice formats Vyřešeno
invoice
Avatar
Avatar
1
čvc 25
1726
Hello, how can I change the size of the logo and the invoice? Vyřešeno
invoice
Avatar
Avatar
Avatar
2
čvc 25
2069
Validation Error. You will need to clear the Journal Entry's Number to proceed
invoice
Avatar
Avatar
1
čvc 25
3016
Restricting Salesperson Access to Customer Invoice Details
invoice
Avatar
Avatar
Avatar
3
dub 25
2917
Odoo 16 - Download invoice preview doesn't work
invoice
Avatar
Avatar
Avatar
3
dub 25
3891
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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