Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
1478 Lượt xem

Now I'm working with odoo15 and I have the following task:

you need to add next to the “Edit” button (in the calendar in a pop-up form clarifying with brief information), a “Completed” button, which will move the lead to the desired status for which this meeting is assigned. Tell me how to correctly add a button in a pop-up window (next to the edit button)

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hello Oleg,


To add the new button calendar in a popup form view next to the edit button here the steps below which you need to follow


step1:- make the module structure like this which I have already mentioned below



step2:- you need to inherit the correct template like this which i have mentioned the code for that also attach the image for code


//Code in Comment//



step3:- put your file in the manifest like this



Output Image:-



Hope this helps.

   

If you need any help in customization feel free to contact us.

       

Thanks & Regards,

Email:  odoo@aktivsoftware.com           

Skype: kalpeshmaheshwari

Ảnh đại diện
Huỷ bỏ

Code:

<?xml version="1.0" encoding="UTF-8"?>
<template>
<!-- Inherit the web.CalendarQuickCreate template -->
<t t-inherit="web.CalendarQuickCreate" t-inherit-mode="extension">
<xpath expr="//button[contains(@class, 'o-calendar-quick-create--edit-btn')]" position="after">
<!-- Add your custom buttons here -->
<button class="btn btn-primary o-calendar-quick-create--create-btn" t-on-click="onCreateBtnClick">
Custom
</button>
</xpath>
</t>
</template>

<t t-inherit="web.CalendarQuickCreate" - mention the name of the module in which the template belongs with template id
here the "web" is the module name and "CalendarQuickCreate" is template id

<xpath expr="//button[contains(@class, 'o-calendar-quick-create--edit-btn')]" inherit the correct button class like this and after
put your button like this

<button class="btn btn-primary o-calendar-quick-create--create-btn" t-on-click="onCreateBtnClick">
Custom
</button>

Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 7 23
1875
0
thg 11 22
1343
1
thg 2 25
949
0
thg 4 19
2993
1
thg 2 16
6451