Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

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

Subscriure's

Get notified when there's activity on this post

This question has been flagged
accountinginventoryjournal_entryinternal-transfer
4 Respostes
2712 Vistes
Avatar
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
Avatar
Descartar
Avatar
LupEco
Best Answer

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
Avatar
Descartar
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

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
Avatar
Descartar
Avatar
Dhrumi (Wan Buffer Services)
Best Answer

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
Avatar
Descartar
Avatar
Ray Carnes (ray)
Best Answer

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
Avatar
Descartar
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).

Enjoying the discussion? Don't just read, join in!

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

Registrar-se
Related Posts Respostes Vistes Activitat
Inventory Valuation - moving from Manual (periodic) to Automated (real time) on Odoo 16
accounting inventory
Avatar
Avatar
Avatar
Avatar
Avatar
4
de set. 25
2974
Inter-Company Transfer – Cost Becomes Zero in Receiving Company (Odoo 18.3) Solved
accounting inventory
Avatar
2
de set. 25
2987
How to make an internal transfer in Odoo version 18? Solved
accounting internal-transfer
Avatar
Avatar
Avatar
Avatar
4
de nov. 25
10845
Journal Entry in Stock Interim (Delivered) Solved
accounting inventory
Avatar
Avatar
1
de set. 25
2920
2 Step process Transfer
inventory internal-transfer
Avatar
Avatar
1
de set. 24
2317
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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