* bellozzo added

This commit is contained in:
Danyi Dávid 2019-05-21 21:48:08 +02:00
parent 631aa12a59
commit 59d8a53ca4
2 changed files with 6 additions and 1 deletions

View File

@ -131,6 +131,10 @@ class KoinService
return 'Kávé';
}
if (false !== strpos($posInfo, "BELLOZZO")) {
return 'Étel';
}
if (false !== strpos($posInfo, "HAI NAM BISTRÓ")) {
return 'Étel';
}
@ -259,6 +263,8 @@ class KoinService
$tags[] = 'Spar';
} elseif (false !== strpos($posInfo, "Cafe Frei")) {
$tags[] = 'Cafe Frei';
} elseif (false !== strpos($posInfo, "BELLOZZO")) {
$tags[] = 'Bellozzo';
} elseif (false !== strpos($posInfo, "HAI NAM BISTRÓ")) {
$tags[] = 'Hai Nam Bistro';
$tags[] = 'Vietnámi';

View File

@ -7,7 +7,6 @@ namespace App\Service;
use App\Entity\Sms;
use App\Entity\User;
use DateTime;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\EntityManager;
use Doctrine\ORM\OptimisticLockException;
use Doctrine\ORM\ORMException;