good morning,
/
with reference to odoo online v17 new user.
In my online shop I wrote the item description in = warehouse/products/sales tab/sales description... about 30 - 40 words.
problem: if I create a new quote or order, the description also appears in addition to the name, the document has too many lines!
Solution: I opened app studio / sales / report / opened the: pro forma invoice -- selected at the bottom left: edit html sources
-- which code tag should be deleted to prevent the product description from appearing in the PDF?
Bacon Burger
3
units
( )
I inserted the html code relating to the proforma invoice PDF in the comment.
I don't understand why it resumes a default article: BACON BURGHER, this article doesn't have a long description and therefore I can't understand the solution.
Has anyone solved this problem? How do you manage description in online articles?
thank you very much
<t t-if="not line.display_type">
<td name="td_name"><span t-field="line.name">Bacon Burger</span></td>
<td name="td_quantity" class="text-end">
<span t-field="line.product_uom_qty">3</span>
<span t-field="line.product_uom">units</span>
<span t-if="line.product_packaging_id">
(<span t-field="line.product_packaging_qty" t-options="{"widget": "integer"}"/> <span t-field="line.product_packaging_id"/>)
</span>