Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
2 Răspunsuri
153 Vizualizări

<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"

Imagine profil
Abandonează

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 Cel mai bun răspuns

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

Imagine profil
Abandonează
Cel mai bun răspuns

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.

Imagine profil
Abandonează
Autor

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