9 lines
259 B
Python
9 lines
259 B
Python
from trytond.model import ModelSingleton, ModelSQL, ModelView, fields
|
|
|
|
|
|
class Configuration(ModelSingleton, ModelSQL, ModelView):
|
|
"Purchase Trade Configuration"
|
|
__name__ = 'purchase_trade.configuration'
|
|
|
|
pricing_rule = fields.Text("Pricing Rule")
|