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",