docx_report_generation/models/product_product.py

13 lines
388 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,
help="A product's description you want to tell to your customers.\n"
"This description will be copied to every Sales Order, Delivery Order and Customer Invoice/Credit Note",
)