mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-18 17:08:42 +00:00
fix: ignored posting time 00:00:00 in RIV (#56571)
(cherry picked from commit 31f89b72b4)
Co-authored-by: rohitwaghchaure <rohitw1991@gmail.com>
This commit is contained in:
@@ -86,7 +86,7 @@ class RepostItemValuation(Document):
|
|||||||
self.validate_recreate_stock_ledgers()
|
self.validate_recreate_stock_ledgers()
|
||||||
|
|
||||||
def set_default_posting_time(self):
|
def set_default_posting_time(self):
|
||||||
if not self.posting_time:
|
if self.posting_time is None:
|
||||||
self.posting_time = nowtime()
|
self.posting_time = nowtime()
|
||||||
|
|
||||||
if not self.posting_date:
|
if not self.posting_date:
|
||||||
|
|||||||
Reference in New Issue
Block a user