after adding note in the delivery slip, it does not show while printing
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 회계
- 재고 관리
- PoS
- Project
- MRP
신고된 질문입니다
2
답글
4578
화면
Hi Adamu,
I had the same request from our client and answer from Cybrosys was not working - here is my code modified (working on v15):
< template id="report_delivery_document_inherit_custom_module" inherit_id="stock.report_delivery_document">
< xpath expr="//div[@name='signature']" position="after">
< p t-esc="o.sale_id.note"/>
< /xpath>
< /template>
Hi,
You can add note in delivery slip by inheriting the delivery slip template like below.
< template id="report_delivery_document_inherit_custom_module" inherit_id="stock.report_delivery_document">
< xpath expr="//div[@name='signature']" position="after">
< p t-field="o.note"/>
< /xpath>
< /template>
Regards
관련 게시물 | 답글 | 화면 | 활동 | |
---|---|---|---|---|
|
1
9월 24
|
3290 | ||
|
2
9월 15
|
4703 | ||
|
4
12월 23
|
3898 | ||
|
2
10월 23
|
1614 | ||
|
0
3월 15
|
4908 |
The note is only printed on the Picking operation but not on the delivery slip.
Did you find a solution to print on the Delivery slip?