Skip to Content
Odoo Menu
  • Log ind
  • Prøv gratis
  • Apps
    Økonomi
    • Bogføring
    • Fakturering
    • Udgifter
    • Regneark (BI)
    • Dokumenter
    • e-Signatur
    Salg
    • CRM
    • Salg
    • POS Butik
    • POS Restaurant
    • Abonnementer
    • Udlejning
    Hjemmeside
    • Hjemmesidebygger
    • e-Handel
    • Blog
    • Forum
    • LiveChat
    • e-Læring
    Forsyningskæde
    • Lagerbeholdning
    • Produktion
    • PLM
    • Indkøb
    • Vedligeholdelse
    • Kvalitet
    HR
    • Medarbejdere
    • Rekruttering
    • Fravær
    • Medarbejdersamtaler
    • Anbefalinger
    • Flåde
    Marketing
    • Markedsføring på sociale medier
    • E-mailmarketing
    • SMS-marketing
    • Arrangementer
    • Automatiseret marketing
    • Spørgeundersøgelser
    Tjenester
    • Projekt
    • Timesedler
    • Udkørende Service
    • Kundeservice
    • Planlægning
    • Aftaler
    Produktivitet
    • Dialog
    • Godkendelser
    • IoT
    • VoIP
    • Vidensdeling
    • WhatsApp
    Tredjepartsapps Odoo Studio Odoo Cloud-platform
  • Brancher
    Detailhandel
    • Boghandel
    • Tøjforretning
    • Møbelforretning
    • Dagligvarebutik
    • Byggemarked
    • Legetøjsforretning
    Mad og værtsskab
    • Bar og pub
    • Restaurant
    • Fastfood
    • Gæstehus
    • Drikkevareforhandler
    • Hotel
    Ejendom
    • Ejendomsmægler
    • Arkitektfirma
    • Byggeri
    • Ejendomsadministration
    • Havearbejde
    • Boligejerforening
    Rådgivning
    • Regnskabsfirma
    • Odoo-partner
    • Marketingbureau
    • Advokatfirma
    • Rekruttering
    • Audit & certificering
    Produktion
    • Tekstil
    • Metal
    • Møbler
    • Fødevareproduktion
    • Bryggeri
    • Firmagave
    Heldbred & Fitness
    • Sportsklub
    • Optiker
    • Fitnesscenter
    • Kosmetolog
    • Apotek
    • Frisør
    Håndværk
    • Handyman
    • IT-hardware og support
    • Solenergisystemer
    • Skomager
    • Rengøringsservicer
    • VVS- og ventilationsservice
    Andet
    • Nonprofitorganisation
    • Miljøagentur
    • Udlejning af billboards
    • Fotografi
    • Cykeludlejning
    • Softwareforhandler
    Gennemse alle brancher
  • Community
    Få mere at vide
    • Tutorials
    • Dokumentation
    • Certificeringer
    • Oplæring
    • Blog
    • Podcast
    Bliv klogere
    • Udannelselsesprogram
    • Scale Up!-virksomhedsspillet
    • Besøg Odoo
    Få softwaren
    • Download
    • Sammenlign versioner
    • Udgaver
    Samarbejde
    • Github
    • Forum
    • Arrangementer
    • Oversættelser
    • Bliv partner
    • Tjenester til partnere
    • Registrér dit regnskabsfirma
    Modtag tjenester
    • Find en partner
    • Find en bogholder
    • Kontakt en rådgiver
    • Implementeringstjenester
    • Kundereferencer
    • Support
    • Opgraderinger
    Github Youtube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Få en demo
  • Prissætning
  • Hjælp

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

  • CRM
  • e-Commerce
  • Bogføring
  • Lager
  • PoS
  • Projekt
  • MRP
All apps
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Hjælp

How can I set it up so that the purchase_price (‘Cost’) field can also be changed in the ‘posted’ status in Model:'account.move'?

Tilmeld

Få besked, når der er aktivitet på dette indlæg

Dette spørgsmål er blevet anmeldt
developmentaccounting
1 Svar
2093 Visninger
Avatar
Martin Bando

How can I set it up so that the purchase_price (‘Cost’) field can also be changed in the ‘posted’ status? I use odoo 18.

1. I have added the costs, margin and margin (%) to the table in the ‘Accounting’ app:

from odoo import api, fields, models


class AccountMoveLine(models.Model):

    _inherit = "account.move.line"


    margin = fields.Float(

        "Margin", compute='_compute_margin',

        digits='Product Price', store=True, groups="base.group_user")

    margin_percent = fields.Float(

        "Margin (%)", compute='_compute_margin', store=True)

    purchase_price = fields.Float(

        string="Cost",

        digits='Product Price', store=True, readonly=False, copy=False)


    @api.depends('price_subtotal', 'quantity', 'purchase_price')

    def _compute_margin(self):

        for line in self:

            line.margin = line.price_subtotal - (line.purchase_price * line.quantity)

            line.margin_percent = line.price_subtotal and line.margin/line.price_subtotal 

