コンテンツへスキップ
Odoo メニュー
  • サインイン
  • 無料で15日試す
  • アプリ
    財務
    • 会計
    • 請求
    • 経費
    • スプレッドシート(BI)
    • ドキュメント管理
    • 署名
    販売
    • CRM
    • 販売
    • POS店舗
    • POSレストラン
    • サブスクリプション
    • レンタル
    ウェブサイト
    • ウェブサイトビルダー
    • eコマース
    • ブログ
    • フォーラム
    • ライブチャット
    • eラーニング
    サプライチェーン
    • 在庫
    • 製造
    • 製品ライフサイクル管理 (PLM)
    • 購買
    • 整備
    • 品質
    人事業務
    • 従業員管理
    • 採用
    • 休暇管理
    • 人事評価
    • リファラル
    • フリート
    マーケティング
    • ソーシャルマーケティング
    • メールマーケティング
    • SMSマーケティング
    • イベント
    • マーケティングオートメーション
    • アンケート調査
    サービス
    • プロジェクト管理
    • タイムシート
    • フィールドサービス
    • ヘルプデスク
    • 計画
    • アポイントメント
    生産性向上ツール
    • ディスカッション
    • 承認
    • IoT
    • VoIP
    • ナレッジ
    • WhatsApp
    サードパーティアプリ Odooスタジオ Odooクラウドプラットホーム
  • インダストリー(業種別ソリューション)
    小売
    • 書店
    • アパレルショップ
    • 家具専門店
    • 食料品店
    • 金物店
    • 玩具店
    飲食・ホスピタリティ業界
    • バー・パブ
    • レストラン
    • ファストフード
    • ゲストハウス
    • 飲料販売代理店
    • ホテル
    不動産
    • 不動産会社
    • 建築事務所
    • 建設
    • 不動産管理
    • 造園
    • 住宅所有者組合
    コンサルティング
    • 会計事務所
    • Odooパートナー
    • マーケティングエージェンシー
    • 法律事務所
    • 人材派遣
    • 監査・認証
    製造
    • テキスタイル
    • 金属
    • 家具
    • 飲食
    • 醸造所
    • コーポレートギフト
    ヘルス & フィットネス
    • スポーツクラブ
    • 眼鏡店
    • フィットネスセンター
    • ウェルネス専門家
    • 薬局
    • ヘアサロン
    業種
    • 便利屋
    • IT ハードウェア・サポート
    • 太陽エネルギーシステム
    • 靴メーカー
    • クリーニングサービス
    • 空調設備サービス
    その他
    • 非営利団体
    • 環境機関
    • ビルボードレンタル
    • 写真
    • 自転車リース
    • ソフトウェアリセラー
    すべての業種を見る
  • コミュニティ
    学ぶ
    • チュートリアル
    • ドキュメンテーション
    • 認定
    • トレーニング
    • ブログ
    • ポッドキャスト
    教育サポート
    • 教育プログラム
    • Scale Up! ビジネスゲーム
    • Odooオフィス訪問
    ソフトを入手
    • ダウンロード
    • エディションを比較
    • リリース
    コラボレーション
    • Github
    • フォーラム
    • イベント
    • 翻訳
    • パートナーになる
    • パートナー様向けサービス
    • 会計事務所を登録
    サービス利用
    • パートナー一覧
    • 会計事務所一覧
    • 今すぐ相談する
    • 導入支援サービス
    • お客様一覧
    • サポート
    • アップグレード
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    製品デモを利用する
  • 料金
  • ヘルプ

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

  • CRM
  • e-Commerce
  • 会計
  • 在庫
  • PoS
  • プロジェクト
  • MRP
All apps
コミュニティで交流するには登録する必要があります。
全てのポスト 人々 バッジ
タグ (全て表示)
odoo accounting v14 pos v15
このフォーラムについて
コミュニティで交流するには登録する必要があります。
全てのポスト 人々 バッジ
タグ (全て表示)
odoo accounting v14 pos v15
このフォーラムについて
ヘルプ

How to run a wizard from Python code?

購読

この投稿に活動があった際に通知を受け取ります

