Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Odoo 11 insert invoice_line_ids from stock.move data

Subscribe

Get notified when there's activity on this post

This question has been flagged
odoo11odoo11communityOdoo11Odoo11.011.0
2 Replies
6812 Views
Avatar
Ignacio Raga

Hi there! I'm developing a custom module that allows users to add related stock moves to invoices. I want each one of this related stock moves added as an invoice line to the current invoice so I'm trying to create an invoice_line_ids from this related stock moves but its not working. I've been doing some modifications to the code and I get several errors, but I can't understand why the code is not working properly.


Here is my custom view

<odoo>
	<record id="invoice_stock_moves" model="ir.ui.view">
	    <field name="name">account.invoice.related_stock_moves</field>
	    <field name="model">account.invoice</field>
	    <field name="inherit_id" ref="account.invoice_supplier_form"/>
	    <field name="arch" type="xml">
	        <xpath expr="//page" position="after">
				<page string="Movimientos asociados" attrs="{'invisible': [('partner_id', '=', False)]}">
					<field name="related_stock_moves" widget="many2many" options="{'no_create': True}" domain="['&amp;', ('state','=','done'), ('picking_partner_id','=',context.get('partner_id')), '&amp;', ('x_invoice_id','=',False)]" attrs="{'readonly':[('state','not in',('draft',))]}">
					  <tree>
						<field name="state" invisible="1"/>
						<field name="date" />
						<field name="picking_partner_id" invisible="1"/>
						<field name="reference" />
						<field name="product_id" />
						<field name="product_uom_qty" string="Cantidad" />
						<field name="product_uom" />
					  </tree>
					</field>
				</page>
	        </xpath>
	    </field>
	</record>
</odoo>


And here my .py defining the model

# -*- coding: utf-8 -*-
from odoo import api, fields, models

import logging
_logger = logging.getLogger(__name__)

class Move(models.Model):
    _inherit = 'stock.move'


    x_invoice_id = fields.Many2one('account.invoice',
        string="Factura de referencia", ondelete='set null')


class Invoice(models.Model):
    _inherit = 'account.invoice'

    related_stock_moves = fields.One2many('stock.move',
        'x_invoice_id', 'related_stock_moves', string="Movimiento asociado")


    invoice_line_ids = fields.One2many('account.invoice.line',
        'invoice_id', string="Líneas de la factura", compute='_add_lines')

## Retrieve product_id and product_uom_qty
    @api.depends('related_stock_moves')
    @api.one
    def _add_lines(self):
        for move in self.related_stock_moves:
            self.env['account.invoice.line'].create({
                    'account_id': self.account_id.id,
                    'invoice_id': self.id,
                    'product_id': move.product_id.id,
                    'quantity': move.product_uom_qty,
                    'name': move.product_id.description,
                    'price_unit': '0.0'
            })

I'm not sure if I should be using a computed field, I want the invoice lines added when a related stock move is added. 


Any help is kindly appreciated, thanks for your time <3

0
Avatar
Discard
Begineer

I have updated my answer for your requirement, please check to it.

Avatar
Begineer
Best Answer

Hello,

You can do this by using a button function.

In .py

@api.multi

def action_add_lines(self):

    invoice_line_obj = self.env['account.invoice.line']

    for each in self:

        for move in each.related_stock_moves:

            invoice_line_obj.create({

            'account_id': each.account_id.id, 
            'invoice_id': each.id,
            'product_id': move.product_id.id,
            'quantity': move.product_uom_qty,
            'name': move.product_id.description,
            'price_unit': '0.0'

})            
    return True

In xml,

You can define the button using xpath since your inheriting account.invoice,

<record model="ir.ui.view" id="invoice_form_inherit">

            <field name="name">account.invoice.form</field>

            <field name="model">account.invoice</field>

            <field name="inherit_id" ref="account.invoice_form"/>

            <field name="arch" type="xml">

            <xpath expr="/form/header/button[@name='action_invoice_open']" position="after">

                <button name="action_add_lines" string="Add Lines" type="object" class="oe_highlight" states="draft"/>

            </xpath>

            </field>

</record>


Okay without a button function you can do it by onchange of related_stock_moves field,

