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
- Contabilidad
- Inventario
- PoS
- Project
- MRP
Se marcó esta pregunta
2
Respuestas
4250
Vistas
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
¿Le interesa esta conversación? ¡Participe en ella!
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
InscribirsePublicaciones relacionadas | Respuestas | Vistas | Actividad | |
---|---|---|---|---|
|
1
sept 24
|
2892 | ||
|
2
sept 15
|
4436 | ||
|
4
dic 23
|
3460 | ||
|
2
oct 23
|
1366 | ||
|
0
mar 15
|
4654 |
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?