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

Hi ,

Is it possible to block drag event in kanban view. In opportunity i've defined stages and i want the user to only view the opportunities by its stages in kanban view and not to change the stages. i've already made the opportunity statusbar readonly. Kindly clarify me on this.

形象
丢弃

I would also like to know how to do this.

最佳答案

"Edit KanbanView" (if the link does not appear, click on the Kanban icon)

Set <kanban edit="false" quick_create="false"

edit="false" disable drag&drop

quick_create="false" disable the + icons

形象
丢弃
最佳答案

I managed to do this with a constraint in the code. We haven't found any other way to do this yet.

The constraint basically checks if the user is in an allowed group to do the change that the drag and drop makes to the record.

形象
丢弃

Please, can you give me an example how can I block it by constratints? For example for project.task

编写者

Thanks for your reply Carlos. Could you tell me how you've specified the constraint and where? Again Thanks for your time.

carlos, can you explain me how you restricted via the constraints?? i need that

@Carlos: I have the same requirements. Can you please help me to achieve it.

最佳答案


File:  /web_kanban/static/src/js/kanban_view.js

Search the following content

var record_options = _.extend(this.record_options, {
     draggable: draggable,
 });

 Then add following code above that.

var models = ['project.task', 'project.project']; // add more models to be disabled
if(models.includes(this.dataset.model)){
     draggable = false
}
This is working in odoo 10th version.
形象
丢弃

Hi Shameem, how do you disable drag and drop for a certain group?

最佳答案

To Disable Drag and Drop of Kanban View  records we need to modify at web_kanban module.

Path : web_kanban/static/src/js

File : kanban_view.js

Modification : Search for the below code

var record_options = _.extend(this.record_options, {
            draggable: draggable,

        });

Then add draggable = false above given block of code like,

draggable = false   [Note : This is the newly added line]
var record_options = _.extend(this.record_options, {
            draggable: draggable,
        });
形象
丢弃
最佳答案

Did anyone find a solution for only allowing users in an allowed group to do the change that the drag and drop makes to the record. We would like to put restrictions on users shifting tasks into the task stage "done". Only certain users should be allowed to do that.

形象
丢弃
最佳答案

For disable drag&drop on entire kanban use:

<kanban edit="false"  ...


For enable drag&drop on specific card use:

<t t-name="kanban-box"> 
    <t t-if="record.state.raw_value=='draft'">
        <t t-set="dragdrop" t-value="'oe_kanban_draghandle'"/>
    </t>
    <t t-if="record.state.raw_value!='draft'">
        <t t-set="dragdrop" t-value="''"/>
    </t>
    <div t-attf-class="oe_kanban_card oe_kanban_global_click #{dragdrop}">

...


形象
丢弃
相关帖文 回复 查看 活动
1
1月 25
1781
1
10月 24
2827
0
8月 22
2652
0
3月 22
2627
9
7月 21
62947