mirror of
https://github.com/Karaka-Management/oms-WarehouseManagement.git
synced 2026-01-27 14:08:40 +00:00
26 lines
766 B
PHP
Executable File
26 lines
766 B
PHP
Executable File
<?php
|
|
/**
|
|
* Karaka
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package Modules\WarehouseManagement
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'POST:Module:ClientManagement-client-create' => [
|
|
'callback' => ['\Modules\WarehouseManagement\Controller\ApiController:eventStockCreateInternal'],
|
|
],
|
|
'POST:Module:SupplierManagement-supplier-create' => [
|
|
'callback' => ['\Modules\WarehouseManagement\Controller\ApiController:eventStockCreateInternal'],
|
|
],
|
|
'/POST:Module:Billing\-bill(_element)*\-(create|delete|update)/' => [
|
|
'callback' => ['\Modules\WarehouseManagement\Controller\ApiController:eventBillUpdateInternal'],
|
|
],
|
|
];
|