この質問にフラグが付けられました
3 返信
21267 ビュー
アバター
Juan Formoso Vasco

I've created the next wizard form in XML:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
        <record model="ir.ui.view" id="confirm_unlink_res_partner_bank_wizard_form">
            <field name="name">confirm.unlink.res.partner.bank.wizard.form</field>
            <field name="model">confirm.unlink.res.partner.bank.wizard</field>
            <field name="arch" type="xml">
                <form string="Confirm removing bank account" version="7.0">
                    <group colspan="8">
                        <group colspan="8">
                            <label string="Do you want to continue?"/>
                        </group>
                        <footer>
                            <button string="Confirm" name="unlink_res_partner_bank" type="object" class="oe_highlight"/>
                            or
                            <button string="Cancel" class="oe_link" special="cancel" />
                        </footer>
                    </group>
                </form>
            </field>
        </record>
    </data>
</openerp>

Here is its Python code (from the moment, the button does nothing):

class confirm_unlink_res_partner_bank_wizard(osv.TransientModel):
    _name = 'confirm.unlink.res.partner.bank.wizard'

    def unlink_res_partner_bank(self, cr, uid, ids, context=None):
        return

confirm_unlink_res_partner_bank_wizard()

What I want to manage: If the user tries to remove a res.partner.bank record, show them a pop-up (my wizard). So for that, I did the next:

class res_partner_bank(orm.Model):
    _inherit = 'res.partner.bank'

    def unlink(self, cr, uid, id, context=None):
            data_obj = self.pool.get('ir.model.data')
            form_data_id = data_obj._get_id(cr, uid, 'res_partner_extended', 'confirm_unlink_res_partner_bank_wizard_form')
            form_view_id = False
            if form_data_id:
                form_view_id = data_obj.browse(cr, uid, form_data_id, context=context).res_id
            return {
                'name': 'Confirm removing bank account',
                'view_type': 'form',
                'view_mode': 'form',
                'view_id': False,
                'views': [(form_view_id, 'form'),],
                'res_model': 'confirm.unlink.res.partner.bank.wizard',
                'type': 'ir.actions.act_window',
                'target': 'new',
                'flags': {'form': {'action_buttons': True},}
            }

But the wizard form is not showing up. However, I've checked the value of the variable form_view_id and it's right.

There must be anything else I'm missing. Can anyone help me, please?

1
アバター
破棄
Juan Formoso Vasco
著作者

I've just copied the code of other function I have which calls a simple form (not wizard) from Python (the function works perfectly) and pasted it into the unlink function. Nothing happens, so I'm starting to guess that there's any problem about calling a form from an unlink function, but I don't know.

Bole

You forgot that you need to pool.get('model_to_unlink') and call unlink action on thatmodel.. not on current(self) because current working model is in fact wizard model.. so confirm button should return self.pool.get('some_model').unlink(cr, uid, some_id)

Juan Formoso Vasco
著作者

Thank you @Bole! I'll do that but first I only wanted to see my wizard, in spite of this having no functionality for the moment.

Qutechs, Ahmed M.Elmubarak

try to check your function been called from the unlink, try to print "hello" ... and check the server...

Juan Formoso Vasco
著作者

Thank you @Ahmed M.Elmubarak, I've checked and the code inside unlink function is being executed. But for some reason the return isn't working as expected.

Juan Formoso Vasco
著作者

Is it possible to call a wizard from the unlink function of a model? Because I'm starting to think that it's not.

Bole

it is possible, but the unlink action is't called at all because you are actualy writing in different model.. see my comen below... you should call the wizard form res_partner write action,

Juan Formoso Vasco
著作者

Ok, I've just tried to execute the code I write in unlink from other function, one made by me. When I click on the button, the wizard is showing up, so it's work well!! The problem is when I try to call it from unlink, I don't know why...

アバター
Juan Formoso Vasco
著作者 最善の回答

It's not possible to return a dictionary from an ORM method. That's the reason for which I'm not able to return my wizard from the unlink function.

0
アバター
破棄
アバター
Kazim Mirza | Founder at TechUltra Solutions
最善の回答

