Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

Merge repeated products without affecting sales orders, odoo 16

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
salesorderproducts
2506 Widoki
Awatar
Learning_Odoo

I have this code in odoo 16:

from odoo import models, fields, api


class AccountMove(models.Model):

     _inherit = 'account.move'


     def merge_invoice_lines(self):

         for invoice in self:

             lines_dict = {}

             lines_to_remove = self.env['account\.move\.line'\]


 \  \  \  \  \  \  for\ line\ in\ invoice\.invoice_line_ids:

 \  \  \  \  \  \  \  \  if\ line\.product_id\.id\ in\ lines_dict:

 \  \  \  \  \  \  \  \  \  \  \#\ If\ the\ product\ already\ exists,\ add\ the\ quantities\ and\ delete\ the\ original\ line\.

 \  \  \  \  \  \  \  \  \  \  lines_dict\[line\.product_id\.id\]\.quantity\ \+=\ line\.quantity

 \  \  \  \  \  \  \  \  \  \  lines_to_remove\ \+=\ line

 \  \  \  \  \  \  \  \  else:

 \  \  \  \  \  \  \  \  \  \  lines_dict\[line\.product_id\.id\]\ =\ line


 \  \  \  \  \  \  \#\ Delete\ the\ original\ invoice\ lines

 \  \  \  \  \  \  invoice\.invoice_line_ids\ \-=\ lines_to_remove


 \  \  \  \  \  \  \#\ Add\ the\ merged\ lines\ back\ to\ the\ invoice

 \  \  \  \  \  \  for\ product_id,\ line\ in\ lines_dict\.items\(\):

 \  \  \  \  \  \  \  \  invoice\.invoice_line_ids\ \+=\ line


 \  \  \  \  return\ True

and\ this\ in\ xml:

 \  \  

 \  \  \  \  

 \  \  \  \  ir\.ui\.view">

 \  \  \  \  \  \  account.invoice.form.merge.button

             account.move

             

             

                 

                     

                 

             

         

     




What I am trying to do is the following: I make 4 sales orders, the 4 orders have the same customer and the same products (which are 4 products, snacks, chocolates, juices, soft drinks) but with different quantities, I select the 4 sales orders. sale and I make an invoice in which the invoice shows me all the products that have the 4 sales orders only on the invoice, until then everything is fine... on the invoice there is a button to access the 4 sales orders where the invoice was generated, the method is called action_view_source_sale_orders, now, on the invoice when I click on the button called "Merge repeated lines", the products are merged without problem, BUT it alters the action_view_source_sale_orders button, because When I merge the repeated products of the invoice, in the other button where it shows the sales orders, instead of being 4 orders there are now 2... how can I prevent the action_view_source_sale_orders method from being altered?

0
Awatar
Odrzuć
Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
Sales quotations for event management
sales products
Awatar
Awatar
1
lis 23
2194
How to create a product that combines several services? Rozwiązane
sales products
Awatar
Awatar
1
kwi 24
4523
What is the meaning of Locked SOs vs "Not Locked" Rozwiązane
sales order
Awatar
Awatar
1
lut 22
5142
how can I apply Cash on delovery payment in e-commerce ? Rozwiązane
sales order
Awatar
Awatar
2
mar 24
3755
Add custom fields to sales order Rozwiązane
sales order
Awatar
Awatar
Awatar
Awatar
Awatar
7
mar 21
69517
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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