docx_report_generation/models/product_product.py

13 lines
390 B
Python
Raw Normal View History

2021-04-29 23:32:23 +05:00
from odoo import fields, models
class ProductProduct(models.Model):
_inherit = "product.product"
description_sale = fields.Text(
"Sale Description",
translate=True,
2021-04-30 16:09:18 +05:00
help="A product's description you want to inform to your customers.\n"
"This description will be copied to every Sales Order, Delivery Order and Customer Invoice/Credit Note",
)