commit | 0f27be2facc07e5608999e31d5be7646faa29a11 | [log] [tgz] |
---|---|---|
author | marination <maricadsouza221197@gmail.com> | Thu May 21 13:11:48 2020 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Fri May 22 20:39:15 2020 +0530 |
tree | bbeb14b95629e4f9b21e3d144d1a974cfa705ba9 | |
parent | 8e9f3e464582553579a7a9a4bb660959100891bb [diff] |
fix: Fetch customer into Delivery Note from Pick List
diff --git a/erpnext/stock/doctype/pick_list/pick_list.py b/erpnext/stock/doctype/pick_list/pick_list.py index 231af1a..1f8d009 100644 --- a/erpnext/stock/doctype/pick_list/pick_list.py +++ b/erpnext/stock/doctype/pick_list/pick_list.py
@@ -300,6 +300,7 @@ set_delivery_note_missing_values(delivery_note) delivery_note.pick_list = pick_list.name + delivery_note.customer = pick_list.customer if pick_list.customer else None return delivery_note