コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
3415 ビュー

Is it possible to enable duplication in a tree view? The documentation currently says 'duplicate="1"' only works on form views... Is this possible for tree views as well?

If yes, how?

If no, why isn't this possible? This is such a basic, and in my opinion common, operation...

アバター
破棄
最善の回答

Hi,

BY default this is not possible in tree view, but you can achieve it using the help of a server action, which calls the copy function.

Create a server action named Copy for your model and that executes python code, add the below code into it and create a contextual action using it.

for record in records:
     record.copy()

Thanks

アバター
破棄
関連投稿 返信 ビュー 活動
0
10月 23
2112
2
9月 23
15026
1
3月 15
8509
2
3月 15
31091
1
3月 15
12132