Skip to Content
Menu
This question has been flagged
1971 Views

Hello!


I have the following code:

class reserva(models.Model):
_name = 'hotels_be_bago.reserva'
name=fields.Text(string="Nombre de la reserva",compute='_generar_nombre')
fechaInicio = fields.Date(string='Fecha inicio',compute='_calcular_siguiente_dia')
fechaFinal = fields.Date(string='Fecha final')
habitaciones = fields.Many2one("hotels_be_bago.habitacion", "Habitacion a reservar")
clientes = fields.Many2one("res.partner", "Nombre del cliente")
nombrehotel = fields.Many2one(string='Nombre del hotel', related='habitaciones.hotel', readOnly=True, store=False)

@api.multi
@api.depends('habitaciones','fechaInicio','fechaFinal','clientes')
def _generar_nombre(self):
for record in self:
if record.habitaciones and record.fechaInicio and record.fechaFinal and record.clientes:
record.name=record.habitaciones.name+' '+record.clientes.name+' '+record.fechaInicio+' '+record.fechaFinal

@api.constrains('fechaInicio', 'fechaFinal')
def _comprobar_reserva(self):
for record in self:
variable = self.search_count([('id', '!=', record.id), ('fechaFinal', '>=', record.fechaInicio), ('fechaInicio','<=', record.fechaFinal)])
variable2=self.search([('id', '!=', record.id), ('fechaFinal', '>=', record.fechaInicio), ('fechaInicio','<=', record.fechaFinal)])
for valor in variable2:
print(self.name)
print(valor.name)

if variable > 0:
raise ValidationError("Se solapan dos habitaciones \n" + self.name + " con \n"+valor.name)

@api.multi
@api.depends('fechaInicio')
def _calcular_siguiente_dia(self):
for record in self:
record.fechaFinal=datetime.date.today() + datetime.timedelta(days=1)
print(record.fechaFinal)

The problem comes when i try to create a new "Reserva" , it hides the field name and fechaInicio which both are compute... I know the problem is with the computed because i tried removing it, also, i tried using store=True or false but it didnt help. Idk what could be the problem... I need some help, im noob!


Thank you!    

Avatar
Discard

can you share your xml file.?

Related Posts Replies Views Activity
3
Sep 24
154
0
Dec 23
372
2
Sep 23
8062
2
Sep 22
1236
1
Feb 22
4741