Features Added: - Standard e-commerce properties (Price, Weight, shipping fields) - Order management with Create/Edit views and shipping information - ShippingRates system for weight-based shipping calculations - Comprehensive test coverage with JWT authentication tests - Sample data seeder with 5 orders demonstrating full workflow - Photo upload functionality for products - Multi-cryptocurrency payment support (BTC, XMR, USDT, etc.) Database Changes: - Added ShippingRates table - Added shipping fields to Orders (Name, Address, City, PostCode, Country) - Renamed properties to standard names (BasePrice to Price, ProductWeight to Weight) - Added UpdatedAt timestamps to models UI Improvements: - Added Create/Edit views for Orders - Added ShippingRates management UI - Updated navigation menu with Shipping option - Enhanced Order Details view with shipping information Sample Data: - 3 Categories (Electronics, Clothing, Books) - 5 Products with various prices - 5 Shipping rates (Royal Mail options) - 5 Orders in different statuses (Pending to Delivered) - 3 Crypto payments demonstrating payment flow Security: - All API endpoints secured with JWT authentication - No public endpoints - client apps must authenticate - Privacy-focused design with minimal data collection Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
102 lines
4.2 KiB
Plaintext
102 lines
4.2 KiB
Plaintext
@model IEnumerable<LittleShop.DTOs.ShippingRateDto>
|
|
|
|
@{
|
|
ViewData["Title"] = "Shipping Rates";
|
|
}
|
|
|
|
<div class="row mb-4">
|
|
<div class="col">
|
|
<h1><i class="fas fa-truck"></i> Shipping Rates</h1>
|
|
</div>
|
|
<div class="col-auto">
|
|
<a href="@Url.Action("Create")" class="btn btn-primary">
|
|
<i class="fas fa-plus"></i> Add Shipping Rate
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
@if (Model.Any())
|
|
{
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Country</th>
|
|
<th>Weight Range (g)</th>
|
|
<th>Price</th>
|
|
<th>Delivery Days</th>
|
|
<th>Status</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var rate in Model)
|
|
{
|
|
<tr>
|
|
<td>
|
|
<strong>@rate.Name</strong>
|
|
@if (!string.IsNullOrEmpty(rate.Description))
|
|
{
|
|
<br><small class="text-muted">@rate.Description</small>
|
|
}
|
|
</td>
|
|
<td>@rate.Country</td>
|
|
<td>@rate.MinWeight - @rate.MaxWeight</td>
|
|
<td>£@rate.Price</td>
|
|
<td>@rate.MinDeliveryDays - @rate.MaxDeliveryDays days</td>
|
|
<td>
|
|
@if (rate.IsActive)
|
|
{
|
|
<span class="badge bg-success">Active</span>
|
|
}
|
|
else
|
|
{
|
|
<span class="badge bg-danger">Inactive</span>
|
|
}
|
|
</td>
|
|
<td>
|
|
<div class="btn-group btn-group-sm">
|
|
<a href="@Url.Action("Edit", new { id = rate.Id })" class="btn btn-outline-primary">
|
|
<i class="fas fa-edit"></i>
|
|
</a>
|
|
<form method="post" action="@Url.Action("Delete", new { id = rate.Id })" class="d-inline"
|
|
onsubmit="return confirm('Are you sure you want to delete this shipping rate?')">
|
|
<button type="submit" class="btn btn-outline-danger">
|
|
<i class="fas fa-trash"></i>
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
}
|
|
else
|
|
{
|
|
<div class="text-center py-4">
|
|
<i class="fas fa-truck fa-3x text-muted mb-3"></i>
|
|
<p class="text-muted">No shipping rates configured. <a href="@Url.Action("Create")">Add your first shipping rate</a>.</p>
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card mt-4">
|
|
<div class="card-header">
|
|
<h5><i class="fas fa-info-circle"></i> Shipping Information</h5>
|
|
</div>
|
|
<div class="card-body">
|
|
<p>Configure shipping rates based on weight ranges and destination countries.</p>
|
|
<ul>
|
|
<li>Weight ranges are in grams</li>
|
|
<li>Rates are automatically calculated based on order weight</li>
|
|
<li>The cheapest applicable rate is selected for customers</li>
|
|
<li>Set rates as inactive to temporarily disable them</li>
|
|
</ul>
|
|
</div>
|
|
</div> |