mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-02 11:49:10 +00:00
fix: do not use built-in "input", reload_doc
This commit is contained in:
@@ -61,8 +61,8 @@ class SupplierScorecardPeriod(Document):
|
||||
return weighed_score
|
||||
|
||||
|
||||
def get_eval_statement(self, input):
|
||||
my_eval_statement = input.replace("\r", "").replace("\n", "")
|
||||
def get_eval_statement(self, formula):
|
||||
my_eval_statement = formula.replace("\r", "").replace("\n", "")
|
||||
|
||||
for var in self.variables:
|
||||
if var.value:
|
||||
|
||||
Reference in New Issue
Block a user