mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-19 21:19:19 +00:00
Fix in valuation_control.py: eval requires a string. does not accept None.
This commit is contained in:
@@ -107,7 +107,7 @@ class DocType:
|
|||||||
prev_sle = bin_obj.get_prev_sle(posting_date, posting_time)
|
prev_sle = bin_obj.get_prev_sle(posting_date, posting_time)
|
||||||
if not prev_sle:
|
if not prev_sle:
|
||||||
return 0.0
|
return 0.0
|
||||||
fcfs_stack = eval(prev_sle.get('fcfs_stack', '[]'))
|
fcfs_stack = eval(str(prev_sle.get('fcfs_stack', '[]')))
|
||||||
in_rate = fcfs_stack and self.get_fifo_rate(fcfs_stack) or 0
|
in_rate = fcfs_stack and self.get_fifo_rate(fcfs_stack) or 0
|
||||||
elif val_method == 'Moving Average':
|
elif val_method == 'Moving Average':
|
||||||
prev_sle = bin_obj.get_prev_sle(posting_date, posting_time)
|
prev_sle = bin_obj.get_prev_sle(posting_date, posting_time)
|
||||||
|
|||||||
Reference in New Issue
Block a user