跳至内容
菜单
此问题已终结
2 回复
159 查看

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

形象
丢弃

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?

编写者

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

编写者 最佳答案

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

形象
丢弃
最佳答案

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.

形象
丢弃
编写者

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