mirror of
https://github.com/Karaka-Management/oms-Finance.git
synced 2026-02-13 20:08:41 +00:00
make id public, organigram impl. media password/encryption, settings bug fix, Money->FloatInt change, ...
This commit is contained in:
parent
43e48a5057
commit
f2feefe3bb
|
|
@ -96,7 +96,7 @@ final class Installer extends InstallerAbstract
|
||||||
|
|
||||||
/** @var \Modules\Finance\Models\TaxCode $code */
|
/** @var \Modules\Finance\Models\TaxCode $code */
|
||||||
$code = $responseData['response'];
|
$code = $responseData['response'];
|
||||||
$id = $code->getId();
|
$id = $code->id;
|
||||||
|
|
||||||
$isFirst = true;
|
$isFirst = true;
|
||||||
foreach ($data['l11n'] as $lang => $l11n) {
|
foreach ($data['l11n'] as $lang => $l11n) {
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ class TaxCode implements \JsonSerializable
|
||||||
* @var int
|
* @var int
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected int $id = 0;
|
public int $id = 0;
|
||||||
|
|
||||||
public string $abbr = '';
|
public string $abbr = '';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ class TaxCodeL11n implements \JsonSerializable
|
||||||
* @var int
|
* @var int
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected int $id = 0;
|
public int $id = 0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tax code ID.
|
* Tax code ID.
|
||||||
|
|
|
||||||
|
|
@ -13,9 +13,12 @@
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
return ['Navigation' => [
|
return ['Navigation' => [
|
||||||
|
'Finance' => 'Finance',
|
||||||
|
'Account' => 'Account',
|
||||||
'Analysis' => 'Analysis',
|
'Analysis' => 'Analysis',
|
||||||
'Articles' => 'Articles',
|
'Items' => 'Items',
|
||||||
'Clients' => 'Clients',
|
'Clients' => 'Clients',
|
||||||
|
'Suppliers' => 'Suppliers',
|
||||||
'Create' => 'Create',
|
'Create' => 'Create',
|
||||||
'Invoice' => 'Invoice',
|
'Invoice' => 'Invoice',
|
||||||
'Invoices' => 'Invoices',
|
'Invoices' => 'Invoices',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user