commit | 69b906438d5a7c2a2b12419fdb0d02869a1e1507 | [log] [tgz] |
---|---|---|
author | Nabin Hait <nabinhait@gmail.com> | Tue Jul 19 15:05:56 2022 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Tue Jul 19 15:05:56 2022 +0530 |
tree | b2436c89047a37a9592c1d998f99005b763fa232 | |
parent | 914a388ee3c89333860171cce526f688d42867c3 [diff] |
fix: set status on submit/cancel
diff --git a/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py b/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py index 385d64a..3b890ee 100644 --- a/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +++ b/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py
@@ -19,11 +19,11 @@ self.validate_posting_date() def on_submit(self): - self.status = "In Progress" + self.db_set("status", "In Progress") self.make_gl_entries() def on_cancel(self): - self.status = "In Progress" + self.db_set("status", "In Progress") self.ignore_linked_doctypes = ("GL Entry", "Stock Ledger Entry") gle_count = frappe.db.count( "GL Entry",