Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
2 Ответы
3096 Представления

I like to add a button on all listviews but this code is not working in the account.move module


<?xml version="1.0" encoding="UTF-8"?>
<template xml:space="preserve">
<t t-extend="ListView.buttons">
<t t-jquery="button.o_list_button_add" t-operation="after">
<button type="button" class="btn btn-secondary o_button_importpdf" accesskey="f">
Import Pdf
</button>
<input type="file" class="o_file_importpdf" style="display:none" accept=".pdf"/>
</t>
</t>
</template>


on other module the code is working, what do i miss?


Аватар
Отменить
Лучший ответ

Hi Fleixi,

You have to Extend BillsListView.buttons for account.move


<? xml version = "1.0" encoding = "UTF-8"?>

<template xml: space = "preserve">

        <t t-extend = "BillsListView.buttons">

            <t t-jquery = "button.o_button_upload_bill" t-operation = "after">

                <button type = "button" class = "btn btn-secondary o_button_importpdf" accesskey = "f">

                    Import Pdf

                </button> 

                <input type = "file" class = "o_file_importpdf" style = "display: none" accept = ". pdf" />

            </t>

        </t>

</template> 

Thanks...

For more information Contact us:- https: //kanakinfosystems.com/odoo-development-services

Аватар
Отменить
Автор Лучший ответ

Thanks that helps a lot. Where do i find such information in the documentation?

Аватар
Отменить
Related Posts Ответы Просмотры Активность
1
нояб. 24
1362
1
апр. 23
2711
7
февр. 23
9274
0
сент. 22
1806
1
июл. 22
1564