Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
1172 Visualizzazioni

Hello,


We are using odoo13 community version , windows.

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


Thanking you.

Avatar
Abbandona
Risposta migliore

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

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
0
ago 22
1696
0
giu 22
2848
1
giu 24
1319
0
mar 16
3478
1
lug 24
1420