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,
|
2021-05-03 23:17:54 +05:00
|
|
|
help="A product's description you want to tell to your customers.\n"
|
2020-07-08 19:03:20 +05:00
|
|
|
"This description will be copied to every Sales Order, Delivery Order and Customer Invoice/Credit Note",
|
|
|
|
)
|