mirror of
				https://github.com/grocy/grocy.git
				synced 2025-10-31 10:46:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			173 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			173 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| Grocy.Components.ProductPicker = { };
 | |
| 
 | |
| Grocy.Components.ProductPicker.GetPicker = function()
 | |
| {
 | |
| 	return $('#product_id');
 | |
| }
 | |
| 
 | |
| Grocy.Components.ProductPicker.GetInputElement = function()
 | |
| {
 | |
| 	return $('#product_id_text_input');
 | |
| }
 | |
| 
 | |
| Grocy.Components.ProductPicker.GetValue = function()
 | |
| {
 | |
| 	return $('#product_id').val();
 | |
| }
 | |
| 
 | |
| Grocy.Components.ProductPicker.SetValue = function(value)
 | |
| {
 | |
| 	Grocy.Components.ProductPicker.GetInputElement().val(value);
 | |
| 	Grocy.Components.ProductPicker.GetInputElement().trigger('change');
 | |
| }
 | |
| 
 | |
| Grocy.Components.ProductPicker.InProductAddWorkflow = function()
 | |
| {
 | |
| 	return typeof GetUriParam('createdproduct') !== "undefined";
 | |
| }
 | |
| 
 | |
| Grocy.Components.ProductPicker.InProductModifyWorkflow = function()
 | |
| {
 | |
| 	return typeof GetUriParam('addbarcodetoselection') !== "undefined";
 | |
| }
 | |
| 
 | |
| Grocy.Components.ProductPicker.ShowCustomError = function(text)
 | |
| {
 | |
| 	var element = $("#custom-productpicker-error");
 | |
| 	element.text(text);
 | |
| 	element.removeClass("d-none");
 | |
| }
 | |
| 
 | |
| Grocy.Components.ProductPicker.HideCustomError = function()
 | |
| {
 | |
| 	$("#custom-productpicker-error").addClass("d-none");
 | |
| }
 | |
| 
 | |
| $('.product-combobox').combobox({
 | |
| 	appendId: '_text_input',
 | |
| 	bsVersion: '4',
 | |
| 	clearIfNoMatch: false
 | |
| });
 | |
| 
 | |
| var prefillProduct = GetUriParam('createdproduct');
 | |
| var prefillProduct2 = Grocy.Components.ProductPicker.GetPicker().parent().data('prefill-by-name').toString();
 | |
| if (!prefillProduct2.isEmpty())
 | |
| {
 | |
| 	prefillProduct = prefillProduct2;
 | |
| }
 | |
| if (typeof prefillProduct !== "undefined")
 | |
| {
 | |
| 	var possibleOptionElement = $("#product_id option[data-additional-searchdata*='" + prefillProduct + "']").first();
 | |
| 	if (possibleOptionElement.length === 0)
 | |
| 	{
 | |
| 		possibleOptionElement = $("#product_id option:contains('" + prefillProduct + "')").first();
 | |
| 	}
 | |
| 
 | |
| 	if (possibleOptionElement.length > 0)
 | |
| 	{
 | |
| 		$('#product_id').val(possibleOptionElement.val());
 | |
| 		$('#product_id').data('combobox').refresh();
 | |
| 		$('#product_id').trigger('change');
 | |
| 
 | |
| 		var nextInputElement = $(Grocy.Components.ProductPicker.GetPicker().parent().data('next-input-selector').toString());
 | |
| 		nextInputElement.focus();
 | |
| 	}
 | |
| }
 | |
| 
 | |
| var addBarcode = GetUriParam('addbarcodetoselection');
 | |
| if (addBarcode !== undefined)
 | |
| {
 | |
| 	$('#addbarcodetoselection').text(addBarcode);
 | |
| 	$('#flow-info-addbarcodetoselection').removeClass('d-none');
 | |
| 	$('#barcode-lookup-disabled-hint').removeClass('d-none');
 | |
| }
 | |
| 
 | |
