2017-06-21 8 views

答えて

3
<act_window 
    id="act_test_test" 
    name="Am here" 
    res_model="account.move.line" 
    context="{'search_default_unreconciled':1, 'search_default_payable':1}" 
    domain="[('partner_id', '=', False)]" 
    src_model="account.invoice"/> 

act_windowは、特定のモデルのウィンドウ・アクションを作成するために使用されます。ここではaccount.move.line'. That is res_model`がリソース・モデルを定義するために使用されます。

これでどこかから呼び出す必要があります。これを行うには、メニューリンクを定義する必要があります。このタスクはsrc_modelによって行われます。モデル名を定義すると、メニューサブメニューAction/Moreの下にform/listビューでメニューリンクが表示されます。上の例ではaccount.invoiceを定義していますので、メニューは 'account.invoice model'のform/list viewの 'Action'に表示されます。 enter image description hereenter image description here

これは私が理解するものです。それがあなたを助けることを願っています。

関連する問題