docx_report_generation/models/product_product.py
2021-04-30 16:09:18 +05:00

13 lines
390 B
Python

from odoo import fields, models
class ProductProduct(models.Model):
_inherit = "product.product"
description_sale = fields.Text(
"Sale Description",
translate=True,
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",
)