| $('#product_id_text_input').on('blur', function(e)
 | |
| {
 | |
| 	if (Grocy.Components.ProductPicker.GetPicker().hasClass("combobox-menu-visible"))
 | |
| 	{
 | |
| 		return;	
 | |
| 	}
 | |
| 
 | |
| 	var input = $('#product_id_text_input').val().toString();
 | |
| 	var possibleOptionElement = $("#product_id option[data-additional-searchdata*='" + input + "']").first();
 | |
| 	
 | |
| 	if (GetUriParam('addbarcodetoselection') === undefined && possibleOptionElement.length > 0)
 | |
| 	{
 | |
| 		$('#product_id').val(possibleOptionElement.val());
 | |
| 		$('#product_id').data('combobox').refresh();
 | |
| 		$('#product_id').trigger('change');
 | |
| 	}
 | |
| 	else
 | |
| 	{
 | |
| 		var optionElement = $("#product_id option:contains('" + input + "')").first();
 | |
| 		if (input.length > 0 && optionElement.length === 0 && typeof GetUriParam('addbarcodetoselection') === "undefined")
 | |
| 		{
 | |
| 			var addProductWorkflowsAdditionalCssClasses = "";
 | |
| 			if (Grocy.Components.ProductPicker.GetPicker().parent().data('disallow-add-product-workflows').toString() === "true")
 | |
| 			{
 | |
| 				addProductWorkflowsAdditionalCssClasses = "d-none";
 | |
| 			}
 | |
| 
 | |
| 			bootbox.dialog({
 | |
| 				message: L('"#1" could not be resolved to a product, how do you want to proceed?', input),
 | |
| 				title: L('Create or assign product'),
 | |
| 				onEscape: function()
 | |
| 				{
 | |
| 					Grocy.Components.ProductPicker.SetValue('');
 | |
| 				},
 | |
| 				size: 'large',
 | |
| 				backdrop: true,
 | |
| 				buttons: {
 | |
| 					cancel: {
 | |
| 						label: L('Cancel'),
 | |
| 						className: 'btn-default responsive-button',
 | |
| 						callback: function()
 | |
| 						{
 | |
| 							Grocy.Components.ProductPicker.SetValue('');
 | |
| 						}
 | |
| 					},
 | |
| 					addnewproduct: {
 | |
| 						label: '<strong>P</strong> ' + L('Add as new product'),
 | |
| 						className: 'btn-success add-new-product-dialog-button responsive-button ' + addProductWorkflowsAdditionalCssClasses,
 | |
| 						callback: function()
 | |
| 						{
 | |
| 							window.location.href = U('/product/new?prefillname=' + encodeURIComponent(input) + '&returnto=' + encodeURIComponent(window.location.pathname));
 | |
| 						}
 | |
| 					},
 | |
| 					addbarcode: {
 | |
| 						label: '<strong>B</strong> ' + L('Add as barcode to existing product'),
 | |
| 						className: 'btn-info add-new-barcode-dialog-button responsive-button',
 | |
| 						callback: function()
 | |
| 						{
 | |
| 							window.location.href = U(window.location.pathname + '?addbarcodetoselection=' + encodeURIComponent(input));
 | |
| 						}
 | |
| 					},
 | |
| 					addnewproductwithbarcode: {
 | |
| 						label: '<strong>A</strong> ' + L('Add as new product and prefill barcode'),
 | |
| 						className: 'btn-warning add-new-product-with-barcode-dialog-button responsive-button ' + addProductWorkflowsAdditionalCssClasses,
 | |
| 						callback: function()
 | |
| 						{
 | |
| 							window.location.href = U('/product/new?prefillbarcode=' + encodeURIComponent(input) + '&returnto=' + encodeURIComponent(window.location.pathname));
 | |
| 						}
 | |
| 					}
 | |
| 				}
 | |
| 			}).on('keypress', function(e)
 | |
| 			{
 | |
| 				if (e.key === 'B' || e.key === 'b')
 | |
| 				{
 | |
| 					$('.add-new-barcode-dialog-button').not(".d-none").click();
 | |
| 				}
 | |
| 				if (e.key === 'p' || e.key === 'P')
 | |
| 				{
 | |
| 					$('.add-new-product-dialog-button').not(".d-none").click();
 | |
| 				}
 | |
| 				if (e.key === 'a' || e.key === 'A')
 | |
| 				{
 | |
| 					$('.add-new-product-with-barcode-dialog-button').not(".d-none").click();
 | |
| 				}
 | |
| 			});
 | |
| 		}
 | |
| 	}
 | |
| });
 |