mirror of
https://github.com/Karaka-Management/oms-Billing.git
synced 2026-02-10 13:28:42 +00:00
Fix minor bugs for full inspections
This commit is contained in:
parent
57643e4848
commit
22580e9b28
|
|
@ -17,6 +17,7 @@ namespace Modules\Billing\Admin;
|
|||
use phpOMS\DataStorage\Database\DatabasePool;
|
||||
use phpOMS\DataStorage\Database\Schema\Builder;
|
||||
use phpOMS\Module\UninstallAbstract;
|
||||
use phpOMS\Module\InfoManager;
|
||||
|
||||
/**
|
||||
* Navigation class.
|
||||
|
|
|
|||
|
|
@ -17,6 +17,8 @@ namespace Modules\Billing\Admin;
|
|||
use phpOMS\DataStorage\Database\DatabasePool;
|
||||
use phpOMS\Module\UpdateAbstract;
|
||||
use phpOMS\System\File\Directory;
|
||||
use phpOMS\Module\InfoManager;
|
||||
|
||||
|
||||
/**
|
||||
* Navigation class.
|
||||
|
|
@ -33,7 +35,7 @@ class Update extends UpdateAbstract
|
|||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public static function update(DatabasePool $dbPool, array $info)
|
||||
public static function update(DatabasePool $dbPool, InfoManager $info)
|
||||
{
|
||||
Directory::deletePath(__DIR__ . '/Update');
|
||||
mkdir('Update');
|
||||
|
|
|
|||
|
|
@ -514,4 +514,9 @@ class Invoice implements \JsonSerializable
|
|||
{
|
||||
$this->elements[] = $element;
|
||||
}
|
||||
|
||||
public function jsonSerialize()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -273,4 +273,9 @@ class InvoiceElement implements \JsonSerializable
|
|||
{
|
||||
return $this->totalPriceGross;
|
||||
}
|
||||
|
||||
public function jsonSerialize()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user