Hello Juan

Every wizard have form view and id.

view_ref = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'Modal Folder Name', 'Form view id(confirm_unlink_res_partner_bank_wizard_form)')
        view_id = view_ref and view_ref[1] or False,
        return {
            'type': 'ir.actions.act_window',
            'name': _('Sales Order'),
            'res_model': 'sale.order',
            'res_id': ids[0], #If you want to go on perticuler record then you can use res_id 


            'view_type': 'form',
            'view_mode': 'form',
            'view_id': view_id,
            'target': 'current',
            'nodestroy': True,
        }

Please change code as per your need.

Hope that this answer will help you.

Please don't hesitate to ask any question regarding this.

Thank You

1
アバター
破棄
Bole

one thing:res_id in this case will have id of current record... you should create a wizard model record , and pass that id in order to open correct wizard page... my guess is this will thorow error because ids[0] passed to wizzard might not exist

Kazim Mirza | Founder at TechUltra Solutions

Hey Bole, Thnkz I forgot to mention that in answer.

Juan Formoso Vasco
著作者

Thank you @Kazim! I've tried your code and still same result. I didn't use res_id neither view_id earlier and it worked for other forms, so I guess that shouldn't be the reason, should it?

アバター
Bole
最善の回答

Wery simmilar to account.account_fiscalyear_close_state wizard ( check out code and behaivor)...

Basicly: 

put a boolen filed in your wizard and ask for confimation ( check field) before deletion...
when calling wizard, don't browse ir.model.data object.. rather call get_object_reference, or get_object methods..
nad retrive view_id in that way.. 

0
アバター
破棄
Juan Formoso Vasco
著作者

Hello @Bole! Thanks for helping me. I did what @Kazim and you said and stop using browse to using get_object_reference instead. I was looking that wizard you've told me, I'm so sorry but I can't find the similarity. I only want to show my wizard when I try to remove a res.partner.bank record. Note that I'm removing it from res.partner form (where res.partner.bank is a one2many), and I guess the pop-up isn't going to appear until I press the save button (to save the res.partner record). But my wizard never appears. By the way, what I have to specify res_id and view_id? I didn't do it earlier and the forms I called from Python always worked.

Bole

then you are trying to override wrong method.. instead of unlink on res.partner.bank.. you should do it in write of res.partner... and check res_partner_bank_ids ... it will contain list of tuples for each bank... if first element of tuple =4 ok, if it is 2 it means delete record.. then you should call wizard view... and returning from wizard will then be write on res.partner... that part was oveseen before :)

Juan Formoso Vasco
著作者

That's right @Bole, thank you! But to do it easier, I started to check the unlink from the res.partner.bank form and remove the records directly. If I raise a exception just before the return with the wizard data, when I click on remove record I see the message (so I'm overriding the method well), but if I do this without stopping the execution, the return doesn't take me to my wizard (or any other form).

ディスカッションを楽しんでいますか?読むだけでなく、参加しましょう!

今すぐアカウントを作成して、限定機能を利用したり、素晴らしいコミュニティと交流しましょう!

登録
コミュニティ
  • チュートリアル
  • ドキュメンテーション
  • フォーラム
オープンソース
  • ダウンロード
  • Github
  • Runbot
  • 翻訳
サービス
  • Odoo.shホスティング
  • サポート
  • アップグレード
  • カスタム開発
  • 教育プログラム
  • 会計事務所一覧
  • パートナー一覧
  • パートナーになる
企業情報
  • 会社概要
  • ブランドアセット
  • お問い合わせ
  • 採用情報
  • イベント
  • ポッドキャスト
  • ブログ
  • お客様一覧
  • リーガル情報 • プライバシーポリシー
  • セキュリティ
الْعَرَبيّة 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(オドゥー)は、CRM、eコマース、会計、在庫管理、POS、プロジェクト管理など、企業のさまざまな業務を一つのシステムで管理できる、ベルギー発のオープンソースのERPソフトウェアです。

高機能で使いやすく、完全に統合されたERPとして、ユニークな価値を提供しています。

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