On selection of item, set default qty as 1
diff --git a/erpnext/stock/get_item_details.py b/erpnext/stock/get_item_details.py
index 3f73932..399946b 100644
--- a/erpnext/stock/get_item_details.py
+++ b/erpnext/stock/get_item_details.py
@@ -163,8 +163,8 @@
"uom": item.stock_uom,
"min_order_qty": flt(item.min_order_qty) if args.parenttype == "Material Request" else "",
"conversion_factor": 1.0,
- "qty": args.qty or 0.0,
- "stock_qty": 0.0,
+ "qty": args.qty or 1.0,
+ "stock_qty": 1.0,
"price_list_rate": 0.0,
"base_price_list_rate": 0.0,
"rate": 0.0,