13 lines
388 B
Python
13 lines
388 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 tell to your customers.\n"
|
|
"This description will be copied to every Sales Order, Delivery Order and Customer Invoice/Credit Note",
|
|
)
|