我試圖從植物日創建2個月的預期日期時間。而且,這是我的代碼:如何在odoo中創建預期的日期時間?
@api.one
@api.depends('date_plant','nursery_plandate')
def calculateplandate(self):
fmt = '%Y-%m-%d'
if self.date_plant:
d1 = self.date_plant
conv = datetime.date(d1)
d2 = datetime.strptimes(str(conv),fmt)
d3 = d2.month
hasil = d3+2
self.nursery_plandate = hasil
和我的錯誤:
line 148, in calculateplandate
d2 = datetime.date(d1)
TypeError: descriptor 'date' requires a 'datetime.datetime' object but received a 'str'
如果你發現你的答案比請接受它。 –
我找到了我的答案。 –