2. Then I did the following:

class AccountMove(models.Model):

    _inherit ='account.move'


    invoice_line_ids = fields.One2many(  # /!\ invoice_line_ids is just a subset of line_ids.

        'account.move.line',

        'move_id',

        string='Invoice lines',

        copy=False,

        readonly=False,

        domain=[('display_type', 'in', ('product', 'line_section', 'line_note'))],

    )

<?xml version="1.0" encoding="utf-8"?>

<odoo>    

    <data>

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

            <field name="name">account.move.customer.form</field>

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

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

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

                <xpath expr="//field[@name='invoice_line_ids']" position="attributes">

                    <attribute name="readonly">0</attribute>

                </xpath>   

            </field>

        </record> 

    </data>

</odoo>

3. This is the field message I am currently receiving:

Invalid Operation

You cannot modify the following readonly fields on a posted move: invoice_line_ids

All other fields are read-only. How can I work around this?

0
Avatar
Kassér
Avatar
Christoph Farnleitner
Bedste svar

You could achieve this by setting skip_readonly_check to the context.

In general, about How can I work around this? - first of all it's important to find out where/when exactly the error message is raised. The easiest way to do so is be taking the first view words of an error message and search for it in the core source (there could be line breaks and other things going on, so you may not find the complete string in one line - thus, search for a portion of the message). This would lead you to https://github.com/odoo/odoo/blob/18.0/addons/account/models/account_move.py#L3257


Now that you've figured that this message is raised in the write()-method of account.move when skip_readonly_check is not part of the context and the move's state is (or is becoming) posted and a unmodifiable field is to be changed, you can try to find the least intrusive way on modifying the behavior. 


One options is, as stated on top, to pass the context key skip_readonly_check under certain circumstances, namely, if nothing else but the purchase_price is being set. You could do this for example by evaluating the vals dictionary passed to the write() method:


class AccountMove(models.Model):
_inherit = 'account.move'

def write(self, vals):
print(f'vals: {vals}') # vals: {'invoice_line_ids': [[1, <line id>, {'purchase_price': <value>}]]}
if set(vals.keys()) == {'invoice_line_ids'}:
# The only change to the account move is a change in of oe or more invoice lines
for line_command in vals['invoice_line_ids']:
print(f'line_command: {line_command}') # line_command: [1, <line id>, {'purchase_price': <value>}]
if line_command[0] != 1 or set(line_command[2].keys()) != {'purchase_price'}:
# A field other than the Cost is changed on an account move line
break
else:
# Nothing but Costs are changed on invoice lines, thus it should be safe to
# skip the readonly check (relevant to posted moves only)
self = self.with_context(skip_readonly_check=True)
return super(AccountMove, self).write(vals)


It should be mentioned that this is not a final solution since other fields of an account move may need to be editable as well, for example the due date; while it still is editable, using above snipped unaltered will not allow you to change it along with a change in cost at the same time, because vals then would be something like

{'invoice_line_ids': [[1, <line id>, {'purchase_price': <value>}]], 'invoice_date_due': <date>}

and therefore the first if-condition would be False.

Side note: why the cost of a product needs to be tracked on the invoice is a whole different story. Sale Orders would allow this by default already.

0
Avatar
Kassér
Enjoying the discussion? Don't just read, join in!

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

Tilmeld dig
Related Posts Besvarelser Visninger Aktivitet
Restrict QWeb Report in Print Menu to Vendor Payments Only in Odoo 17
development accounting
Avatar
Avatar
1
okt. 25
457
Error in followup report
development accounting
Avatar
Avatar
1
aug. 25
1556
Tax report Switzerland
development accounting
Avatar
0
maj 25
1341
Individual Payment Reconcile Løst
development accounting
Avatar
Avatar
1
apr. 25
2821
Vendor Credit Note Løst
development accounting
Avatar
Avatar
1
sep. 25
1931
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Oversættelser
Tjenester
  • Odoo.sh-hosting
  • Support
  • Opgradere
  • Individuelt tilpasset udvikling
  • Uddannelse
  • Find en bogholder
  • Find en partner
  • Bliv partner
Om os
  • Vores virksomhed
  • Brandaktiver
  • Kontakt os
  • Stillinger
  • Arrangementer
  • Podcast
  • Blog
  • Kunder
  • Juridiske dokumenter • Privatlivspolitik
  • Sikkerhedspolitik
الْعَرَبيّة 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 er en samling open source-forretningsapps, der dækker alle dine virksomhedsbehov – lige fra CRM, e-handel og bogføring til lagerstyring, POS, projektledelse og meget mere.

Det unikke ved Odoo er, at systemet både er brugervenligt og fuldt integreret.

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