From 93c015a42b7663cff0696d6546ecbe05b6c28292 Mon Sep 17 00:00:00 2001 From: tunde Date: Wed, 30 Aug 2017 21:05:38 +0100 Subject: [PATCH] add due_date in GL Entry from Journal Entry --- erpnext/accounts/doctype/journal_entry/journal_entry.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/erpnext/accounts/doctype/journal_entry/journal_entry.py b/erpnext/accounts/doctype/journal_entry/journal_entry.py index 68f4cc53bee..f7e40231e14 100644 --- a/erpnext/accounts/doctype/journal_entry/journal_entry.py +++ b/erpnext/accounts/doctype/journal_entry/journal_entry.py @@ -436,7 +436,8 @@ class JournalEntry(AccountsController): "against_voucher": d.reference_name, "remarks": self.remark, "cost_center": d.cost_center, - "project": d.project + "project": d.project, + "due_date": d.reference_due_date }) )