mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
46 lines
1.7 KiB
PHP
46 lines
1.7 KiB
PHP
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
|
|
|
|
<h1 class="page-header">
|
|
Shopping list
|
|
<a class="btn btn-default" href="/shoppinglistitem/new" role="button">
|
|
<i class="fa fa-plus"></i> Add
|
|
</a>
|
|
<a id="add-products-below-min-stock-amount" class="btn btn-info" href="#" role="button">
|
|
<i class="fa fa-plus"></i> Add products that are below defined min. stock amount
|
|
</a>
|
|
</h1>
|
|
|
|
<div class="table-responsive">
|
|
<table id="shoppinglist-table" class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>Product / <em>Note</em></th>
|
|
<th>Amount</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($listItems as $listItem) : ?>
|
|
<tr class="<?php if ($listItem->amount_autoadded > 0) echo 'info-bg'; ?>">
|
|
<td class="fit-content">
|
|
<a class="btn btn-info" href="/shoppinglistitem/<?php echo $listItem->id; ?>" role="button">
|
|
<i class="fa fa-pencil"></i>
|
|
</a>
|
|
<a class="btn btn-danger shoppinglist-delete-button" href="#" role="button" data-shoppinglist-id="<?php echo $listItem->id; ?>">
|
|
<i class="fa fa-trash"></i>
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<?php if (!empty($listItem->product_id)) echo GrocyPhpHelper::FindObjectInArrayByPropertyValue($products, 'id', $listItem->product_id)->name . '<br>'; ?><em><?php echo $listItem->note; ?></em>
|
|
</td>
|
|
<td>
|
|
<?php echo $listItem->amount + $listItem->amount_autoadded; if (!empty($listItem->product_id)) echo ' ' . GrocyPhpHelper::FindObjectInArrayByPropertyValue($quantityunits, 'id', GrocyPhpHelper::FindObjectInArrayByPropertyValue($products, 'id', $listItem->product_id)->qu_id_purchase)->name; ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|