depot/admin/tmpl/parts/default.php

215 lines
6.5 KiB
PHP
Raw Normal View History

2023-10-03 03:56:38 +02:00
<?php
/**
* @package Depot.Administrator
* @subpackage com_depot
* @author Thomas Kuschel <thomas@kuschel.at>
* @copyright (C) 2023 KW4NZ, <https://www.kuschel.at>
* @license GNU General Public License version 2 or later; see LICENSE.md
* @since 0.0.1
*/
2023-10-15 23:23:02 +02:00
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Layout\LayoutHelper;
2023-11-12 22:56:20 +01:00
use Joomla\CMS\Router\Route;
2023-10-15 23:23:02 +02:00
2023-11-12 22:56:20 +01:00
/** @var \Joomla\CMS\WebAsset\WebAssetManager $wa */
$wa = $this->document->getWebAssetManager();
$wa->useScript('table.columns')
->useScript('multiselect');
$canChange = true;
$listOrder = $this->escape($this->state->get('list.ordering'));
$listDirn = $this->escape($this->state->get('list.direction'));
$saveOrder = $listOrder == 'd.ordering';
2023-10-06 04:47:51 +02:00
2023-11-12 22:56:20 +01:00
if ($saveOrder && !empty($this->items)) {
$saveOrderingUrl = 'index.php?option=com_depot&task=parts.saveOrderAjax&tmpl=component';
HTMLHelper::_('draggablelist.draggable');
}
?>
2023-10-15 23:23:02 +02:00
<form action="<?= Route::_('index.php?option=com_depot&view=parts'); ?>" method="post" name="adminForm" id="adminForm">
<?= LayoutHelper::render('joomla.searchtools.default', ['view' => $this]); ?>
2023-10-15 23:23:02 +02:00
<?php if (empty($this->items)): ?>
<div class="alert alert-info">
<span class="icon-info-circle" aria-hidden="true">
</span>
<?= Text::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
</div>
<?php else: ?>
2023-11-18 21:05:43 +01:00
<table class="table table-striped table-hover" id="partList">
2023-11-12 22:56:20 +01:00
<caption class="visually-hidden">
2023-11-18 21:05:43 +01:00
<?= Text::_('COM_DEPOT_PARTS_TABLE_CAPTION'); ?>,
2023-11-12 22:56:20 +01:00
<span id="orderedBy">
2023-11-18 21:05:43 +01:00
<?= Text::_('JGLOBAL_SORTED_BY'); ?>
2023-11-12 22:56:20 +01:00
</span>,
<span id="filteredBy">
2023-11-18 21:05:43 +01:00
<?= Text::_('JGLOBAL_FILTERED_BY'); ?>
2023-11-12 22:56:20 +01:00
</span>
</caption>
2023-10-15 23:23:02 +02:00
<thead>
<tr>
2023-11-12 22:56:20 +01:00
<td class="w-1 text-center">
2023-10-15 23:23:02 +02:00
<?= HTMLHelper::_('grid.checkall'); ?>
2023-11-12 22:56:20 +01:00
</td>
<th scope="col" class="w-1 text-center">
2023-11-18 21:05:43 +01:00
<?= HTMLHelper::_('searchtools.sort', '', 'd.ordering', $listDirn, $listOrder, null, 'asc', 'JGRID_HEADING_ORDERING', 'icon-sort'); ?>
</th>
<th scope="col" class="w-1 text-center">
<?= HTMLHelper::_('searchtools.sort', 'JSTATUS', 'd.state', $listDirn, $listOrder); ?>
2023-10-15 23:23:02 +02:00
</th>
2023-11-12 22:56:20 +01:00
<th scope="col">
2023-10-31 23:25:42 +01:00
<?= HTMLHelper::_(
'searchtools.sort',
'COM_DEPOT_TABLE_HEAD_NAME',
'd.component_name',
2023-11-12 22:56:20 +01:00
$listDirn,
$listOrder
2023-10-31 23:25:42 +01:00
); ?>
2023-10-15 23:23:02 +02:00
</th>
<th>
2023-10-31 23:25:42 +01:00
<?= HTMLHelper::_(
'searchtools.sort',
'COM_DEPOT_TABLE_HEAD_QUANTITY',
'd.quantity',
2023-11-12 22:56:20 +01:00
$listDirn,
$listOrder
2023-10-31 23:25:42 +01:00
); ?>
</th>
<th>
<?= Text::_('COM_DEPOT_TABLE_HEAD_QUANTITY_EXP') ?>
</th>
2023-11-18 21:05:43 +01:00
<th>
<?= HTMLHelper::_(
'searchtools.sort',
'COM_DEPOT_TABLE_HEAD_DESCRIPTION',
'd.description',
$listDirn,
$listOrder
); ?>
</th>
<th>
2023-10-31 23:25:42 +01:00
<?= HTMLHelper::_(
'searchtools.sort',
'COM_DEPOT_TABLE_HEAD_MANUFACTURER',
'manufacturer',
2023-11-12 22:56:20 +01:00
$listDirn,
$listOrder
2023-10-31 23:25:42 +01:00
); ?>
</th>
<th>
2023-10-31 23:25:42 +01:00
<?= HTMLHelper::_(
'searchtools.sort',
'COM_DEPOT_TABLE_HEAD_STOCK',
'stock_name',
2023-11-12 22:56:20 +01:00
$listDirn,
$listOrder
); ?>
</th>
<th scope="col" class="w-1 text-center">
<?= HTMLHelper::_(
'searchtools.sort',
'JGRID_HEADING_ID',
'd.id',
$listDirn,
$listOrder
2023-10-31 23:25:42 +01:00
); ?>
</th>
2023-10-15 23:23:02 +02:00
</tr>
</thead>
2023-11-18 21:05:43 +01:00
<tbody <?php if ($saveOrder): ?> class="js-draggable" data-url="<?= $saveOrderingUrl; ?>"
data-direction="<?= strtolower($listDirn); ?>" data-nested="true" <?php endif; ?>>
<?php foreach ($this->items as $i => $item):
$ordering = ($listOrder == 'ordering');
$canChange = true;
?>
<tr class="row<?= $i % 2; ?>" data-draggable-group="0" item-id="<?= $item->id; ?>">
<th>
2023-11-12 22:56:20 +01:00
<?= HTMLHelper::_('grid.id', $i, $item->id, false, 'cid', 'cb', $item->component_name); ?>
2023-11-18 21:05:43 +01:00
</th>
<td class="text-center d-none d-md-table-cell">
<?php
$iconClass = '';
if (!$canChange) {
$iconClass = ' inactive';
} elseif (!$saveOrder) {
$iconClass = ' inactive" title="' . Text::_('JORDERINGDISABLED');
}
?>
<span class="sortable-handler <?= $iconClass ?>">
<span class="icon-ellipsis-v" aria-hidden="true"></span>
</span>
<?php if ($saveOrder): ?>
<input type="text" name="order[]" size="5" value="<?= $item->ordering; ?>"
class="width-20 text-area-order hidden">
<?php endif; ?>
<div class="small">
<?= $item->ordering; ?>
</div>
2023-10-15 23:23:02 +02:00
</td>
2023-11-12 22:56:20 +01:00
<td class="text-center">
2023-11-18 21:05:43 +01:00
<?= HTMLHelper::_('jgrid.published', $item->state, $i, 'parts.', $canChange); ?>
2023-10-15 23:23:02 +02:00
</td>
2023-11-12 22:56:20 +01:00
<th>
2023-10-29 21:48:49 +01:00
<div class="break-word">
<a href="<?= Route::_('index.php?option=com_depot&task=part.edit&id=' .
(int) $item->id) ?>" title="<?= Text::_('JACTION_EDIT') ?>">
<?= $this->escape($item->component_name); ?>
</a>
</div>
<div class="small break-word" role="button" title="<?= $item->package_description ?>">
<?= $item->package_name; ?>
<?php if (!empty($item->mounting_style)): ?>
<div class="small break-word">
<?= Text::_('COM_DEPOT_FIELD_PACKAGE_MOUNTING_STYLE_LABEL') . ': '; ?>
<?= Text::alt(
'COM_DEPOT_LIST_MOUNTING_STYLE_' . $item->mounting_style,
Text::_('COM_DEPOT_LIST_MOUNTING_STYLE_UNKNOWN')
); ?>
</div>
<?php endif; ?>
</div>
2023-11-12 22:56:20 +01:00
</th>
<td>
<?= $this->escape($item->quantity); ?>
</td>
<td>
<?= "10^" . $item->quantity_exp; ?>
</td>
2023-11-18 21:05:43 +01:00
<td>
<div class="break-word">
<?= $this->escape($item->description); ?>
</div>
</td>
<td>
<a href="<?= Route::_('index.php?option=com_depot&task=manufacturer.edit&id=' .
(int) $item->id) ?>" title="<?= Text::_('JACTION_EDIT') ?>">
<?= $this->escape($item->manufacturer); ?>
</a>
</td>
<td>
2023-10-31 23:25:42 +01:00
<a class="break-word" href="<?= Route::_('index.php?option=com_depot&task=stock.edit&id=' .
(int) $item->id) ?>" title="<?= Text::_('JACTION_EDIT') ?>">
<?= $this->escape($item->stock_name); ?>
</a>
2023-10-31 23:25:42 +01:00
<div class="small">
<?= $this->escape($item->owner); ?>
</div>
2023-11-12 22:56:20 +01:00
</td>
<td>
<?= $item->id ?>
</td>
2023-10-15 23:23:02 +02:00
</tr>
<?php endforeach; ?>
</tbody>
</table>
2023-11-18 21:05:43 +01:00
<?= $this->pagination->getListFooter(); ?>
2023-10-15 23:23:02 +02:00
<?php endif; ?>
2023-10-15 16:17:17 +02:00
2023-10-15 23:23:02 +02:00
<input type="hidden" name="task" value="">
<input type="hidden" name="boxchecked" value="0">
<?= HTMLHelper::_('form.token'); ?>
</form>