mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-31 05:05:42 +00:00 
			
		
		
		
	Prevent creation of new settings objects when importing data (#3319)
This commit is contained in:
		| @@ -343,6 +343,10 @@ class BaseInvenTreeSetting(models.Model): | ||||
|             # Unless otherwise specified, attempt to create the setting | ||||
|             create = kwargs.get('create', True) | ||||
|  | ||||
|             # Prevent creation of new settings objects when importing data | ||||
|             if InvenTree.ready.isImportingData() or not InvenTree.ready.canAppAccessDatabase(allow_test=True): | ||||
|                 create = False | ||||
|  | ||||
|             if create: | ||||
|                 # Attempt to create a new settings object | ||||
|                 setting = cls( | ||||
|   | ||||
		Reference in New Issue
	
	Block a user