mirror of
https://github.com/bringout/odoomates.git
synced 2026-04-23 06:12:08 +02:00
11 lines
188 B
Python
11 lines
188 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class SaleOrder(models.Model):
|
|
_inherit = "sale.order"
|
|
|
|
sale_description = fields.Char(string='Sale Description')
|
|
|
|
|