0
0

Fix NN-NN couplings

This commit is contained in:
Serghei Cebotari 2023-10-01 22:36:14 +03:00
parent be49549723
commit eb14b9a82a
2 changed files with 3 additions and 2 deletions

View File

@ -26,6 +26,7 @@ public class ProductQueryModifierTests
[TestCase("Муфта соединительная", "муфта 20", "Муфта соединительная равнопроходная 20")]
[TestCase("Муфта соединительная", "переходник 20-16", "Муфта соединительная переходная 20-16")]
[TestCase("Муфта соединительная", "Соединение труба-труба 20/20, бронза", "Муфта соединительная равнопроходная 20")]
public void CouplingTest(string productType, string query, string modified) =>
Test(productType, query, modified);

View File

@ -4,7 +4,7 @@ using Microsoft.AspNetCore.Http.Extensions;
namespace RhSolutions.Api.Services
{
public class CouplingModifier : IProductQueryModifier
public class CouplingModifier : IProductQueryModifier
{
private string pattern { get; } = @"\b(16|20|25|32|40|50|63)\b";
public bool TryQueryModify(IQueryCollection collection, out QueryString queryString)
@ -23,7 +23,7 @@ namespace RhSolutions.Api.Services
else
{
QueryBuilder qb = new();
if (matches.Count < 2)
if (matches.Count < 2 || matches.Count > 1 && matches[0].Value == matches[1].Value)
{
qb.Add("query", $"Муфта соединительная равнопроходная {matches[0]}");
}