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

Hello,


We are using odoo13 community version , windows.

We need your help for add price ,total price and tax in delivery slip.


Thanking you.

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

Hi,

Inherit the Existing Report Template

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="report_delivery_document_inherit_sale_stock" inherit_id="stock.report_delivery_document">
<xpath expr="//div[@name='div_sched_date']" position="after">
            <div class="row justify-content-end">
                <div class="col-auto">
                    <strong>Unit Price:</strong>
                    <p t-field="field value"/>

                    <strong>Total Price:</strong>
                    <p t-field="field value"/>

                    <strong>Tax:</strong>
                    <p t-field="field value"/>
                </div>
            </div>
        </xpath>
    </template>
</odoo>


Hope it helps

Аватар
Отменить
Related Posts Ответы Просмотры Активность
0
авг. 22
1693
0
июн. 22
2842
1
июн. 24
1313
0
мар. 16
3473
1
июл. 24
1410