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

I am trying to work with the due date in account.invoice, i want the difference of current date an date_due but i get this error. ValueError: time data 'inv.date_due' does not match format '%m-%d-%Y %H:%M:%S'

my code is:

def _get_date_difference(self, cr, uid, ids, field_name, arg,context):
        res={}
        for inv in self.browse(cr,uid,ids):            
            dt=datetime.strptime('inv.date_due', '%m-%d-%Y %H:%M:%S').date()
##            if inv.payment_term and inv.state == "open":
            res[inv.id] = abs((datetime.now()-dt).days)
        return res
アバター
破棄
最善の回答

Read datetime documentation, in particulare the strptime function doc.

アバター
破棄
関連投稿 返信 ビュー 活動
3
9月 20
6431
1
12月 24
16726
1
1月 17
4487
4
8月 24
77037
2
5月 25
1658