Skip to content

Commit

Permalink
fix: reorder validations
Browse files Browse the repository at this point in the history
  • Loading branch information
ankush committed Sep 8, 2021
1 parent 98478b9 commit 7e20cf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erpnext/stock/doctype/item/item.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ def validate(self):
self.validate_fixed_asset()
self.validate_retain_sample()
self.validate_uom_conversion_factor()
self.validate_item_defaults()
self.validate_customer_provided_part()
self.update_defaults_from_item_group()
self.validate_item_defaults()
self.validate_auto_reorder_enabled_in_stock_settings()
self.cant_change()
self.update_show_in_website()
Expand Down

0 comments on commit 7e20cf0

Please sign in to comment.