Umsetzung der Warenwirtschafts-/Produktmanagement-Erweiterung gemaess Entwicklungsplan V4.0: - AP-00: Regressionsbasis fuer 5.1-Features (ProductPhase51Test) - AP-01: URL-Bugfixes B1/B2 (suppliers/packaging-items, breitere url-Spalten) - AP-04/04.1: iPad-taugliche, vereinheitlichte Tabellen-Aktionen - AP-05: Einstellungen "Allgemein" mit UST-Saetzen (tax_rates) und Lieferzeit-Vorlagen (delivery_times, inkl. Tage-Feld) - AP-06: Lieferanten um Bestellweg, Bestell-Mail/-URL und Lieferzeit erweitert - AP-07/07.1: INCI um Lieferanten-Mehrfachwahl, UST und Lieferzeit erweitert; Lieferanten-Detailansicht im Modal mit pflegbaren INCI-/Verpackungslisten - AP-08: Einkauf um UST-Snapshot, Netto/Brutto-Automatik und Duplizieren erweitert Entwicklungsplan aktualisiert: alle Klaerungspunkte (§5) vom Kunden beantwortet und in die jeweiligen APs eingearbeitet (AP-02/03/09/13/15), neues AP-18 (Hinweise-Doku unter Einstellungen) ergaenzt. Naechster Schritt eindeutig markiert: AP-09 (Produktion auf Hersteller-Rezeptur, kein Fallback, Warnung).
118 lines
5.8 KiB
PHP
118 lines
5.8 KiB
PHP
@extends('layouts.layout-2')
|
||
|
||
@section('content')
|
||
@include('admin.inventory.partials.table-actions-style')
|
||
|
||
<div class="card mb-4">
|
||
<h6 class="card-header d-flex justify-content-between align-items-center">
|
||
<span>{{ __('Umsatzsteuersätze') }}</span>
|
||
<a href="{{ route('admin.inventory.tax-rates.create') }}"
|
||
class="btn btn-sm btn-primary">{{ __('Neu anlegen') }}</a>
|
||
</h6>
|
||
<div class="card-datatable table-responsive">
|
||
<table class="table table-striped table-bordered wawi-table mb-0">
|
||
<thead>
|
||
<tr>
|
||
<th style="max-width: 60px;"> </th>
|
||
<th>{{ __('Name') }}</th>
|
||
<th>{{ __('Satz') }}</th>
|
||
<th>{{ __('Status') }}</th>
|
||
<th></th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
@forelse($taxRates as $taxRate)
|
||
<tr>
|
||
<td>
|
||
<a href="{{ route('admin.inventory.tax-rates.edit', $taxRate) }}"
|
||
class="btn icon-btn btn-sm btn-primary">
|
||
<span class="far fa-edit"></span>
|
||
</a>
|
||
</td>
|
||
<td>{{ $taxRate->name }}</td>
|
||
<td>{{ number_format($taxRate->percent, 2, ',', '.') }} %</td>
|
||
<td>
|
||
@if ($taxRate->active)
|
||
<span class="badge badge-pill badge-success"><i class="fa fa-check"></i></span>
|
||
@else
|
||
<span class="badge badge-pill badge-danger"><i class="fa fa-times"></i></span>
|
||
@endif
|
||
</td>
|
||
<td>
|
||
<form action="{{ route('admin.inventory.tax-rates.destroy', $taxRate) }}" method="post"
|
||
class="d-inline" onsubmit="return confirm('{{ __('Really delete entry?') }}');">
|
||
@csrf
|
||
@method('DELETE')
|
||
<button type="submit" class="btn btn-link text-danger p-0"
|
||
title="{{ __('Delete') }}"><i class="far fa-trash-alt"></i></button>
|
||
</form>
|
||
</td>
|
||
</tr>
|
||
@empty
|
||
<tr>
|
||
<td colspan="5" class="text-center text-muted">
|
||
{{ __('Noch keine Umsatzsteuersätze angelegt.') }}</td>
|
||
</tr>
|
||
@endforelse
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="card">
|
||
<h6 class="card-header d-flex justify-content-between align-items-center">
|
||
<span>{{ __('Lieferzeit-Vorlagen') }}</span>
|
||
<a href="{{ route('admin.inventory.delivery-times.create') }}"
|
||
class="btn btn-sm btn-primary">{{ __('Neu anlegen') }}</a>
|
||
</h6>
|
||
<div class="card-datatable table-responsive">
|
||
<table class="table table-striped table-bordered wawi-table mb-0">
|
||
<thead>
|
||
<tr>
|
||
<th style="max-width: 60px;"> </th>
|
||
<th>{{ __('Bezeichnung') }}</th>
|
||
<th>{{ __('Tage') }}</th>
|
||
<th>{{ __('Status') }}</th>
|
||
<th></th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
@forelse($deliveryTimes as $deliveryTime)
|
||
<tr>
|
||
<td>
|
||
<a href="{{ route('admin.inventory.delivery-times.edit', $deliveryTime) }}"
|
||
class="btn icon-btn btn-sm btn-primary">
|
||
<span class="far fa-edit"></span>
|
||
</a>
|
||
</td>
|
||
<td>{{ $deliveryTime->label }}</td>
|
||
<td>{{ $deliveryTime->days !== null ? $deliveryTime->days : '–' }}</td>
|
||
<td>
|
||
@if ($deliveryTime->active)
|
||
<span class="badge badge-pill badge-success"><i class="fa fa-check"></i></span>
|
||
@else
|
||
<span class="badge badge-pill badge-danger"><i class="fa fa-times"></i></span>
|
||
@endif
|
||
</td>
|
||
<td>
|
||
<form action="{{ route('admin.inventory.delivery-times.destroy', $deliveryTime) }}"
|
||
method="post" class="d-inline"
|
||
onsubmit="return confirm('{{ __('Really delete entry?') }}');">
|
||
@csrf
|
||
@method('DELETE')
|
||
<button type="submit" class="btn btn-link text-danger p-0"
|
||
title="{{ __('Delete') }}"><i class="far fa-trash-alt"></i></button>
|
||
</form>
|
||
</td>
|
||
</tr>
|
||
@empty
|
||
<tr>
|
||
<td colspan="5" class="text-center text-muted">
|
||
{{ __('Noch keine Lieferzeit-Vorlagen angelegt.') }}</td>
|
||
</tr>
|
||
@endforelse
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
@endsection
|