buf fix sell controller submit invoice with sms send
This commit is contained in:
parent
06092d46a2
commit
dfe53cc53d
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue