콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
1403 화면

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
1801
0
6월 22
3055
1
6월 24
1568
0
3월 16
3687
1
7월 24
1708