[fixes] Set default company's letter head in purchase flow
diff --git a/erpnext/buying/doctype/purchase_common/purchase_common.js b/erpnext/buying/doctype/purchase_common/purchase_common.js
index 9a9a865..6dcc865 100644
--- a/erpnext/buying/doctype/purchase_common/purchase_common.js
+++ b/erpnext/buying/doctype/purchase_common/purchase_common.js
@@ -178,6 +178,9 @@
 			&& !this.frm.doc.shipping_address) {
 				erpnext.utils.get_shipping_address(this.frm)
 		}
+
+		var company_doc = frappe.get_doc(":Company", me.frm.doc.company);
+		me.frm.set_value("letter_head", company_doc.default_letter_head);
 	},
 	
 	shipping_address: function(){