class Invoice(models.Model):

    _inherit = 'account.invoice'

    

    @api.onchange('related_stock_moves')   

    def onchange_related_stock_moves(self):

        if self.related_stock_moves:

            new_lines = self.env['account.invoice.line']

            for move in self.related_stock_moves - self.invoice_line_ids.mapped('stock_move_id'):

                data = {

                    'account_id': self.account_id.id, 

                    'invoice_id': self.id, 

                    'product_id': move.product_id.id, 

                    'quantity': move.product_uom_qty, 

                    'name': move.product_id.description, 

                    'price_unit': 0.0

                    'stock_move_id': move.id

                }

                new_line = new_lines.new(data)

                new_lines += new_line

            self.invoice_line_ids = new_lines

        return {}

        

class InvoiceLine(models.Model):

    _inherit = 'account.invoice.line'


    stock_move_id = fields.Many2one('stock.move', string='Stock Move')


In order to do this, you should have a many2one link of stock move in account.invoice.line

0
Avatar
Discard
Avatar
Ignacio Raga
Author Best Answer

Thanks @Karthikeyan N R, I've been able to add the invoice lines with your action button. I'll be trying now to do this without requiring a button click from the user and I will share the updates here :)

status of my code atm

.py
from odoo import api, fields, models

import logging
_logger = logging.getLogger(__name__)

class Move(models.Model):
    _inherit = 'stock.move'


    x_invoice_id = fields.Many2one('account.invoice',
        string="Factura de referencia", ondelete='set null')


class Invoice(models.Model):
    _inherit = 'account.invoice'

    related_stock_moves = fields.One2many('stock.move',
        'x_invoice_id', string="Movimiento asociado")


    @api.multi
    def action_add_lines(self):
        invoice_line_obj = self.env['account.invoice.line']
        for each in self:
            for move in each.related_stock_moves:
                rec = {
                    'account_id': each.account_id.id,
                    'invoice_id': each.id,
                    'product_id': move.product_id.id,
                    'quantity': move.product_uom_qty,
                    'name': move.product_id.name,
                    'price_unit': '0.0'
                }
                invoice_line_obj.create(rec)
        return True
my custom view

<odoo>
	<record id="invoice_stock_moves" model="ir.ui.view">
	    <field name="name">account.invoice.related_stock_moves</field>
	    <field name="model">account.invoice</field>
	    <field name="inherit_id" ref="account.invoice_supplier_form"/>
	    <field name="arch" type="xml">
	        <xpath expr="//page" position="after">
				<page string="Movimientos asociados" attrs="{'invisible': [('partner_id', '=', False)]}">
					<field name="related_stock_moves" widget="many2many" options="{'no_create': True}" domain="['&amp;', ('state','=','done'), ('picking_partner_id','=',context.get('partner_id')), '&amp;', ('x_invoice_id','=',False)]" attrs="{'readonly':[('state','not in',('draft',))]}">
					  <tree>
						<field name="state" invisible="1"/>
						<field name="date" />
						<field name="picking_partner_id" invisible="1"/>
						<field name="reference" />
						<field name="product_id" />
						<field name="product_uom_qty" string="Cantidad" />
						<field name="product_uom" />
					  </tree>
					</field>
					<button name="action_add_lines" string="Añadir a factura" type="object" class="oe_highlight" states="draft"/>
				</page>
	        </xpath>
	</record>
</odoo>
I'm still trying to understand how to do this without requiring a button click
0
Avatar
Discard
Enjoying the discussion? Don't just read, join in!

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

Sign up
Related Posts Replies Views Activity
Odoo Date Total In Version 11 Solved
odoo11 odoo11community odoo11.0 Odoo11
Avatar
Avatar
Avatar
3
Mar 19
4329
py3o template report
reporting odoo11 odoo11community odoo11.0 Odoo11.0
Avatar
0
Aug 25
1338
how to pass element tree to other function TypeError: 'ElementTree' object is not iterable - - -
odoo11 odoo12.0 odoo11community odoo11.0 Odoo11
Avatar
Avatar
1
May 20
7600
Hide field using One2many domain Solved
domain odoo11 odoo11community odoo11.0 Odoo11
Avatar
Avatar
1
Jan 19
6885
Menu dropdown_click outside to collapse
odoo odoo11 odoo11community odoo11.0 Odoo11
Avatar
Avatar
Avatar
3
Dec 18
9862
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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