buf fix sell controller submit invoice with sms send

This commit is contained in:
Hesabix 2025-03-19 19:37:47 +00:00
parent 06092d46a2
commit dfe53cc53d

View file

@ -114,8 +114,18 @@ class SellController extends AbstractController
}
#[Route('/api/sell/mod', name: 'app_sell_mod')]
public function app_sell_mod(AccountingPermissionService $accountingPermissionService, PluginService $pluginService, SMS $SMS, Provider $provider, Extractor $extractor, Request $request, Access $access, Log $log, EntityManagerInterface $entityManager): JsonResponse
{
public function app_sell_mod(
AccountingPermissionService $accountingPermissionService,
PluginService $pluginService,
SMS $SMS,
Provider $provider,
Extractor $extractor,
Request $request,
Access $access,
Log $log,
EntityManagerInterface $entityManager,
registryMGR $registryMGR
): JsonResponse {
$params = [];
if ($content = $request->getContent()) {
$params = json_decode($content, true);