Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
1128 Widoki

Hello,


We are using odoo13 community version , windows.

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


Thanking you.

Awatar
Odrzuć
Najlepsza odpowiedź

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

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
0
sie 22
1688
0
cze 22
2799
1
cze 24
1259
0
mar 16
3442
1
lip 24
1353