Invoice upload by robot

This commit is contained in:
2026-02-14 00:04:00 +01:00
parent 4f4dff2edd
commit 2b458eccd7
15 changed files with 278 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Enumerations;
use App\Scopes\CommonModel;
class CronTaskType extends CommonModel{
public const CRON_TASK_TYPE_REALTIME = 'realtime';
public const CRON_TASK_TYPE_DAILY = 'daily';
}