mirror of
				https://github.com/grocy/grocy.git
				synced 2025-10-31 10:46:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| $('#save-userobject-button').on('click', function(e)
 | |
| {
 | |
| 	e.preventDefault();
 | |
| 
 | |
| 	if (!Grocy.FrontendHelpers.ValidateForm("userobject-form", true))
 | |
| 	{
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	if ($(".combobox-menu-visible").length)
 | |
| 	{
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	var jsonData = {};
 | |
| 	jsonData.userentity_id = Grocy.EditObjectParentId;
 | |
| 
 | |
| 	Grocy.FrontendHelpers.BeginUiBusy("userobject-form");
 | |
| 
 | |
| 	if (Grocy.EditMode === 'create')
 | |
| 	{
 | |
| 		Grocy.Api.Post('objects/userobjects', jsonData,
 | |
| 			function(result)
 | |
| 			{
 | |
| 				Grocy.EditObjectId = result.created_object_id;
 | |
| 				Grocy.Components.UserfieldsForm.Save(function()
 | |
| 				{
 | |
| 					if (GetUriParam("embedded") !== undefined)
 | |
| 					{
 | |
| 						window.parent.postMessage(WindowMessageBag("Reload"), Grocy.BaseUrl);
 | |
| 					}
 | |
| 					else
 | |
| 					{
 | |
| 						window.location.href = U('/userobjects/' + Grocy.EditObjectParentName);
 | |
| 					}
 | |
| 				});
 | |
| 			},
 | |
| 			function(xhr)
 | |
| 			{
 | |
| 				Grocy.FrontendHelpers.EndUiBusy("userobject-form");
 | |
| 				Grocy.FrontendHelpers.ShowGenericError('Error while saving, probably this item already exists', xhr.response)
 | |
| 			}
 | |
| 		);
 | |
| 	}
 | |
| 	else
 | |
| 	{
 | |
| 		Grocy.Api.Put('objects/userobjects/' + Grocy.EditObjectId, jsonData,
 | |
| 			function(result)
 | |
| 			{
 | |
| 				Grocy.Components.UserfieldsForm.Save(function()
 | |
| 				{
 | |
| 					if (GetUriParam("embedded") !== undefined)
 | |
| 					{
 | |
| 						window.parent.postMessage(WindowMessageBag("Reload"), Grocy.BaseUrl);
 | |
| 					}
 | |
| 					else
 | |
| 					{
 | |
| 						window.location.href = U('/userobjects/' + Grocy.EditObjectParentName);
 | |
| 					}
 | |
| 				});
 | |
| 			},
 | |
| 			function(xhr)
 | |
| 			{
 | |
| 				Grocy.FrontendHelpers.EndUiBusy("userobject-form");
 | |
| 				Grocy.FrontendHelpers.ShowGenericError('Error while saving, probably this item already exists', xhr.response)
 | |
| 			}
 | |
| 		);
 | |
| 	}
 | |
| });
 | |
| 
 | |
| Grocy.Components.UserfieldsForm.Load();
 | |
| $("#userfields-form").removeClass("border").removeClass("border-info").removeClass("p-2").find("h2").addClass("d-none");
 |