Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
2 Risposte
4708 Visualizzazioni

I don't now why the result of a function from another function seems to be in Square brackets:

time event 1:  ['2016-02-28 10:10:28'] 
time event 2: 2016-02-28 10:10:28

Time event 1 code (call):

dummy = self._compute_stop_time_hrs(self.start_datetime, self.duration)
print "time event 1: ", dummy

Time event 2 code (shortend):

@api.one  # TODO causes error "strftime" Getting the Stop DateTime
def _compute_stop_time_hrs(self, start, duration):
return self.start_datetime

Seems that I miss something basic here?

Avatar
Abbandona

How did you declared start_datetime ?

Risposta migliore

It's a completely expected result with @api.one

@api.one is decorator, that may used instead of @api.multi, if you want to iterate automatically over "ids" (that is recordset in v8.0+) passed to the function. If called function returns anything, then @api.one collects results from each call of function into the list, and finally that list is returned. 

So, if you'r function do not return anything, then you're free to use @api.one without difficulties, but if your function return something, then you'll need to consider the above described behavior and if the resulting list does not fit into your requirements, then fall back to the @api.multi and use it. if you want to make sure and check additionally that "self" contains exactly one record, then you can check it with ensure_one() function:

    @api.multi
def _compute_stop_time_hrs(self, start, duration): self.ensure_one() #One record expected, raise error if self is an unexpected recordset
return self.start_datetime



Avatar
Abbandona
Autore

Thanks @Temur now it gets clear!

@Temur Nicely put. @api.one usually does not do what you want it to do; it's mostly there for compatibility with the old api... It duplicates the environement for every record in the set (really bad for perfs), returns a list, etc. In most cases it's not what you need (even though you think you do).

Nice note about performance, Thanks

Post correlati Risposte Visualizzazioni Attività
0
ott 20
3350
0
ago 25
4
1
lug 25
523
0
lug 25
566
1
mag 25
1002