Ir al contenido
Menú
Se marcó esta pregunta
2 Respuestas
158 Vistas

<field name="locked" invisible="1"/>

<field name="authorized_transaction_ids" invisible="1"/>

<button name="payment_action_capture" type="object" data-hotkey="shift+g" string="Capture Transaction" class="oe_highlight" invisible="not authorized_transaction_ids"/>

<button name="payment_action_void" type="object" string="Void Transaction" data-hotkey="shift+v" confirm="Are you sure you want to void the authorized transaction? This action can't be undone." invisible="not authorized_transaction_ids"/>

<button string="Resume" name="resume_subscription" type="object" data-hotkey="r" class="btn-primary" invisible="subscription_state != '4_paused'"/>


Field "transferred_id" does not exist in model "sale.order"

Avatar
Descartar

What is your question? "Odoo update 15 - 18" is not a question - are you upgrading yourself? Using the Odoo upgrade service? transferred_id is not a standard Odoo field - is this a custom module?

Autor

dont fix problem because migration odoo 15 to 18 with used odoo.sh upgrade

Autor Mejor respuesta

dont fix problem because migration odoo 15 to 18 with used odoo.sh upgrade

Avatar
Descartar
Mejor respuesta

Hi,


The error appears because the field transferred_id does not exist anymore in the sale.order model in Odoo 15–18.


This usually happens if your database still has an old or custom view that references the field.


Go to Settings → Technical → User Interface → Views, search for model = sale.order.

Open the view that contains <field name="transferred_id"/>.

Remove that line, or comment it out and save the view.

Update/reload the page: the error should disappear since Odoo will no longer try to display a non-existent field.


Hope it helps.

Avatar
Descartar
Autor

dont fix problem because migration odoo 15 to 18 with used odoo.sh upgrade