Make it possible to copy products (closes #571)

This commit is contained in:
Bernd Bestel
2020-11-15 16:05:25 +01:00
parent 7d7f9bf07a
commit 9a7196b761
5 changed files with 98 additions and 10 deletions

View File

@@ -118,6 +118,12 @@
title="{{ $__t('Edit this item') }}">
<i class="fas fa-edit"></i>
</a>
<a class="btn btn-primary btn-sm"
href="{{ $U('/product/new?copy-of=') }}{{ $product->id }}"
data-toggle="tooltip"
title="{{ $__t('Copy this item') }}">
<i class="fas fa-copy"></i>
</a>
<a class="btn btn-danger btn-sm product-delete-button @if($product->active == 0) disabled @endif"
href="#"
data-product-id="{{ $product->id }}"