mirror of
https://github.com/Karaka-Management/oms-Admin.git
synced 2026-02-17 04:48:40 +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 ($data as $i => $row) {
|
||||||
foreach ($row as $j => $cell) {
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -73,9 +73,6 @@ use phpOMS\Module\ModuleStatus;
|
||||||
use phpOMS\Security\EncryptionHelper;
|
use phpOMS\Security\EncryptionHelper;
|
||||||
use phpOMS\System\File\Local\File;
|
use phpOMS\System\File\Local\File;
|
||||||
use phpOMS\System\MimeType;
|
use phpOMS\System\MimeType;
|
||||||
use phpOMS\System\OperatingSystem;
|
|
||||||
use phpOMS\System\SystemType;
|
|
||||||
use phpOMS\System\SystemUtils;
|
|
||||||
use phpOMS\Uri\HttpUri;
|
use phpOMS\Uri\HttpUri;
|
||||||
use phpOMS\Uri\UriFactory;
|
use phpOMS\Uri\UriFactory;
|
||||||
use phpOMS\Utils\ArrayUtils;
|
use phpOMS\Utils\ArrayUtils;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
# User Content
|
# 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)
|
* [Settings]({%}&page=Help/settings)
|
||||||
* [Accounts]({%}&page=Help/accounts)
|
* [Accounts]({%}&page=Help/accounts)
|
||||||
* [Groups]({%}&page=Help/groups)
|
* [Groups]({%}&page=Help/groups)
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ class GroupTagSelectorPopupView extends View
|
||||||
* @var string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private string $id = '';
|
public string $id = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ class GroupTagSelectorView extends View
|
||||||
* @var string
|
* @var string
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private string $id = '';
|
public string $id = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Is required?
|
* Is required?
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user