Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
4 Replies
9457 Tampilan

i have xml with noupdate="1", to delete some model.

but when i update module the delete xml still called.

how to prevent xml delete again. this is my code:

<odoo>

    <data noupdate="1">

        <delete model="ir.actions.report.xml" id="purchase.action_report_purchase_order"/>

        <delete model="ir.actions.report.xml" id="purchase.report_purchase_quotation"/>

    </data>

</odoo>

Avatar
Buang

Interested in a solution as well, did you find something?

Penulis

still didn't have solution. when update module via terminal show some error message, but when system running, the error not affected on system, and module have no error again.

Jawaban Terbai


In Odoo 10 and up (and maybe earlier), you can specify a "search" attribute like so, which only deletes found records:

<delete model="ir.actions.report.xml" search="[('id', '=', ref('purchase.action_report_purchase_order'))]"/>

In older versions of Odoo, you can first create a minimal dummy record before deleting it (I have not tested this):

<report id="purchase.action_report_purchase_order" model="purchase.order"/>
<delete model="ir.actions.report.xml" id="purchase.action_report_purchase_order"/>
Avatar
Buang
Jawaban Terbai

Duplicate the "contact creation" group, and remove the delete right for all models in the access rights tab.

Then asign that group to the selected user,


Kind regards,

Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
1
Agu 24
1663
1
Nov 23
4162
1
Apr 24
2170
Delete my account Diselesaikan
3
Nov 24
10421
1
Agu 22
2929