mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-25 21:05:19 +00:00
Fetch same items multiple times from source doc if all qty not processed
This commit is contained in:
@@ -55,7 +55,8 @@ class Task(Document):
|
||||
def update_depends_on(self):
|
||||
depends_on_tasks = ""
|
||||
for d in self.depends_on:
|
||||
depends_on_tasks += d.task + ","
|
||||
if d.task:
|
||||
depends_on_tasks += d.task + ","
|
||||
self.depends_on_tasks = depends_on_tasks
|
||||
|
||||
def on_update(self):
|
||||
|
||||
Reference in New Issue
Block a user