mirror of
https://github.com/Karaka-Management/oms-WarehouseManagement.git
synced 2026-01-11 07:08:41 +00:00
23 lines
593 B
PHP
23 lines
593 B
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package Modules\WarehouseManagement
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.2
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'/POST:Module:Billing\-bill_element\-(create|update|delete)/' => [
|
|
'callback' => ['\Modules\WarehouseManagement\Controller\ApiController:eventBillUpdateInternal'],
|
|
],
|
|
'/POST:Module:Billing\-bill\-(update|delete)/' => [
|
|
'callback' => ['\Modules\WarehouseManagement\Controller\ApiController:eventBillUpdateInternal'],
|
|
],
|
|
];
|