2021-04-29 23:32:23 +05:00
|
|
|
from odoo import fields, models
|
2020-07-08 19:03:20 +05:00
|
|
|
|
|
|
|
|
|
|
|
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",
|
|
|
|
)
|