Went through todos

This commit is contained in:
Dennis Eichhorn 2024-05-02 22:54:38 +00:00
parent ae04c3f295
commit 7324c86376
2 changed files with 24 additions and 0 deletions

View File

@ -34,6 +34,16 @@ use phpOMS\Message\ResponseAbstract;
* @license OMS License 2.0 * @license OMS License 2.0
* @link https://jingga.app * @link https://jingga.app
* @since 1.0.0 * @since 1.0.0
*
* @question Change localization from setting to unit attribute
* but keep server localization in settings as default setting when creating a new unit?
* https://github.com/Karaka-Management/Organization-Guide/issues/6
*
* @todo Allow multiple tax office registrations
* Currently only one is allowed through the attributes.
* This is bad because a company can be registered in multiple countries.
* One idea could be to use the address_attr for this purpose.
* https://github.com/Karaka-Management/oms-Organization/issues/6
*/ */
final class ApiAttributeController extends Controller final class ApiAttributeController extends Controller
{ {

View File

@ -118,6 +118,20 @@ final class BackendController extends Controller
* *
* @return RenderableInterface * @return RenderableInterface
* *
* @todo Make the organigram printable
* https://github.com/Karaka-Management/Organization-Guide/issues/4
*
* @feature Make the organigram versioned/approved (e.g. for ISO)
* Maybe this is not really necessary due to the audit log?!
* https://github.com/Karaka-Management/Organization-Guide/issues/5
*
* @feature Create better organigram (better grouping, maybe as SVG)
* https://github.com/Karaka-Management/oms-Organization/issues/2
*
* @feature Allow to define the organigram automatic or manual
* automatic = automatically generates organigram, manual = uses file as organigram
* https://github.com/Karaka-Management/oms-Organization/issues/4
*
* @since 1.0.0 * @since 1.0.0
* @codeCoverageIgnore * @codeCoverageIgnore
*/ */