mirror of
https://github.com/Karaka-Management/oms-Purchase.git
synced 2026-02-11 05:18:41 +00:00
bug fixes
This commit is contained in:
parent
529a48942f
commit
2a31fa2e6e
2
.github/workflows/greetings.yml
vendored
2
.github/workflows/greetings.yml
vendored
|
|
@ -9,5 +9,5 @@ jobs:
|
||||||
- uses: actions/first-interaction@v1
|
- uses: actions/first-interaction@v1
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
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.'
|
pr-message: 'Thank you for your pull request. We will check it as soon as possible.'
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
return ['Navigation' => [
|
return ['Navigation' => [
|
||||||
'Analysis' => 'Analyse',
|
'Analysis' => 'Auswertung',
|
||||||
'Articles' => 'Artikel',
|
'Articles' => 'Artikel',
|
||||||
'Invoice' => 'Rechnung',
|
'Invoice' => 'Rechnung',
|
||||||
'Invoices' => 'Rechnungen',
|
'Invoices' => 'Rechnungen',
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ echo $this->data['nav']->render();
|
||||||
?>
|
?>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12 col-sm-6">
|
<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">
|
<form id="orderSuggestionCreate" action="<?= UriFactory::build('{/api}purchase/order/suggestion'); ?>" method="put">
|
||||||
<div class="portlet-body">
|
<div class="portlet-body">
|
||||||
<!--
|
<!--
|
||||||
|
|
@ -89,6 +89,6 @@ echo $this->data['nav']->render();
|
||||||
<input type="submit" value="<?= $this->getHtml('Analyze'); ?>">
|
<input type="submit" value="<?= $this->getHtml('Analyze'); ?>">
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ echo $this->data['nav']->render();
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12">
|
<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="portlet-head"><?= $this->getHtml('OrderSuggestions'); ?><i class="g-icon download btn end-xs">download</i></div>
|
||||||
<div class="slider">
|
<div class="slider">
|
||||||
<table id="suggestionList" class="default sticky">
|
<table id="suggestionList" class="default sticky">
|
||||||
|
|
@ -128,6 +128,6 @@ echo $this->data['nav']->render();
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -25,21 +25,21 @@ echo $this->data['nav']->render();
|
||||||
<?php if ($this->data['suggestion']->status === OrderSuggestionStatus::DRAFT) : ?>
|
<?php if ($this->data['suggestion']->status === OrderSuggestionStatus::DRAFT) : ?>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12 col-sm-7 col-md-5 col-lg-4">
|
<div class="col-xs-12 col-sm-7 col-md-5 col-lg-4">
|
||||||
<div class="portlet">
|
<section class="portlet">
|
||||||
<div class="portlet-body">
|
<div class="portlet-body">
|
||||||
<input type="hidden" name="id" form="suggestionList" value="<?= $this->data['suggestion']->id; ?>">
|
<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="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="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'); ?>">
|
<input name="delete" class="cancel" type="submit" form="suggestionList" formmethod="delete" value="<?= $this->getHtml('Delete', '0', '0'); ?>">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12">
|
<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="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 -->
|
<div class=""><!-- @todo Re-implement slider once we figured out how to combine slider+sticky -->
|
||||||
<table id="suggestionList" class="default sticky" data-tag="form"
|
<table id="suggestionList" class="default sticky" data-tag="form"
|
||||||
|
|
@ -144,7 +144,7 @@ echo $this->data['nav']->render();
|
||||||
<td><?= $total->getAmount(); ?>
|
<td><?= $total->getAmount(); ?>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user