From bb44fd02777e5765c0830ab5d077fc44ef7ca65c Mon Sep 17 00:00:00 2001 From: bsiggel Date: Thu, 26 Mar 2026 01:01:05 +0100 Subject: [PATCH] created Entity "Akten" --- custom/Espo/Custom/Controllers/CAkten.php | 7 ++ .../Custom/Resources/i18n/ar_AR/CAkten.json | 10 ++ .../Custom/Resources/i18n/bg_BG/CAkten.json | 10 ++ .../Custom/Resources/i18n/cs_CZ/CAkten.json | 10 ++ .../Custom/Resources/i18n/da_DK/CAkten.json | 10 ++ .../Custom/Resources/i18n/de_DE/CAkten.json | 9 ++ .../Custom/Resources/i18n/el_GR/CAkten.json | 10 ++ .../Custom/Resources/i18n/en_GB/CAkten.json | 1 + .../Custom/Resources/i18n/en_US/CAkten.json | 12 ++ .../Custom/Resources/i18n/en_US/Global.json | 6 +- .../Custom/Resources/i18n/es_ES/CAkten.json | 10 ++ .../Custom/Resources/i18n/es_MX/CAkten.json | 10 ++ .../Custom/Resources/i18n/fa_IR/CAkten.json | 10 ++ .../Custom/Resources/i18n/fr_FR/CAkten.json | 5 + .../Custom/Resources/i18n/hr_HR/CAkten.json | 10 ++ .../Custom/Resources/i18n/hu_HU/CAkten.json | 10 ++ .../Custom/Resources/i18n/id_ID/CAkten.json | 5 + .../Custom/Resources/i18n/it_IT/CAkten.json | 10 ++ .../Custom/Resources/i18n/ja_JP/CAkten.json | 10 ++ .../Custom/Resources/i18n/lt_LT/CAkten.json | 10 ++ .../Custom/Resources/i18n/lv_LV/CAkten.json | 10 ++ .../Custom/Resources/i18n/nb_NO/CAkten.json | 10 ++ .../Custom/Resources/i18n/nl_NL/CAkten.json | 10 ++ .../Custom/Resources/i18n/pl_PL/CAkten.json | 10 ++ .../Custom/Resources/i18n/pt_BR/CAkten.json | 10 ++ .../Custom/Resources/i18n/pt_PT/CAkten.json | 10 ++ .../Custom/Resources/i18n/ro_RO/CAkten.json | 5 + .../Custom/Resources/i18n/ru_RU/CAkten.json | 10 ++ .../Custom/Resources/i18n/sk_SK/CAkten.json | 10 ++ .../Custom/Resources/i18n/sl_SI/CAkten.json | 10 ++ .../Custom/Resources/i18n/sr_RS/CAkten.json | 10 ++ .../Custom/Resources/i18n/sv_SE/CAkten.json | 10 ++ .../Custom/Resources/i18n/th_TH/CAkten.json | 10 ++ .../Custom/Resources/i18n/tr_TR/CAkten.json | 10 ++ .../Custom/Resources/i18n/uk_UA/CAkten.json | 10 ++ .../Custom/Resources/i18n/ur_IN/CAkten.json | 10 ++ .../Custom/Resources/i18n/vi_VN/CAkten.json | 10 ++ .../Custom/Resources/i18n/zh_CN/CAkten.json | 10 ++ .../Custom/Resources/i18n/zh_TW/CAkten.json | 10 ++ .../Resources/metadata/clientDefs/CAkten.json | 36 ++++++ .../Resources/metadata/entityDefs/CAkten.json | 110 ++++++++++++++++++ .../Resources/metadata/entityDefs/Call.json | 3 +- .../Resources/metadata/entityDefs/Email.json | 3 +- .../metadata/entityDefs/Meeting.json | 3 +- .../Resources/metadata/entityDefs/Task.json | 3 +- .../Resources/metadata/recordDefs/CAkten.json | 3 + .../Resources/metadata/scopes/CAkten.json | 23 ++++ data/config.php | 5 +- data/state.php | 4 +- 49 files changed, 543 insertions(+), 10 deletions(-) create mode 100644 custom/Espo/Custom/Controllers/CAkten.php create mode 100644 custom/Espo/Custom/Resources/i18n/ar_AR/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/bg_BG/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/cs_CZ/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/da_DK/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/de_DE/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/el_GR/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/en_GB/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/en_US/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/es_ES/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/es_MX/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/fa_IR/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/fr_FR/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/hr_HR/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/hu_HU/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/id_ID/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/it_IT/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/ja_JP/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/lt_LT/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/lv_LV/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/nb_NO/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/nl_NL/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/pl_PL/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/pt_BR/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/pt_PT/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/ro_RO/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/ru_RU/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/sk_SK/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/sl_SI/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/sr_RS/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/sv_SE/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/th_TH/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/tr_TR/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/uk_UA/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/ur_IN/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/vi_VN/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/zh_CN/CAkten.json create mode 100644 custom/Espo/Custom/Resources/i18n/zh_TW/CAkten.json create mode 100644 custom/Espo/Custom/Resources/metadata/clientDefs/CAkten.json create mode 100644 custom/Espo/Custom/Resources/metadata/entityDefs/CAkten.json create mode 100644 custom/Espo/Custom/Resources/metadata/recordDefs/CAkten.json create mode 100644 custom/Espo/Custom/Resources/metadata/scopes/CAkten.json diff --git a/custom/Espo/Custom/Controllers/CAkten.php b/custom/Espo/Custom/Controllers/CAkten.php new file mode 100644 index 00000000..686335e1 --- /dev/null +++ b/custom/Espo/Custom/Controllers/CAkten.php @@ -0,0 +1,7 @@ + 'Report', 36 => 'CCallQueues', 37 => 'CAdvowareAkten', - 38 => 'CAIKnowledge' + 38 => 'CAIKnowledge', + 39 => 'CAkten' ], 'quickCreateList' => [ 0 => 'Account', @@ -360,7 +361,7 @@ return [ 0 => 'youtube.com', 1 => 'google.com' ], - 'microtime' => 1774474438.570734, + 'microtime' => 1774483248.932358, 'siteUrl' => 'https://crm.bitbylaw.com', 'fullTextSearchMinLength' => 4, 'webSocketUrl' => 'ws://api.bitbylaw.com:5000/espocrm/ws', diff --git a/data/state.php b/data/state.php index a1763a41..991c1e36 100644 --- a/data/state.php +++ b/data/state.php @@ -1,7 +1,7 @@ 1774479720, - 'microtimeState' => 1774479720.604303, + 'cacheTimestamp' => 1774483249, + 'microtimeState' => 1774483249.165366, 'currencyRates' => [ 'EUR' => 1.0 ],