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

How does journal entry create with value when do inventory internal transfer in odoo?

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
accountinginventoryjournal_entryinternal-transfer
4 Odpowiedzi
2696 Widoki
Awatar
Zahra Naveed

Does someone help me understand how to achieve this? I want to create a valuation for the internal inventory transfer between 2 warehouses?

0
Awatar
Odrzuć
Awatar
LupEco
Najlepsza odpowiedź

In Odoo, internal transfers typically don't create journal entries with value unless you've set up your system to track stock valuation. Here's how to do it:

Go to the Inventory app, then Configuration > Settings.

Under Valuation, choose Real Time or Manual.

Link your Stock Input and Stock Output accounts in the Product Categories under Accounting.  Once set up, Odoo will automatically create journal entries during internal transfers.

0
Awatar
Odrzuć
Awatar
Cybrosys Techno Solutions Pvt.Ltd
Najlepsza odpowiedź

Hi,

By default, Odoo does not create accounting entries for internal transfers, because it assumes all internal locations are part of the same company and valuation only changes when stock enters or leaves the company (purchase/sale, production, scrap).


If both warehouses are in the same company, but you still want a valuation for transfers, please refer to the following code:


from odoo import models, api


class StockPicking(models.Model):

    _inherit = 'stock.picking'


    @api.model

    def _create_internal_transfer_journal_entry(self, picking):

        # Make sure it's internal transfer

        if picking.picking_type_id.code != 'internal':

            return


        # Use your desired journal

        journal = self.env['account.journal'].search([('type', '=', 'general')], limit=1)


        # Loop through moves to get valuation

        for move in picking.move_ids_without_package:

            debit_account = move.location_dest_id.valuation_in_account_id.id

            credit_account = move.location_id.valuation_out_account_id.id

            amount = move.product_id.standard_price * move.product_uom_qty


            if not (debit_account and credit_account and amount):

                continue


            move_vals = {

                'journal_id': journal.id,

                'date': picking.scheduled_date or fields.Date.today(),

                'ref': picking.name,

                'line_ids': [

                    (0, 0, {

                        'name': f'Transfer {move.product_id.display_name}',

                        'account_id': debit_account,

                        'debit': amount,

                        'credit': 0.0,

                    }),

                    (0, 0, {

                        'name': f'Transfer {move.product_id.display_name}',

                        'account_id': credit_account,

                        'debit': 0.0,

                        'credit': amount,

                    }),

                ]

            }

            self.env['account.move'].create(move_vals).action_post()


    def button_validate(self):

        res = super(StockPicking, self).button_validate()

        self._create_internal_transfer_journal_entry(self)

        return res



Hope it helps.

0
Awatar
Odrzuć
Awatar
Dhrumi (Wan Buffer Services)
Najlepsza odpowiedź

Why No Journal Entry Is Created:

  • Internal transfers are purely logistical operations — they move stock between internal locations like warehouses or shelves.
  • No cost impact or ownership change occurs, so Odoo’s accounting system doesn’t record it as a financial transaction.

When Journal Entries Are Created in Inventory:

  1. Customer Delivery (Outgoing Shipment)
    → Debit: Cost of Goods Sold (COGS)
    → Credit: Inventory Valuation
  2. Vendor Receipt (Incoming Shipment)
    → Debit: Inventory Valuation
    → Credit: GRNI or Account Payable (based on configuration)
  3. Manufacturing or Scrap
    → Also generates entries depending on the valuation setup.

If You Need Journal Entries for Internal Transfers:

You can achieve this using one of the following:

Option 1: Enable Automated Valuation with Custom Locations

  • Use automated inventory valuation (real-time) with separate accounts per location.
  • Set up stock valuation accounts per location in Inventory > Locations > Accounting.

Option 2: Create a Custom Module

  • Use stock.picking and account.move models to auto-generate accounting entries during internal transfer.
  • Trigger on done state of the transfer.

0
Awatar
Odrzuć
Awatar
Ray Carnes (ray)
Najlepsza odpowiedź

Internal Inventory transfers don't generate Journal Entries.

You need to deliver and receive the product, then use the Landed Cost feature to add the transporation costs of the movement.

  • Internal Transfers are meant when the movement is near instant and/or done by one person and/or there is no chance of loss or damage of goods and/or incurs no fee.
  • Deliveries and Receipts are meant when the movement takes time and/or is done by more than one person and/or there is a chance of loss or damage of goods and/or incurs a fee.
0
Awatar
Odrzuć
Zahra Naveed
Autor

agreed to disagree, many operations are done inside the same company, for which an internal transfer is needed, with value transfer.
I agree that not all businesses need this, but there should be a way to check or uncheck this choice.
Thanks anyways.

Ray Carnes (ray)

Deliveries and Receipts can still be done inside the same Company (if the warehouses are for the same company).

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ść
Inventory Valuation - moving from Manual (periodic) to Automated (real time) on Odoo 16
accounting inventory
Awatar
Awatar
Awatar
Awatar
Awatar
4
wrz 25
2963
Inter-Company Transfer – Cost Becomes Zero in Receiving Company (Odoo 18.3) Rozwiązane
accounting inventory
Awatar
2
wrz 25
2986
How to make an internal transfer in Odoo version 18? Rozwiązane
accounting internal-transfer
Awatar
Awatar
Awatar
Awatar
4
lis 25
10821
Journal Entry in Stock Interim (Delivered) Rozwiązane
accounting inventory
Awatar
Awatar
1
wrz 25
2919
2 Step process Transfer
inventory internal-transfer
Awatar
Awatar
1
wrz 24
2316
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