Skip to content

Commit

Permalink
fix: capitalization in warehouse name
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhammed Sinan K T committed Nov 3, 2023
1 parent a320d56 commit 0fa7819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aumms/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def create_all_smith_warehouse():
if not frappe.db.exists('Warehouse', {'warehouse_name': 'All Smith Warehouse'}):
warehouse_doc = frappe.new_doc('Warehouse')
warehouse_doc.company = default_company
warehouse_doc.warehouse_name = 'All smith Warehouse'
warehouse_doc.warehouse_name = 'All Smith Warehouse'
warehouse_doc.parent_warehouse = warehouse
warehouse_doc.is_group = 1
warehouse_doc.insert(ignore_permissions = True)
Expand Down

0 comments on commit 0fa7819

Please sign in to comment.