تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1 الرد
1814 أدوات العرض

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)

الصورة الرمزية
إهمال
أفضل إجابة

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

الصورة الرمزية
إهمال

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>

المنشورات ذات الصلة الردود أدوات العرض النشاط
1
يوليو 23
2128
0
نوفمبر 22
1561
0
يونيو 25
716
1
فبراير 25
1268
0
أبريل 19
3268