[fix] serial no status
diff --git a/erpnext/change_log/current/delivery_to_target_warehouse.md b/erpnext/change_log/current/delivery_to_target_warehouse.md
index a515964..f369efa 100644
--- a/erpnext/change_log/current/delivery_to_target_warehouse.md
+++ b/erpnext/change_log/current/delivery_to_target_warehouse.md
@@ -1 +1,2 @@
 - Delivery to Target Warehouse: Now you can deliver items to customer's warehouse or rented warehouse. Sponsored by: **[Startrack](http://www.gps.gt/)**
+- Serial No **Status** deprecated
diff --git a/erpnext/stock/doctype/serial_no/serial_no.js b/erpnext/stock/doctype/serial_no/serial_no.js
index eea652b..9d5555e 100644
--- a/erpnext/stock/doctype/serial_no/serial_no.js
+++ b/erpnext/stock/doctype/serial_no/serial_no.js
@@ -17,10 +17,4 @@
 
 frappe.ui.form.on("Serial No", "refresh", function(frm) {
 	frm.toggle_enable("item_code", frm.doc.__islocal);
-
-	if(frm.doc.status == "Sales Returned" && frm.doc.warehouse)
-		cur_frm.add_custom_button(__('Set Status as Available'), function() {
-			cur_frm.set_value("status", "Available");
-			cur_frm.save();
-		}, "icon-ok", "btn-default");
 });