CMXX - Shopping_cart + local fonts

This commit is contained in:
“VeLiTi”
2025-02-06 11:47:53 +01:00
parent 0172f8405a
commit 07b5578895
35 changed files with 18706 additions and 7 deletions

View File

@@ -272,7 +272,7 @@ $view .= '
<td>
<select form="update" name="item['.$pricelist_item['rowID'].'][product_id]">';
foreach ($products as $product){
$view .= '<option value="'.$product['product_id'].'" '.($product['product_id']==$pricelist_item['product_id'] ?' selected':'').'>'.(${$product['product_name']} ?? $product['product_name']).'</option>
$view .= '<option value="'.$product['product_id'].'" '.($product['product_id']==$pricelist_item['product_id'] ?' selected':'').'>'.$product['product_id'] .' - '.(${$product['product_name']} ?? $product['product_name']).'</option>
';}
$view .= ' </select>
</td>
@@ -316,7 +316,7 @@ $view .= '
<td>
<select form="new" name="product_id">';
foreach ($products as $product){
$view .= '<option value="'.$product['product_id'].'">'.(${$product['product_name']} ?? $product['product_name']).'</option>
$view .= '<option value="'.$product['product_id'].'">'.$product['product_id'] .' - '.(${$product['product_name']} ?? $product['product_name']).'</option>
';}
$view .= ' </select>
</td>