Files
wc-composable-product/templates/product-selector.twig
magdev e9df6e4278 Implement comprehensive stock management integration (v1.1.0)
Added complete inventory tracking system for composable products:
- Stock validation during product selection and add-to-cart
- Automatic stock deduction on order completion/processing
- Automatic stock restoration on order cancellation/refund
- Stock status indicators with visual feedback (In stock, Low stock, Out of stock)
- Prevention of out-of-stock item selection
- Low stock warnings when 5 or fewer items remain
- Order notes documenting all stock changes

New files:
- includes/Stock_Manager.php: Core stock management logic

Modified files:
- includes/Cart_Handler.php: Integrated stock validation
- includes/Product_Selector.php: Added stock info to product data
- includes/Plugin.php: Added Stock_Manager to includes
- templates/product-selector.twig: Stock status display
- assets/css/frontend.css: Stock indicator styling
- languages/*.pot/*.po: 8 new translatable strings

Version bumped to 1.1.0 with updated CHANGELOG.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-31 16:41:53 +01:00

77 lines
3.5 KiB
Twig

{# Product Selector Template #}
<div class="wc-composable-product-selector" data-product-id="{{ product_id }}" data-selection-limit="{{ selection_limit }}" data-pricing-mode="{{ pricing_mode }}" data-fixed-price="{{ fixed_price }}">
<div class="composable-header">
<h3>{{ __('Select Your Products') }}</h3>
<p class="selection-info">
{{ __('Choose up to') }} <strong>{{ selection_limit }}</strong> {{ __('items from the selection below.') }}
</p>
</div>
<div class="composable-products-grid">
{% for product in products %}
<div class="composable-product-item{% if not product.in_stock %} out-of-stock{% endif %}" data-product-id="{{ product.id }}" data-price="{{ product.price }}" data-stock-status="{{ product.stock_status }}">
<div class="product-item-inner">
<label class="product-item-label">
<input type="checkbox"
name="composable_products[]"
value="{{ product.id }}"
class="composable-product-checkbox"
data-product-id="{{ product.id }}"
data-price="{{ product.price }}"
{% if not product.in_stock %}disabled{% endif %}>
{% if show_images and product.image_url %}
<div class="product-item-image">
<img src="{{ product.image_url }}" alt="{{ product.name|esc_attr }}">
</div>
{% endif %}
<div class="product-item-details">
<h4 class="product-item-name">{{ product.name|esc_html }}</h4>
{% if show_prices %}
<div class="product-item-price">
{{ product.price_html|raw }}
</div>
{% endif %}
<div class="product-item-stock">
{% if not product.in_stock %}
<span class="stock-status out-of-stock">{{ __('Out of stock') }}</span>
{% elseif product.managing_stock and product.stock_quantity is not null and product.stock_quantity <= 5 %}
<span class="stock-status low-stock">{{ __('Only') }} {{ product.stock_quantity }} {{ __('left') }}</span>
{% elseif product.in_stock %}
<span class="stock-status in-stock">{{ __('In stock') }}</span>
{% endif %}
</div>
</div>
<span class="product-item-checkmark"></span>
</label>
</div>
</div>
{% endfor %}
</div>
{% if show_total %}
<div class="composable-total">
<div class="total-label">{{ __('Total Price:') }}</div>
<div class="total-price" data-currency="{{ currency_symbol }}">
{% if pricing_mode == 'fixed' %}
{{ currency_symbol }}{{ fixed_price }}
{% else %}
<span class="calculated-total">{{ currency_symbol }}0.00</span>
{% endif %}
</div>
</div>
{% endif %}
<div class="composable-actions">
<button type="button" class="button alt composable-add-to-cart" data-product-id="{{ product_id }}">
{{ __('Add to Cart') }}
</button>
<div class="composable-messages"></div>
</div>
</div>