[hot] taxes
diff --git a/erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.js b/erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.js
index 91200e1..d7a4f5a 100644
--- a/erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.js
+++ b/erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.js
@@ -5,6 +5,6 @@
 
 {% include "public/js/controllers/accounts.js" %}
 
-frappe.ui.form.on("sales Taxes and Charges Template", "onload", function(frm) {
+frappe.ui.form.on("Sales Taxes and Charges Template", "onload", function(frm) {
 	erpnext.add_applicable_territory();
 });
diff --git a/erpnext/selling/sales_common.js b/erpnext/selling/sales_common.js
index 7ee57f3..1e4ec7f 100644
--- a/erpnext/selling/sales_common.js
+++ b/erpnext/selling/sales_common.js
@@ -35,8 +35,8 @@
 			this.frm.set_query("taxes_and_charges", function() {
 				return {
 					filters: [
-						['sales Taxes and Charges Template', 'company', '=', me.frm.doc.company],
-						['sales Taxes and Charges Template', 'docstatus', '!=', 2]
+						['Sales Taxes and Charges Template', 'company', '=', me.frm.doc.company],
+						['Sales Taxes and Charges Template', 'docstatus', '!=', 2]
 					]
 				}
 			});