[minor] update party timestamp after transaction
diff --git a/erpnext/accounts/party_status.py b/erpnext/accounts/party_status.py
index 53810b7..ff095b1 100644
--- a/erpnext/accounts/party_status.py
+++ b/erpnext/accounts/party_status.py
@@ -55,7 +55,9 @@
 			# may be open elsewhere, check
 			# default status
 			party.status = status
-			update_status(party, )
+			update_status(party)
+
+	party.update_modified()
 
 def get_party_status(doc):
 	'''return party status based on open documents'''
diff --git a/erpnext/public/js/controllers/transaction.js b/erpnext/public/js/controllers/transaction.js
index 9e2bd22..28a3691 100644
--- a/erpnext/public/js/controllers/transaction.js
+++ b/erpnext/public/js/controllers/transaction.js
@@ -8,7 +8,7 @@
 erpnext.TransactionController = erpnext.taxes_and_totals.extend({
 	onload: function() {
 		var me = this;
-		this.frm.show_print_first = true;
+		//this.frm.show_print_first = true;
 		if(this.frm.doc.__islocal) {
 			var today = get_today(),
 				currency = frappe.defaults.get_user_default("currency");