docx_report_generation/models/product_product.py
2020-07-08 19:03:20 +05:00

13 lines
409 B
Python

from odoo import api, fields, models
class ProductProduct(models.Model):
_inherit = "product.product"
description_sale = fields.Text(
"Sale Description",
translate=True,
help="A description of the Product that you want to communicate to your customers. "
"This description will be copied to every Sales Order, Delivery Order and Customer Invoice/Credit Note",
)