15 lines
426 B
Python
15 lines
426 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import models, fields, api
|
|
|
|
# class standard_custom_theme(models.Model):
|
|
# _name = 'standard_custom_theme.standard_custom_theme'
|
|
|
|
# name = fields.Char()
|
|
# value = fields.Integer()
|
|
# value2 = fields.Float(compute="_value_pc", store=True)
|
|
# description = fields.Text()
|
|
#
|
|
# @api.depends('value')
|
|
# def _value_pc(self):
|
|
# self.value2 = float(self.value) / 100 |