Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

How can i print my invoice from a server action

Odoberať

Get notified when there's activity on this post

This question has been flagged
pdfinvoicereportserveractionodoo16features
2179 Zobrazenia
Avatar
Chef de Biscuit

How can I create a print my invoice report (account.report_invoice_with_payments)
after the creation of the invoice in the code

sale_ids_onkosten = []


# Group sale orders based on sale_id and whether they contain onkosten or not

for picking in records:

    if picking.sale_id:

        if picking.sale_id.invoice_status != 'to invoice':

            last_invoice = picking.sale_id.invoice_ids.sorted(key=lambda i: i.id, reverse=True)[0]

            last_chauffeurblad = picking.x_chauffeurblad.sorted(key=lambda r: r.id, reverse=True)[0]

            last_chauffeurblad.update({'x_invoice_id': last_invoice.id})

            picking.update({'x_invoice_id': last_invoice.id})

            error_message = 'FACTUUR REEDS GEMAAKT'

            picking.write({'x_error': error_message})

        else:

            if any(keyword in picking.x_ff.x_name.lower() for keyword in ['maand','lever', 'week', 'weke', 'post']):

                error_message = 'NIET GEFACTUREERD FACTURATIE TYPE: ' + picking.x_ff.x_name.upper()

                picking.write({'x_error': error_message})

            else:

                sale_id_list = sale_ids_onkosten if any("onkosten" in line.product_id.name.lower() for line in picking.move_ids_without_package) else sale_ids

                if picking.sale_id.id not in sale_id_list:

                    sale_id_list.append(picking.sale_id.id)


# Function to handle creation and confirmation of invoices

def process_invoices(sale_ids, onkosten=False):

    grouped_sale_orders = {}

    for sale_id in sale_ids:

        sale_order = env['sale.order'].browse(sale_id)

        key = (sale_order.partner_id.id, sale_order.partner_shipping_id.id)

        grouped_sale_orders.setdefault(key, []).append(sale_order)


    for order_group in grouped_sale_orders.values():

        sale_orders = env['sale.order'].concat(*order_group)

        invoices = sale_orders._create_invoices()


        for invoice in invoices:

            partner_email = invoice.partner_id.x_invoice_email or invoice.partner_id.email

            if invoice.amount_total

                invoice.write({'x_message': 'Fout bij bedrag'})

            else:

                invoice.write({'x_message': '✓'})

                invoice.action_post()


            for picking in records:

                if picking.sale_id and picking.sale_id.name in invoice.invoice_origin:

                    error_message = 'FACTUUR'

                    if onkosten:

                        error_message += ' (onkosten)'

                    picking.write({'x_error': error_message})


                    last_chauffeurblad = picking.x_chauffeurblad.sorted(key=lambda r: r.id, reverse=True)[0]

                    volgorde = picking.x_volgorde

                    last_note_value = last_chauffeurblad.x_drivers_sheet_id.x_name if last_chauffeurblad.x_drivers_sheet_id else ''

                    if volgorde != 0.0:

                        invoice.write({'x_volgorde': volgorde})

                    

                    last_chauffeurblad.update({'x_invoice_id': invoice.id}) #update het chauffeursblad met link naar factuur

                    picking.update({'x_invoice_id': invoice.id}) #update de link naar de factuur in de leveringsbon

                    invoice.write({'x_chauffeur': last_note_value}) #update chauffeur op de factuur

                    

                    

                    

                    


# Process invoices for regular sale orders

if sale_ids:

    process_invoices(sale_ids)


# Process invoices for sale orders with onkosten

if sale_ids_onkosten:

    process_invoices(sale_ids_onkosten, onkosten=True)

0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
Invoice on basic layout
pdf invoice qweb report
Avatar
0
apr 24
2602
How to use bootstrap 4 when creating report pdf? Solved
pdf report bootstrap odoo16features
Avatar
Avatar
1
feb 24
3421
[SOLVED] Generate empty PDF in Odoo 16 Solved
pdf report pdfreport odoo16features
Avatar
Avatar
2
jan 24
6862
How to Add Amount in Words / Text to Printed Invoice? Solved
pdf invoice report prints
Avatar
Avatar
Avatar
Avatar
Avatar
7
máj 23
33653
Can not print/preview account report (invoice) Solved
pdf invoice report v14
Avatar
1
mar 22
4336
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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