コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
4722 ビュー

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?

アバター
破棄

How did you declared start_datetime ?

最善の回答

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



アバター
破棄
著作者

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

関連投稿 返信 ビュー 活動
0
10月 20
3356
0
8月 25
4
1
7月 25
524
0
7月 25
568
1
5月 25
1002