This commit is contained in:
Dennis Eichhorn 2024-02-28 05:09:11 +00:00
parent 84f132196f
commit bd948cc161
5 changed files with 6 additions and 55 deletions

View File

@ -1,35 +0,0 @@
---
name: Dev Bug Report
about: Create a report to help us improve
title: ''
labels: stat_backlog, type_bug
assignees: ''
---
# Bug Description
A clear and concise description of what the bug is.
# How to Reproduce
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
## Minimal Code Example
```
// your code ...
```
# Expected Behavior
A clear and concise description of what you expected to happen.
# Screenshots
If applicable, add screenshots to help explain your problem.
# Additional Information
Add any other context about the problem here.

View File

@ -1,18 +0,0 @@
---
name: Dev Feature Request
about: Suggest an idea for this project
title: ''
labels: stat_backlog, type_feature
assignees: ''
---
# What is the feature you request
* A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
* A clear and concise description of what you want to happen.
# Alternatives
A clear and concise description of any alternative solutions or features you've considered.
# Additional Information
Add any other context or screenshots about the feature request here.

View File

@ -73,7 +73,7 @@ final class Installer extends InstallerAbstract
$amountTypes = [];
/** @var \Modules\InvestmentManagement\Controller\ApiController $module */
$module = $app->moduleManager->getModuleInstance('InvestmentManagement', 'Api');
$module = $app->moduleManager->get('InvestmentManagement', 'Api');
/** @var array $type */
foreach ($types as $type) {

View File

@ -47,6 +47,10 @@ use phpOMS\Stdlib\Base\FloatInt;
* @license OMS License 2.0
* @link https://jingga.app
* @since 1.0.0
*
* @feature Comparison/calculations
* Add calculation which compares investment options (costs, profit, break-even)
* https://github.com/Karaka-Management/oms-InvestmentManagement/issues/1
*/
final class ApiController extends Controller
{

View File

@ -124,7 +124,7 @@ echo $this->data['nav']->render(); ?>
</div>
<input type="radio" id="c-tab-3" name="tabular-2"<?= $this->request->uri->fragment === 'c-tab-3' ? ' checked' : ''; ?>>
<div class="tab">
<div class="tab col-simple">
<?= $this->data['note']->render('investment-notes', '', $investment->notes); ?>
</div>