fix: Indentation and missing semi-colon
- Fix incorrect indentation after merge conflict
- Sider
diff --git a/erpnext/stock/dashboard/item_dashboard.js b/erpnext/stock/dashboard/item_dashboard.js
index 20415bc..d3c442d 100644
--- a/erpnext/stock/dashboard/item_dashboard.js
+++ b/erpnext/stock/dashboard/item_dashboard.js
@@ -163,7 +163,7 @@
max_count: max_count,
can_write:can_write,
show_item: show_item || false
- }
+ };
},
get_capacity_dashboard_data: function(data) {
diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.py b/erpnext/stock/doctype/stock_entry/stock_entry.py
index 1cb71c2..ecdd396 100644
--- a/erpnext/stock/doctype/stock_entry/stock_entry.py
+++ b/erpnext/stock/doctype/stock_entry/stock_entry.py
@@ -87,7 +87,7 @@
self.validate_serialized_batch()
self.set_actual_qty()
self.calculate_rate_and_amount()
- self.validate_putaway_capacity()
+ self.validate_putaway_capacity()
def on_submit(self):
self.update_stock_ledger()