test fixes fleet+expense tests

This commit is contained in:
Dennis Eichhorn 2023-05-19 02:26:10 +00:00
parent 5fa64005cf
commit 1a91f31235
5 changed files with 7 additions and 7 deletions

View File

@ -29,7 +29,8 @@ $excel = new DefaultExcel();
foreach ($data as $i => $row) {
foreach ($row as $j => $cell) {
$excel->getActiveSheet()->setCellValueByColumnAndRow($j + 1, $i + 1, $cell);
// @todo: fix 26 column overflow.
$excel->getActiveSheet()->setCellValue(\chr(64 + $j + 1) . ($i + 1), $cell);
}
}
@ -43,4 +44,4 @@ if ($content !== false) {
echo $content;
}
\unlink($file);
\unlink($file);

View File

@ -73,9 +73,6 @@ use phpOMS\Module\ModuleStatus;
use phpOMS\Security\EncryptionHelper;
use phpOMS\System\File\Local\File;
use phpOMS\System\MimeType;
use phpOMS\System\OperatingSystem;
use phpOMS\System\SystemType;
use phpOMS\System\SystemUtils;
use phpOMS\Uri\HttpUri;
use phpOMS\Uri\UriFactory;
use phpOMS\Utils\ArrayUtils;

View File

@ -1,5 +1,7 @@
# User Content
This Admin software module provides powerful tools for managing user accounts and groups, controlling permissions, installing and configuring modules, as well as managing general application settings. It includes a user-friendly interface that makes creating user accounts and groups, setting up permissions and modules, and changing system settings easy and efficient.
* [Settings]({%}&page=Help/settings)
* [Accounts]({%}&page=Help/accounts)
* [Groups]({%}&page=Help/groups)

View File

@ -36,7 +36,7 @@ class GroupTagSelectorPopupView extends View
* @var string
* @since 1.0.0
*/
private string $id = '';
public string $id = '';
/**
* {@inheritdoc}

View File

@ -36,7 +36,7 @@ class GroupTagSelectorView extends View
* @var string
* @since 1.0.0
*/
private string $id = '';
public string $id = '';
/**
* Is required?