跳至內容
選單
此問題已被標幟
1 回覆
1161 瀏覽次數

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

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
0
8月 22
1695
0
6月 22
2844
1
6月 24
1313
0
3月 16
3473
1
7月 24
1413