bug fixes

This commit is contained in:
Dennis Eichhorn 2024-05-12 00:06:28 +00:00
parent 529a48942f
commit 2a31fa2e6e
5 changed files with 10 additions and 10 deletions

View File

@ -9,5 +9,5 @@ jobs:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: 'Thank you for createing this issue. We will check it as soon as possible.'
issue-message: 'Thank you for creating this issue. We will check it as soon as possible.'
pr-message: 'Thank you for your pull request. We will check it as soon as possible.'

View File

@ -13,7 +13,7 @@
declare(strict_types=1);
return ['Navigation' => [
'Analysis' => 'Analyse',
'Analysis' => 'Auswertung',
'Articles' => 'Artikel',
'Invoice' => 'Rechnung',
'Invoices' => 'Rechnungen',

View File

@ -28,7 +28,7 @@ echo $this->data['nav']->render();
?>
<div class="row">
<div class="col-xs-12 col-sm-6">
<div class="portlet">
<section class="portlet">
<form id="orderSuggestionCreate" action="<?= UriFactory::build('{/api}purchase/order/suggestion'); ?>" method="put">
<div class="portlet-body">
<!--
@ -89,6 +89,6 @@ echo $this->data['nav']->render();
<input type="submit" value="<?= $this->getHtml('Analyze'); ?>">
</div>
</form>
</div>
</section>
</div>
</div>

View File

@ -22,7 +22,7 @@ echo $this->data['nav']->render();
<div class="row">
<div class="col-xs-12">
<div class="portlet">
<section class="portlet">
<div class="portlet-head"><?= $this->getHtml('OrderSuggestions'); ?><i class="g-icon download btn end-xs">download</i></div>
<div class="slider">
<table id="suggestionList" class="default sticky">
@ -128,6 +128,6 @@ echo $this->data['nav']->render();
<?php endif; ?>
</table>
</div>
</div>
</section>
</div>
</div>

View File

@ -25,21 +25,21 @@ echo $this->data['nav']->render();
<?php if ($this->data['suggestion']->status === OrderSuggestionStatus::DRAFT) : ?>
<div class="row">
<div class="col-xs-12 col-sm-7 col-md-5 col-lg-4">
<div class="portlet">
<section class="portlet">
<div class="portlet-body">
<input type="hidden" name="id" form="suggestionList" value="<?= $this->data['suggestion']->id; ?>">
<input name="save" type="submit" form="suggestionList" value="<?= $this->getHtml('Save', '0', '0'); ?>">
<!--<input name="order" type="submit" form="suggestionList" formaction="<?= UriFactory::build('{/api}purchase/order/suggestion/bill?csrf={$CSRF}'); ?>" formmethod="put" value="<?= $this->getHtml('Order'); ?>">-->
<input name="delete" class="cancel" type="submit" form="suggestionList" formmethod="delete" value="<?= $this->getHtml('Delete', '0', '0'); ?>">
</div>
</div>
</section>
</div>
</div>
<?php endif; ?>
<div class="row">
<div class="col-xs-12">
<div class="portlet">
<section class="portlet">
<div class="portlet-head"><?= $this->getHtml('Suggestions'); ?><i class="g-icon download btn end-xs">download</i></div>
<div class=""><!-- @todo Re-implement slider once we figured out how to combine slider+sticky -->
<table id="suggestionList" class="default sticky" data-tag="form"
@ -144,7 +144,7 @@ echo $this->data['nav']->render();
<td><?= $total->getAmount(); ?>
</table>
</div>
</div>
</section>
</div>
</div>