Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

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'?

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
developmentaccounting
1 Responder
2228 Vistas
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
Descartar
Avatar
Christoph Farnleitner
Mejor respuesta

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
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
Restrict QWeb Report in Print Menu to Vendor Payments Only in Odoo 17
development accounting
Avatar
Avatar
1
oct 25
562
Error in followup report
development accounting
Avatar
Avatar
1
ago 25
1647
Tax report Switzerland
development accounting
Avatar
0
may 25
1404
Individual Payment Reconcile Resuelto
development accounting
Avatar
Avatar
1
abr 25
2915
Vendor Credit Note Resuelto
development accounting
Avatar
Avatar
1
sept 25
1975
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

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