importaciones_excel.py
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- coding: utf-8 -*-
from odoo import models, fields, api
class hgt_importaciones_excel(models.Model):
_name = 'hgt.importaciones_excel'
fecha = fields.Char(
string=u'Fecha',
)
bajar = fields.One2many(
string=u'Bajar Archivo',
comodel_name='asw.adjuntos',
inverse_name='imp_bajar',
)
subir = fields.One2many(
string=u'Subir Archivo',
comodel_name='asw.adjuntos',
inverse_name='imp_subir',
)
responsable = fields.Many2one(
string=u'Responsable',
comodel_name='res.users',
ondelete='restrict',
default=lambda self: self.env.user,
)
log = fields.Text(
string=u'log',
readonly=True,
)
estados = fields.Selection(
string=u'Estados',
selection=[('borrador', 'Borrador'), ('aprobado', 'Aprobado')]
)
fecha_aprobacion = fields.Datetime(
string=u'Fecha de aprobación',
default=fields.Datetime.now,
)
def aprobar(self):
self.estados = 'aprobado'