mirror of
https://github.com/Karaka-Management/oms-Admin.git
synced 2026-01-11 13:38:39 +00:00
test fixes fleet+expense tests
This commit is contained in:
parent
5fa64005cf
commit
1a91f31235
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ class GroupTagSelectorPopupView extends View
|
|||
* @var string
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private string $id = '';
|
||||
public string $id = '';
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ class GroupTagSelectorView extends View
|
|||
* @var string
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private string $id = '';
|
||||
public string $id = '';
|
||||
|
||||
/**
|
||||
* Is required?
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user