diff --git a/.coverage b/.coverage
new file mode 100644
index 0000000..2aa8b7b
Binary files /dev/null and b/.coverage differ
diff --git a/.cursor/rules/django-project.mdc b/.cursor/rules/django-project.mdc
new file mode 100644
index 0000000..49f6dc5
--- /dev/null
+++ b/.cursor/rules/django-project.mdc
@@ -0,0 +1,17 @@
+---
+description:
+globs:
+alwaysApply: true
+---
+- This is a Django project which uses SQLite as the database.
+- Follow Django conventions and best practices; use the Django ORM and define fields with appropriate types.
+- Use function-based views and follow Django conventions for naming and structuring views.
+- Templates use the Django template language and Bootstrap 5 CSS and JavaScript for styling.
+- The main Django app is in `hub/services`; ignore the app `hub/broker`.
+- Docker-specific code is in the folder `docker/`.
+- Kubernetes deployment-specific files are in `deployment/`.
+- GitLab CI is used as the main CI/CD system.
+- The project uses Astral uv to manage the Python project, dependencies, and the venv.
+- Execute Django with `uv run --extra dev manage.py`.
+- Always add comments to the code to describe what's happening.
+- Answers should be short and concise, and should not include any unnecessary comments or explanations, but be clear on which file a code block should be placed in.
diff --git a/.forgejo/setup-local-testing.sh b/.forgejo/setup-local-testing.sh
new file mode 100755
index 0000000..33880b4
--- /dev/null
+++ b/.forgejo/setup-local-testing.sh
@@ -0,0 +1,273 @@
+#!/bin/bash
+
+# Forgejo Actions Local Testing Setup
+# This script helps test the pricing workflows locally before pushing
+
+set -e
+
+echo "๐ง Forgejo Actions - Local Pricing Test Setup"
+echo "============================================="
+
+# Check if we're in the right directory
+if [ ! -f "manage.py" ]; then
+ echo "โ Error: This script must be run from the Django project root directory"
+ echo " Expected to find manage.py in current directory"
+ exit 1
+fi
+
+# Check if uv is installed
+if ! command -v uv &> /dev/null; then
+ echo "โ Error: uv is not installed"
+ echo " Please install uv: https://docs.astral.sh/uv/getting-started/installation/"
+ exit 1
+fi
+
+echo ""
+echo "๐ Pre-flight Checks"
+echo "--------------------"
+
+# Check if test files exist
+REQUIRED_FILES=(
+ "hub/services/tests/test_pricing.py"
+ "hub/services/tests/test_pricing_edge_cases.py"
+ "hub/services/tests/test_pricing_integration.py"
+ ".forgejo/workflows/ci.yml"
+ ".forgejo/workflows/pricing-tests.yml"
+)
+
+all_files_exist=true
+for file in "${REQUIRED_FILES[@]}"; do
+ if [ -f "$file" ]; then
+ echo "โ
$file"
+ else
+ echo "โ $file (missing)"
+ all_files_exist=false
+ fi
+done
+
+if [ "$all_files_exist" = false ]; then
+ echo ""
+ echo "โ Some required files are missing. Please ensure all test files are present."
+ exit 1
+fi
+
+echo ""
+echo "๐ Environment Setup"
+echo "--------------------"
+
+# Install dependencies
+echo "๐ฆ Installing dependencies..."
+uv sync --extra dev
+
+# Check Django configuration
+echo "๐ง Checking Django configuration..."
+export DJANGO_SETTINGS_MODULE=hub.settings
+uv run --extra dev manage.py check --verbosity=0
+
+echo ""
+echo "๐งช Running Pricing Tests Locally"
+echo "--------------------------------"
+
+# Function to run tests with timing
+run_test_group() {
+ local test_name="$1"
+ local test_path="$2"
+ local start_time=$(date +%s)
+
+ echo "๐ Running $test_name..."
+ if uv run --extra dev manage.py test "$test_path" --verbosity=1; then
+ local end_time=$(date +%s)
+ local duration=$((end_time - start_time))
+ echo "โ
$test_name completed in ${duration}s"
+ else
+ echo "โ $test_name failed"
+ return 1
+ fi
+}
+
+# Run test groups (similar to what the workflows do)
+echo "Running the same tests that Forgejo Actions will run..."
+echo ""
+
+# Basic pricing tests
+run_test_group "Basic Pricing Tests" "hub.services.tests.test_pricing" || exit 1
+echo ""
+
+# Edge case tests
+run_test_group "Edge Case Tests" "hub.services.tests.test_pricing_edge_cases" || exit 1
+echo ""
+
+# Integration tests
+run_test_group "Integration Tests" "hub.services.tests.test_pricing_integration" || exit 1
+echo ""
+
+# Django system checks (like in CI)
+echo "๐ Running Django system checks..."
+uv run --extra dev manage.py check --verbosity=2
+echo "โ
System checks passed"
+echo ""
+
+# Code quality checks (if ruff is available)
+if command -v ruff &> /dev/null || uv run ruff --version &> /dev/null 2>&1; then
+ echo "๐จ Running code quality checks..."
+
+ echo " - Checking linting..."
+ if uv run ruff check hub/services/tests/test_pricing*.py --quiet; then
+ echo "โ
Linting passed"
+ else
+ echo "โ ๏ธ Linting issues found (run 'uv run ruff check hub/services/tests/test_pricing*.py' for details)"
+ fi
+
+ echo " - Checking formatting..."
+ if uv run ruff format --check hub/services/tests/test_pricing*.py --quiet; then
+ echo "โ
Formatting is correct"
+ else
+ echo "โ ๏ธ Formatting issues found (run 'uv run ruff format hub/services/tests/test_pricing*.py' to fix)"
+ fi
+else
+ echo "โน๏ธ Skipping code quality checks (ruff not available)"
+fi
+
+echo ""
+echo "๐ Test Coverage Analysis"
+echo "-------------------------"
+
+# Generate coverage report (if coverage is available)
+if uv run --extra dev coverage --version &> /dev/null 2>&1; then
+ echo "๐ Generating test coverage report..."
+
+ # Run tests with coverage
+ uv run --extra dev coverage run --source='hub/services/models/pricing' \
+ manage.py test \
+ hub.services.tests.test_pricing \
+ hub.services.tests.test_pricing_edge_cases \
+ hub.services.tests.test_pricing_integration \
+ --verbosity=0
+
+ # Generate reports
+ echo ""
+ echo "Coverage Summary:"
+ uv run --extra dev coverage report --show-missing
+
+ # Generate HTML report
+ uv run --extra dev coverage html
+ echo ""
+ echo "๐ HTML coverage report generated: htmlcov/index.html"
+
+ # Check coverage threshold (like in CI)
+ coverage_percentage=$(uv run coverage report | grep TOTAL | awk '{print $4}' | sed 's/%//')
+ if [ -n "$coverage_percentage" ]; then
+ if (( $(echo "$coverage_percentage >= 85" | bc -l) )); then
+ echo "โ
Coverage threshold met: ${coverage_percentage}%"
+ else
+ echo "โ ๏ธ Coverage below threshold: ${coverage_percentage}% (target: 85%)"
+ fi
+ fi
+else
+ echo "โน๏ธ Skipping coverage analysis (coverage not available)"
+ echo " Install with: uv add coverage"
+fi
+
+echo ""
+echo "๐ Performance Test"
+echo "-------------------"
+
+# Quick performance test
+echo "๐ Running quick performance test..."
+cat << 'EOF' > quick_performance_test.py
+import os
+import django
+import time
+from decimal import Decimal
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'hub.settings')
+django.setup()
+
+from hub.services.models.base import Currency, Term
+from hub.services.models.providers import CloudProvider
+from hub.services.models.services import Service
+from hub.services.models.pricing import (
+ VSHNAppCatPrice, VSHNAppCatBaseFee, VSHNAppCatUnitRate,
+ ProgressiveDiscountModel, DiscountTier
+)
+
+# Create test data
+provider = CloudProvider.objects.create(
+ name="Perf Test", slug="perf-test", description="Test", website="https://test.com"
+)
+service = Service.objects.create(
+ name="Perf Service", slug="perf-service", description="Test", features="Test"
+)
+
+discount = ProgressiveDiscountModel.objects.create(name="Perf Discount", active=True)
+DiscountTier.objects.create(
+ discount_model=discount, min_units=0, max_units=10, discount_percent=Decimal('0')
+)
+DiscountTier.objects.create(
+ discount_model=discount, min_units=10, max_units=None, discount_percent=Decimal('15')
+)
+
+price_config = VSHNAppCatPrice.objects.create(
+ service=service, variable_unit='RAM', term='MTH', discount_model=discount
+)
+VSHNAppCatBaseFee.objects.create(
+ vshn_appcat_price_config=price_config, currency='CHF', amount=Decimal('50.00')
+)
+VSHNAppCatUnitRate.objects.create(
+ vshn_appcat_price_config=price_config, currency='CHF',
+ service_level='GA', amount=Decimal('4.0000')
+)
+
+# Performance test
+test_cases = [10, 50, 100, 500, 1000]
+print("Units | Time (ms) | Result (CHF)")
+print("-" * 35)
+
+for units in test_cases:
+ start_time = time.time()
+ result = price_config.calculate_final_price('CHF', 'GA', units)
+ end_time = time.time()
+
+ duration_ms = (end_time - start_time) * 1000
+ price = result['total_price'] if result else 'Error'
+ print(f"{units:5d} | {duration_ms:8.2f} | {price}")
+
+print("\nโ
Performance test completed")
+EOF
+
+uv run python quick_performance_test.py
+rm quick_performance_test.py
+
+echo ""
+echo "๐ Local Testing Complete!"
+echo "=========================="
+echo ""
+echo "๐ Summary:"
+echo " โ
All pricing tests passed"
+echo " โ
Django system checks passed"
+echo " โ
Performance test completed"
+if command -v ruff &> /dev/null || uv run ruff --version &> /dev/null 2>&1; then
+ echo " โ
Code quality checks completed"
+fi
+if uv run coverage --version &> /dev/null 2>&1; then
+ echo " โ
Coverage analysis completed"
+fi
+echo ""
+echo "๐ Your code is ready for Forgejo Actions!"
+echo ""
+echo "Next steps:"
+echo " 1. Commit your changes: git add . && git commit -m 'Your commit message'"
+echo " 2. Push to trigger workflows: git push origin your-branch"
+echo " 3. Check Actions tab in your repository for results"
+echo ""
+echo "Workflow files created:"
+echo " - .forgejo/workflows/ci.yml (main CI/CD pipeline)"
+echo " - .forgejo/workflows/pricing-tests.yml (detailed pricing tests)"
+echo " - .forgejo/workflows/pr-pricing-validation.yml (PR validation)"
+echo " - .forgejo/workflows/scheduled-pricing-tests.yml (daily tests)"
+echo ""
+
+# Clean up temporary files
+if [ -f "htmlcov/index.html" ]; then
+ echo "๐ Open htmlcov/index.html in your browser to view detailed coverage report"
+fi
diff --git a/.forgejo/workflows/test.yaml b/.forgejo/workflows/test.yaml
new file mode 100644
index 0000000..a0cb310
--- /dev/null
+++ b/.forgejo/workflows/test.yaml
@@ -0,0 +1,34 @@
+name: Django Tests
+
+on:
+ push:
+ branches: ["*"]
+ pull_request:
+
+jobs:
+ test:
+ runs-on: ubuntu-latest
+ container: catthehacker/ubuntu:act-latest
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+
+ - name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v3
+
+ - name: Build Docker image (local only)
+ uses: docker/build-push-action@v5
+ with:
+ context: .
+ push: false
+ load: true
+ tags: website:test
+
+ - name: Run Django tests in container
+ run: |
+ docker run --rm \
+ -w /app \
+ -e SECRET_KEY=dummysecretkey \
+ website:test \
+ sh -c 'uv run --extra dev manage.py migrate --noinput && uv run --extra dev manage.py test hub.services.tests --verbosity=2'
\ No newline at end of file
diff --git a/FORGEJO_ACTIONS_SETUP.md b/FORGEJO_ACTIONS_SETUP.md
new file mode 100644
index 0000000..e708ac7
--- /dev/null
+++ b/FORGEJO_ACTIONS_SETUP.md
@@ -0,0 +1,232 @@
+# Forgejo Actions CI/CD Setup for Pricing Tests
+
+## Overview
+
+I've created a comprehensive Forgejo Actions CI/CD setup that automatically runs your pricing tests whenever code changes are made. This ensures that your pricing calculations remain accurate and prevents regressions from being introduced into production.
+
+## Files Created
+
+### Workflow Files
+1. **`.forgejo/workflows/ci.yml`** - Main CI/CD pipeline (208 lines)
+2. **`.forgejo/workflows/pricing-tests.yml`** - Dedicated pricing tests (297 lines)
+3. **`.forgejo/workflows/pr-pricing-validation.yml`** - Pull request validation (234 lines)
+4. **`.forgejo/workflows/scheduled-pricing-tests.yml`** - Daily scheduled tests (359 lines)
+
+### Documentation and Utilities
+5. **`.forgejo/workflows/README.md`** - Comprehensive workflow documentation
+6. **`.forgejo/setup-local-testing.sh`** - Local testing setup script
+
+## Workflow Features
+
+### ๐ Main CI/CD Pipeline (`ci.yml`)
+**Triggers**: Push to main/develop, Pull Requests
+
+**Jobs**:
+- **Test Job**: Runs all Django tests including pricing tests with PostgreSQL
+- **Lint Job**: Code quality checks with ruff
+- **Security Job**: Security scanning with safety and bandit
+- **Build Job**: Docker image building (only on main/develop)
+- **Deploy Job**: Production deployment to OpenShift (only on main)
+
+**Key Features**:
+- Separates pricing tests into distinct groups for visibility
+- Uses PostgreSQL service for realistic database testing
+- Only builds and deploys if all tests pass
+- Includes comprehensive Django system checks
+
+### ๐งฎ Pricing-Specific Tests (`pricing-tests.yml`)
+**Triggers**: Changes to pricing-related files
+- `hub/services/models/pricing.py`
+- `hub/services/tests/test_pricing*.py`
+- `hub/services/forms.py`
+- `hub/services/views/**`
+- `hub/services/templates/**`
+
+**Features**:
+- **Matrix Testing**: Python 3.12/3.13 ร Django 5.0/5.1
+- **Performance Testing**: Large dataset calculations and stress tests
+- **Coverage Reporting**: Test coverage analysis and HTML reports
+- **Sample Validation**: Real pricing scenarios validation
+- **Documentation Checks**: Ensures tests are properly documented
+
+### ๐ Pull Request Validation (`pr-pricing-validation.yml`)
+**Triggers**: Pull requests affecting pricing code
+
+**Features**:
+- **Migration Detection**: Checks if pricing model changes need migrations
+- **Coverage Threshold**: Enforces 85% test coverage minimum
+- **Critical Method Analysis**: Detects changes to important pricing methods
+- **Backward Compatibility**: Validates that existing APIs still work
+- **Test Addition Validation**: Ensures new features have corresponding tests
+- **PR Summary Generation**: Creates detailed summaries for reviewers
+
+### ๐
Scheduled Testing (`scheduled-pricing-tests.yml`)
+**Triggers**: Daily at 6 AM UTC, Manual dispatch
+
+**Features**:
+- **Multi-Database Testing**: SQLite and PostgreSQL matrix
+- **Stress Testing**: Concurrent calculations and large datasets
+- **Data Integrity Checks**: Validates pricing data consistency
+- **Daily Reports**: System health and statistics
+- **Automatic Issue Creation**: Creates GitHub issues on failures
+- **Performance Monitoring**: Tracks calculation performance over time
+
+## Security and Environment
+
+### Required Secrets
+Set these in your Forgejo repository settings:
+```yaml
+REGISTRY_USERNAME # Container registry username
+REGISTRY_PASSWORD # Container registry password
+OPENSHIFT_SERVER # OpenShift server URL
+OPENSHIFT_TOKEN # OpenShift authentication token
+```
+
+### Environment Variables
+```yaml
+REGISTRY: registry.vshn.net
+NAMESPACE: vshn-servalafe-prod
+DATABASE_URL: # Set automatically by workflows
+DJANGO_SETTINGS_MODULE: hub.settings
+```
+
+## Test Coverage
+
+The workflows provide comprehensive testing of:
+
+### โ
Core Pricing Functionality
+- Progressive discount calculations with multiple tiers
+- Final price calculations including base fees, unit rates, and addons
+- Multi-currency support (CHF, EUR, USD)
+- Service level pricing differences (Best Effort vs Guaranteed)
+- Addon pricing (base fee and unit rate types)
+
+### โ
Edge Cases and Error Handling
+- Zero and negative value handling
+- Very large number calculations
+- Missing price data scenarios
+- Decimal precision edge cases
+- Database constraint validation
+- Inactive discount model behavior
+
+### โ
Integration Scenarios
+- Complete service setups with all components
+- Real-world pricing scenarios (e.g., PostgreSQL with 16GB RAM)
+- External price comparisons with competitors
+- Cross-model relationship validation
+
+### โ
Performance and Stress Testing
+- Large dataset calculations (up to 5000 units)
+- Concurrent price calculations (50 simultaneous)
+- Complex discount models with multiple tiers
+- Performance regression detection
+
+## Usage Examples
+
+### Automatic Triggers
+```bash
+# Trigger full CI/CD pipeline
+git push origin main
+
+# Trigger pricing-specific tests
+git push origin feature/pricing-improvements
+
+# Trigger PR validation
+git checkout -b feature/new-pricing
+# Make changes to pricing files
+git push origin feature/new-pricing
+# Create pull request
+```
+
+### Manual Triggers
+- Use Forgejo Actions UI to manually run workflows
+- Scheduled tests can be run with different scopes:
+ - `all` - All pricing tests
+ - `pricing-only` - Basic pricing tests only
+ - `integration-only` - Integration tests only
+
+### Local Testing
+```bash
+# Run local validation before pushing
+./.forgejo/setup-local-testing.sh
+```
+
+## Monitoring and Alerts
+
+### Test Results
+- **Real-time feedback**: See test results in PR checks
+- **Detailed logs**: Comprehensive logging with grouped output
+- **Coverage reports**: HTML coverage reports as downloadable artifacts
+- **Performance metrics**: Timing data for all calculations
+
+### Failure Handling
+- **PR blocking**: Failed tests prevent merging
+- **Issue creation**: Scheduled test failures automatically create GitHub issues
+- **Notification**: Team notifications on critical failures
+- **Artifact preservation**: Test results saved for 30 days
+
+## Integration with Existing CI/CD
+
+### Relationship with GitLab CI
+Your existing `.gitlab-ci.yml` focuses on:
+- Docker image building
+- Production deployment
+- Simple build-test-deploy workflow
+
+The new Forgejo Actions provide:
+- **Comprehensive testing** with multiple scenarios
+- **Detailed validation** of pricing-specific changes
+- **Matrix testing** across Python/Django versions
+- **Automated quality gates** with coverage thresholds
+- **Continuous monitoring** with scheduled tests
+
+Both systems can coexist and complement each other.
+
+## Best Practices
+
+### For Developers
+1. **Run tests locally** using the setup script before pushing
+2. **Add tests** for any new pricing functionality
+3. **Check coverage** to ensure adequate test coverage
+4. **Review PR summaries** for detailed change analysis
+
+### For Maintainers
+1. **Monitor scheduled tests** for early issue detection
+2. **Review coverage trends** to maintain quality
+3. **Update thresholds** as the codebase evolves
+4. **Investigate failures** promptly to prevent regressions
+
+## Benefits
+
+### ๐ก๏ธ Regression Prevention
+- Comprehensive test suite catches pricing calculation errors
+- Matrix testing ensures compatibility across versions
+- Backward compatibility checks prevent API breakage
+
+### ๐ Quality Assurance
+- 85% minimum test coverage enforced
+- Code quality checks with ruff
+- Security scanning with safety and bandit
+- Documentation completeness validation
+
+### ๐ Continuous Monitoring
+- Daily health checks catch issues early
+- Performance regression detection
+- Data integrity validation
+- Automatic issue creation for failures
+
+### ๐ Developer Experience
+- Fast feedback on pricing changes
+- Detailed PR summaries for reviewers
+- Local testing script for pre-push validation
+- Clear documentation and troubleshooting guides
+
+## Next Steps
+
+1. **Set up secrets** in your Forgejo repository settings
+2. **Test locally** using `./.forgejo/setup-local-testing.sh`
+3. **Push changes** to trigger the workflows
+4. **Monitor results** in the Actions tab
+5. **Customize** workflows based on your specific needs
+
+The system is designed to be robust, comprehensive, and maintainable, ensuring that your pricing calculations remain accurate as your codebase evolves.
diff --git a/PRICING_TESTS_SUMMARY.md b/PRICING_TESTS_SUMMARY.md
new file mode 100644
index 0000000..8dc6bb1
--- /dev/null
+++ b/PRICING_TESTS_SUMMARY.md
@@ -0,0 +1,182 @@
+# Pricing Model Test Suite Summary
+
+## Overview
+I've created a comprehensive test suite for the Django pricing models in the Servala project. The test suite ensures that all price calculations work correctly and provides protection against regressions when making future changes to the pricing logic.
+
+## Test Files Created
+
+### 1. `hub/services/tests/test_pricing.py` (639 lines)
+**Core pricing model tests with 29 test methods:**
+
+#### ComputePlanTestCase (6 tests)
+- String representation
+- Price creation and retrieval
+- Non-existent price handling
+- Unique constraint validation
+
+#### StoragePlanTestCase (4 tests)
+- String representation
+- Price creation and retrieval
+- Non-existent price handling
+
+#### ProgressiveDiscountModelTestCase (6 tests)
+- String representation
+- Discount calculations for single and multiple tiers
+- Discount breakdown analysis
+- Tier representation
+
+#### VSHNAppCatPriceTestCase (8 tests)
+- String representation
+- Base fee and unit rate management
+- Final price calculations with and without discounts
+- Error handling for negative values and missing data
+- Price calculations without discount models
+
+#### VSHNAppCatAddonTestCase (5 tests)
+- Base fee and unit rate addon types
+- Error handling for missing service levels
+- Final price calculations with mandatory and optional addons
+- Addon string representations
+
+### 2. `hub/services/tests/test_pricing_edge_cases.py` (8 tests)
+**Edge cases and error conditions:**
+- Overlapping discount tier handling
+- Zero unit calculations
+- Very large number handling
+- Inactive discount model behavior
+- Missing addon price data
+- Validity date ranges
+- Decimal precision edge cases
+- Unique constraint enforcement
+- Addon ordering and filtering
+
+### 3. `hub/services/tests/test_pricing_integration.py` (8 tests)
+**Integration tests for complex scenarios:**
+- Complete pricing setup across all models
+- Multi-currency pricing (CHF, EUR, USD)
+- Complex AppCat services with all features
+- External price comparisons
+- Service availability based on pricing
+- Model relationship verification
+- Comprehensive real-world scenarios
+
+### 4. `hub/services/tests/test_utils.py`
+**Test utilities and helpers:**
+- `PricingTestMixin` for common setup
+- Helper functions for expected price calculations
+- Test data factory methods
+
+### 5. `hub/services/tests/README.md`
+**Comprehensive documentation covering:**
+- Test structure and organization
+- How to run tests
+- Test coverage details
+- Key test scenarios
+- Best practices for adding new tests
+- Maintenance guidelines
+
+### 6. `run_pricing_tests.sh`
+**Test runner script for easy execution**
+
+## Key Features Tested
+
+### Price Calculation Logic
+โ
**Progressive Discount Models**: Multi-tier discount calculations with proper tier handling
+โ
**Final Price Calculations**: Base fees + unit rates + addons with discounts
+โ
**Multi-Currency Support**: CHF, EUR, USD pricing
+โ
**Addon Pricing**: Both base fee and unit rate addon types
+โ
**Service Level Pricing**: Different rates for Best Effort vs Guaranteed service levels
+
+### Business Logic
+โ
**Mandatory vs Optional Addons**: Proper inclusion in price calculations
+โ
**Discount Model Activation**: Active/inactive discount model handling
+โ
**Public Display Settings**: Service availability based on pricing configuration
+โ
**External Price Comparisons**: Integration with competitor pricing data
+
+### Error Handling
+โ
**Negative Values**: Proper error handling for invalid inputs
+โ
**Missing Data**: Graceful handling of missing price configurations
+โ
**Decimal Precision**: Accurate monetary calculations
+โ
**Constraint Validation**: Database constraint enforcement
+
+### Edge Cases
+โ
**Zero Units**: Calculations with zero quantity
+โ
**Large Numbers**: Performance with high unit counts
+โ
**Boundary Conditions**: Discount tier boundaries
+โ
**Data Integrity**: Relationship and constraint validation
+
+## Test Coverage Statistics
+- **Total Test Methods**: 45 test methods across all test files
+- **Models Covered**: All pricing-related models (ComputePlan, StoragePlan, VSHNAppCatPrice, Progressive Discounts, Addons, etc.)
+- **Scenarios Covered**: Basic CRUD, complex calculations, error conditions, integration scenarios
+- **Edge Cases**: Comprehensive coverage of boundary conditions and error states
+
+## Real-World Test Scenarios
+
+### PostgreSQL Service Pricing
+The integration tests include a complete PostgreSQL service setup with:
+- 16 GiB RAM requirement with progressive discounts
+- Mandatory automated backup addon
+- Optional monitoring and SSL certificate addons
+- Expected total: CHF 186.20/month
+
+### Multi-Tier Discount Example
+For 60 units with progressive discount:
+- First 10 units: 100% of base rate (no discount)
+- Next 40 units: 90% of base rate (10% discount)
+- Next 10 units: 80% of base rate (20% discount)
+
+### External Price Comparison
+Tests include AWS RDS comparison scenarios to verify competitive pricing.
+
+## Usage Instructions
+
+### Run All Tests
+```bash
+cd /home/tobru/src/servala/website
+uv run --extra dev manage.py test hub.services.tests --verbosity=2
+```
+
+### Run Specific Test Categories
+```bash
+# Basic pricing tests
+uv run --extra dev manage.py test hub.services.tests.test_pricing
+
+# Edge case tests
+uv run --extra dev manage.py test hub.services.tests.test_pricing_edge_cases
+
+# Integration tests
+uv run --extra dev manage.py test hub.services.tests.test_pricing_integration
+```
+
+### Use Test Runner Script
+```bash
+./run_pricing_tests.sh
+```
+
+## Benefits
+
+### Regression Protection
+The comprehensive test suite protects against breaking changes when:
+- Modifying discount calculation algorithms
+- Adding new pricing features
+- Refactoring pricing models
+- Updating business logic
+
+### Documentation
+Tests serve as living documentation of how the pricing system should work, including:
+- Expected calculation logic
+- Error handling behavior
+- Integration patterns
+- Business rules
+
+### Confidence in Changes
+Developers can make changes to the pricing system with confidence, knowing that the test suite will catch any regressions or unexpected behavior changes.
+
+## Maintenance
+- Tests are organized into logical groups for easy maintenance
+- Helper utilities reduce code duplication
+- Comprehensive documentation guides future development
+- Test runner script simplifies execution
+
+The test suite follows Django best practices and provides comprehensive coverage of the pricing models and calculations, ensuring the reliability and correctness of the pricing system.
diff --git a/hub/services/admin/pricing.py b/hub/services/admin/pricing.py
index 6da4852..61f4836 100644
--- a/hub/services/admin/pricing.py
+++ b/hub/services/admin/pricing.py
@@ -25,6 +25,9 @@ from ..models import (
VSHNAppCatBaseFee,
VSHNAppCatPrice,
VSHNAppCatUnitRate,
+ VSHNAppCatAddon,
+ VSHNAppCatAddonBaseFee,
+ VSHNAppCatAddonUnitRate,
ProgressiveDiscountModel,
DiscountTier,
ExternalPricePlans,
@@ -297,6 +300,15 @@ class VSHNAppCatUnitRateInline(admin.TabularInline):
fields = ("currency", "service_level", "amount")
+class VSHNAppCatAddonInline(admin.TabularInline):
+ """Inline admin for VSHNAppCatAddon model within the VSHNAppCatPrice admin"""
+
+ model = VSHNAppCatAddon
+ extra = 1
+ fields = ("name", "addon_type", "mandatory", "active")
+ show_change_link = True
+
+
class DiscountTierInline(admin.TabularInline):
"""Inline admin for DiscountTier model"""
@@ -330,7 +342,7 @@ class VSHNAppCatPriceAdmin(admin.ModelAdmin):
)
list_filter = ("variable_unit", "service", "discount_model")
search_fields = ("service__name",)
- inlines = [VSHNAppCatBaseFeeInline, VSHNAppCatUnitRateInline]
+ inlines = [VSHNAppCatBaseFeeInline, VSHNAppCatUnitRateInline, VSHNAppCatAddonInline]
def admin_display_base_fees(self, obj):
"""Display base fees in admin list view"""
@@ -542,3 +554,84 @@ class ExternalPricePlansAdmin(ImportExportModelAdmin):
return f"{count} plan{'s' if count != 1 else ''}"
display_compare_to_count.short_description = "Compare To"
+
+
+class VSHNAppCatAddonBaseFeeInline(admin.TabularInline):
+ """Inline admin for VSHNAppCatAddonBaseFee model"""
+
+ model = VSHNAppCatAddonBaseFee
+ extra = 1
+ fields = ("currency", "amount")
+
+
+class VSHNAppCatAddonUnitRateInline(admin.TabularInline):
+ """Inline admin for VSHNAppCatAddonUnitRate model"""
+
+ model = VSHNAppCatAddonUnitRate
+ extra = 1
+ fields = ("currency", "service_level", "amount")
+
+
+class VSHNAppCatAddonInline(admin.TabularInline):
+ """Inline admin for VSHNAppCatAddon model within the VSHNAppCatPrice admin"""
+
+ model = VSHNAppCatAddon
+ extra = 1
+ fields = ("name", "addon_type", "mandatory", "active", "order")
+ show_change_link = True
+
+
+@admin.register(VSHNAppCatAddon)
+class VSHNAppCatAddonAdmin(admin.ModelAdmin):
+ """Admin configuration for VSHNAppCatAddon model"""
+
+ list_display = (
+ "name",
+ "vshn_appcat_price_config",
+ "addon_type",
+ "mandatory",
+ "active",
+ "display_pricing",
+ "order",
+ )
+ list_filter = (
+ "addon_type",
+ "mandatory",
+ "active",
+ "vshn_appcat_price_config__service",
+ )
+ search_fields = (
+ "name",
+ "description",
+ "commercial_description",
+ "vshn_appcat_price_config__service__name",
+ )
+ ordering = ("vshn_appcat_price_config__service__name", "order", "name")
+
+ # Different inlines based on addon type
+ inlines = [VSHNAppCatAddonBaseFeeInline, VSHNAppCatAddonUnitRateInline]
+
+ def display_pricing(self, obj):
+ """Display pricing information based on addon type"""
+ if obj.addon_type == "BF": # Base Fee
+ fees = obj.base_fees.all()
+ if not fees:
+ return "No base fees set"
+ return format_html(
+ "
".join([f"{fee.amount} {fee.currency}" for fee in fees])
+ )
+ elif obj.addon_type == "UR": # Unit Rate
+ rates = obj.unit_rates.all()
+ if not rates:
+ return "No unit rates set"
+ return format_html(
+ "
".join(
+ [
+ f"{rate.amount} {rate.currency} ({rate.get_service_level_display()})"
+ for rate in rates
+ ]
+ )
+ )
+ return "Unknown addon type"
+
+ display_pricing.short_description = "Pricing"
diff --git a/hub/services/migrations/0035_alter_article_image_vshnappcataddon_and_more.py b/hub/services/migrations/0035_alter_article_image_vshnappcataddon_and_more.py
new file mode 100644
index 0000000..a020a94
--- /dev/null
+++ b/hub/services/migrations/0035_alter_article_image_vshnappcataddon_and_more.py
@@ -0,0 +1,195 @@
+# Generated by Django 5.2 on 2025-06-19 13:53
+
+import django.db.models.deletion
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ("services", "0034_article"),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name="article",
+ name="image",
+ field=models.ImageField(
+ help_text="Title picture for the article", upload_to="article_images/"
+ ),
+ ),
+ migrations.CreateModel(
+ name="VSHNAppCatAddon",
+ fields=[
+ (
+ "id",
+ models.BigAutoField(
+ auto_created=True,
+ primary_key=True,
+ serialize=False,
+ verbose_name="ID",
+ ),
+ ),
+ (
+ "name",
+ models.CharField(help_text="Name of the addon", max_length=100),
+ ),
+ (
+ "description",
+ models.TextField(
+ blank=True, help_text="Technical description of the addon"
+ ),
+ ),
+ (
+ "commercial_description",
+ models.TextField(
+ blank=True,
+ help_text="Commercial description displayed in the frontend",
+ ),
+ ),
+ (
+ "addon_type",
+ models.CharField(
+ choices=[("BF", "Base Fee"), ("UR", "Unit Rate")],
+ help_text="Type of addon pricing (fixed fee or per-unit)",
+ max_length=2,
+ ),
+ ),
+ (
+ "mandatory",
+ models.BooleanField(
+ default=False, help_text="Is this addon mandatory?"
+ ),
+ ),
+ (
+ "active",
+ models.BooleanField(
+ default=True,
+ help_text="Is this addon active and available for selection?",
+ ),
+ ),
+ (
+ "order",
+ models.IntegerField(
+ default=0, help_text="Display order in the frontend"
+ ),
+ ),
+ ("valid_from", models.DateTimeField(blank=True, null=True)),
+ ("valid_to", models.DateTimeField(blank=True, null=True)),
+ (
+ "vshn_appcat_price_config",
+ models.ForeignKey(
+ on_delete=django.db.models.deletion.CASCADE,
+ related_name="addons",
+ to="services.vshnappcatprice",
+ ),
+ ),
+ ],
+ options={
+ "verbose_name": "Service Addon",
+ "ordering": ["order", "name"],
+ },
+ ),
+ migrations.CreateModel(
+ name="VSHNAppCatAddonBaseFee",
+ fields=[
+ (
+ "id",
+ models.BigAutoField(
+ auto_created=True,
+ primary_key=True,
+ serialize=False,
+ verbose_name="ID",
+ ),
+ ),
+ (
+ "currency",
+ models.CharField(
+ choices=[
+ ("CHF", "Swiss Franc"),
+ ("EUR", "Euro"),
+ ("USD", "US Dollar"),
+ ],
+ max_length=3,
+ ),
+ ),
+ (
+ "amount",
+ models.DecimalField(
+ decimal_places=2,
+ help_text="Base fee in the specified currency, excl. VAT",
+ max_digits=10,
+ ),
+ ),
+ (
+ "addon",
+ models.ForeignKey(
+ on_delete=django.db.models.deletion.CASCADE,
+ related_name="base_fees",
+ to="services.vshnappcataddon",
+ ),
+ ),
+ ],
+ options={
+ "verbose_name": "Addon Base Fee",
+ "ordering": ["currency"],
+ "unique_together": {("addon", "currency")},
+ },
+ ),
+ migrations.CreateModel(
+ name="VSHNAppCatAddonUnitRate",
+ fields=[
+ (
+ "id",
+ models.BigAutoField(
+ auto_created=True,
+ primary_key=True,
+ serialize=False,
+ verbose_name="ID",
+ ),
+ ),
+ (
+ "currency",
+ models.CharField(
+ choices=[
+ ("CHF", "Swiss Franc"),
+ ("EUR", "Euro"),
+ ("USD", "US Dollar"),
+ ],
+ max_length=3,
+ ),
+ ),
+ (
+ "service_level",
+ models.CharField(
+ choices=[
+ ("BE", "Best Effort"),
+ ("GA", "Guaranteed Availability"),
+ ],
+ max_length=2,
+ ),
+ ),
+ (
+ "amount",
+ models.DecimalField(
+ decimal_places=4,
+ help_text="Price per unit in the specified currency and service level, excl. VAT",
+ max_digits=10,
+ ),
+ ),
+ (
+ "addon",
+ models.ForeignKey(
+ on_delete=django.db.models.deletion.CASCADE,
+ related_name="unit_rates",
+ to="services.vshnappcataddon",
+ ),
+ ),
+ ],
+ options={
+ "verbose_name": "Addon Unit Rate",
+ "ordering": ["currency", "service_level"],
+ "unique_together": {("addon", "currency", "service_level")},
+ },
+ ),
+ ]
diff --git a/hub/services/models/pricing.py b/hub/services/models/pricing.py
index 42b2778..0d22ef2 100644
--- a/hub/services/models/pricing.py
+++ b/hub/services/models/pricing.py
@@ -1,4 +1,5 @@
from django.db import models
+from django.db.models import Q
from .base import Currency, Term, Unit
from .providers import CloudProvider
@@ -339,7 +340,11 @@ class VSHNAppCatPrice(models.Model):
return None
def calculate_final_price(
- self, currency_code: str, service_level: str, number_of_units: int
+ self,
+ currency_code: str,
+ service_level: str,
+ number_of_units: int,
+ addon_ids=None,
):
base_fee = self.get_base_fee(currency_code)
unit_rate = self.get_unit_rate(currency_code, service_level)
@@ -359,7 +364,49 @@ class VSHNAppCatPrice(models.Model):
else:
total_price = base_fee + (unit_rate * number_of_units)
- return total_price
+ # Add prices for mandatory addons and selected addons
+ addon_total = 0
+ addon_breakdown = []
+
+ # Query all active addons related to this price config
+ addons_query = self.addons.filter(active=True)
+
+ # Include mandatory addons and explicitly selected addons
+ if addon_ids:
+ addons = addons_query.filter(Q(mandatory=True) | Q(id__in=addon_ids))
+ else:
+ addons = addons_query.filter(mandatory=True)
+
+ for addon in addons:
+ addon_price = 0
+ if addon.addon_type == VSHNAppCatAddon.AddonType.BASE_FEE:
+ addon_price_value = addon.get_price(currency_code)
+ if addon_price_value:
+ addon_price = addon_price_value
+ elif addon.addon_type == VSHNAppCatAddon.AddonType.UNIT_RATE:
+ addon_price_value = addon.get_price(currency_code, service_level)
+ if addon_price_value:
+ addon_price = addon_price_value * number_of_units
+
+ addon_total += addon_price
+ addon_breakdown.append(
+ {
+ "id": addon.id,
+ "name": addon.name,
+ "description": addon.description,
+ "commercial_description": addon.commercial_description,
+ "mandatory": addon.mandatory,
+ "price": addon_price,
+ }
+ )
+
+ total_price += addon_total
+
+ return {
+ "total_price": total_price,
+ "addon_total": addon_total,
+ "addon_breakdown": addon_breakdown,
+ }
class VSHNAppCatUnitRate(models.Model):
@@ -389,6 +436,118 @@ class VSHNAppCatUnitRate(models.Model):
return f"{self.vshn_appcat_price_config.service.name} - {self.get_service_level_display()} Unit Rate - {self.amount} {self.currency}"
+class VSHNAppCatAddon(models.Model):
+ """
+ Addon pricing model for VSHNAppCatPrice. Can be added to a service price configuration
+ to provide additional features or resources with their own pricing.
+ """
+
+ class AddonType(models.TextChoices):
+ BASE_FEE = "BF", "Base Fee" # Fixed amount regardless of units
+ UNIT_RATE = "UR", "Unit Rate" # Price per unit
+
+ vshn_appcat_price_config = models.ForeignKey(
+ VSHNAppCatPrice, on_delete=models.CASCADE, related_name="addons"
+ )
+ name = models.CharField(max_length=100, help_text="Name of the addon")
+ description = models.TextField(
+ blank=True, help_text="Technical description of the addon"
+ )
+ commercial_description = models.TextField(
+ blank=True, help_text="Commercial description displayed in the frontend"
+ )
+ addon_type = models.CharField(
+ max_length=2,
+ choices=AddonType.choices,
+ help_text="Type of addon pricing (fixed fee or per-unit)",
+ )
+ mandatory = models.BooleanField(default=False, help_text="Is this addon mandatory?")
+ active = models.BooleanField(
+ default=True, help_text="Is this addon active and available for selection?"
+ )
+ order = models.IntegerField(default=0, help_text="Display order in the frontend")
+ valid_from = models.DateTimeField(blank=True, null=True)
+ valid_to = models.DateTimeField(blank=True, null=True)
+
+ class Meta:
+ verbose_name = "Service Addon"
+ ordering = ["order", "name"]
+
+ def __str__(self):
+ return f"{self.vshn_appcat_price_config.service.name} - {self.name}"
+
+ def get_price(self, currency_code: str, service_level: str = None):
+ """Get the price for this addon in the specified currency and service level"""
+ try:
+ if self.addon_type == self.AddonType.BASE_FEE:
+ return self.base_fees.get(currency=currency_code).amount
+ elif self.addon_type == self.AddonType.UNIT_RATE:
+ if not service_level:
+ raise ValueError("Service level is required for unit rate addons")
+ return self.unit_rates.get(
+ currency=currency_code, service_level=service_level
+ ).amount
+ except (
+ VSHNAppCatAddonBaseFee.DoesNotExist,
+ VSHNAppCatAddonUnitRate.DoesNotExist,
+ ):
+ return None
+
+
+class VSHNAppCatAddonBaseFee(models.Model):
+ """Base fee for an addon (fixed amount regardless of units)"""
+
+ addon = models.ForeignKey(
+ VSHNAppCatAddon, on_delete=models.CASCADE, related_name="base_fees"
+ )
+ currency = models.CharField(
+ max_length=3,
+ choices=Currency.choices,
+ )
+ amount = models.DecimalField(
+ max_digits=10,
+ decimal_places=2,
+ help_text="Base fee in the specified currency, excl. VAT",
+ )
+
+ class Meta:
+ verbose_name = "Addon Base Fee"
+ unique_together = ("addon", "currency")
+ ordering = ["currency"]
+
+ def __str__(self):
+ return f"{self.addon.name} Base Fee - {self.amount} {self.currency}"
+
+
+class VSHNAppCatAddonUnitRate(models.Model):
+ """Unit rate for an addon (price per unit)"""
+
+ addon = models.ForeignKey(
+ VSHNAppCatAddon, on_delete=models.CASCADE, related_name="unit_rates"
+ )
+ currency = models.CharField(
+ max_length=3,
+ choices=Currency.choices,
+ )
+ service_level = models.CharField(
+ max_length=2,
+ choices=VSHNAppCatPrice.ServiceLevel.choices,
+ )
+ amount = models.DecimalField(
+ max_digits=10,
+ decimal_places=4,
+ help_text="Price per unit in the specified currency and service level, excl. VAT",
+ )
+
+ class Meta:
+ verbose_name = "Addon Unit Rate"
+ unique_together = ("addon", "currency", "service_level")
+ ordering = ["currency", "service_level"]
+
+ def __str__(self):
+ return f"{self.addon.name} - {self.get_service_level_display()} Unit Rate - {self.amount} {self.currency}"
+
+
class ExternalPricePlans(models.Model):
plan_name = models.CharField()
description = models.CharField(max_length=200, blank=True, null=True)
diff --git a/hub/services/static/js/price-calculator.js b/hub/services/static/js/price-calculator.js
index a65a9f2..54b2af9 100644
--- a/hub/services/static/js/price-calculator.js
+++ b/hub/services/static/js/price-calculator.js
@@ -10,6 +10,7 @@ class PriceCalculator {
this.currentOffering = null;
this.selectedConfiguration = null;
this.replicaInfo = null;
+ this.addonsData = null;
this.init();
}
@@ -50,6 +51,10 @@ class PriceCalculator {
this.serviceLevelInputs = document.querySelectorAll('input[name="serviceLevel"]');
this.planSelect = document.getElementById('planSelect');
+ // Addon elements
+ this.addonsContainer = document.getElementById('addonsContainer');
+ this.addonPricingContainer = document.getElementById('addonPricingContainer');
+
// Result display elements
this.planMatchStatus = document.getElementById('planMatchStatus');
this.selectedPlanDetails = document.getElementById('selectedPlanDetails');
@@ -156,25 +161,36 @@ class PriceCalculator {
storage: config.storage,
instances: config.instances,
serviceLevel: config.serviceLevel,
- totalPrice: config.totalPrice
+ totalPrice: config.totalPrice,
+ addons: config.addons || []
});
}
}
// Generate human-readable configuration message
generateConfigurationMessage(config) {
- return `I would like to order the following configuration:
+ let message = `I would like to order the following configuration:
Plan: ${config.planName} (${config.planGroup})
vCPUs: ${config.vcpus}
Memory: ${config.memory} GB
Storage: ${config.storage} GB
Instances: ${config.instances}
-Service Level: ${config.serviceLevel}
+Service Level: ${config.serviceLevel}`;
-Total Monthly Price: CHF ${config.totalPrice}
+ // Add addons to the message if any are selected
+ if (config.addons && config.addons.length > 0) {
+ message += '\n\nSelected Add-ons:';
+ config.addons.forEach(addon => {
+ message += `\n- ${addon.name}: CHF ${addon.price}`;
+ });
+ }
+
+ message += `\n\nTotal Monthly Price: CHF ${config.totalPrice}
Please contact me with next steps for ordering this configuration.`;
+
+ return message;
}
// Load pricing data from API endpoint
@@ -185,13 +201,18 @@ Please contact me with next steps for ordering this configuration.`;
throw new Error('Failed to load pricing data');
}
- this.pricingData = await response.json();
+ const data = await response.json();
+ this.pricingData = data.pricing || data;
+
+ // Extract addons data from the plans - addons are embedded in each plan
+ this.extractAddonsData();
// Extract storage price from the first available plan
this.extractStoragePrice();
this.setupEventListeners();
this.populatePlanDropdown();
+ this.updateAddons();
this.updatePricing();
} catch (error) {
console.error('Error loading pricing data:', error);
@@ -220,6 +241,50 @@ Please contact me with next steps for ordering this configuration.`;
}
}
+ // Extract addons data from pricing plans
+ extractAddonsData() {
+ if (!this.pricingData) return;
+
+ this.addonsData = {};
+
+ // Extract addons from the first available plan for each service level
+ Object.keys(this.pricingData).forEach(groupName => {
+ const group = this.pricingData[groupName];
+ Object.keys(group).forEach(serviceLevel => {
+ const plans = group[serviceLevel];
+ if (plans.length > 0) {
+ // Use the first plan's addon data for this service level
+ const plan = plans[0];
+ const allAddons = [];
+
+ // Add mandatory addons
+ if (plan.mandatory_addons) {
+ plan.mandatory_addons.forEach(addon => {
+ allAddons.push({
+ ...addon,
+ is_mandatory: true,
+ addon_type: addon.addon_type === "Base Fee" ? "BASE_FEE" : "UNIT_RATE"
+ });
+ });
+ }
+
+ // Add optional addons
+ if (plan.optional_addons) {
+ plan.optional_addons.forEach(addon => {
+ allAddons.push({
+ ...addon,
+ is_mandatory: false,
+ addon_type: addon.addon_type === "Base Fee" ? "BASE_FEE" : "UNIT_RATE"
+ });
+ });
+ }
+
+ this.addonsData[serviceLevel] = allAddons;
+ }
+ });
+ });
+ }
+
// Setup event listeners for calculator controls
setupEventListeners() {
if (!this.cpuRange || !this.memoryRange || !this.storageRange || !this.instancesRange) return;
@@ -253,6 +318,7 @@ Please contact me with next steps for ordering this configuration.`;
input.addEventListener('change', () => {
this.updateInstancesSlider();
this.populatePlanDropdown();
+ this.updateAddons();
this.updatePricing();
});
});
@@ -269,8 +335,22 @@ Please contact me with next steps for ordering this configuration.`;
this.cpuValue.textContent = selectedPlan.vcpus;
this.memoryValue.textContent = selectedPlan.ram;
+ // Fade out CPU and Memory sliders since plan is manually selected
+ this.fadeOutSliders(['cpu', 'memory']);
+
+ // Update addons for the new configuration
+ this.updateAddons();
+ // Update pricing with the selected plan
this.updatePricingWithPlan(selectedPlan);
} else {
+ // Auto-select mode - reset sliders to default values
+ this.resetSlidersToDefaults();
+
+ // Auto-select mode - fade sliders back in
+ this.fadeInSliders(['cpu', 'memory']);
+
+ // Auto-select mode - update addons and recalculate
+ this.updateAddons();
this.updatePricing();
}
});
@@ -356,6 +436,7 @@ Please contact me with next steps for ordering this configuration.`;
input.addEventListener('change', () => {
this.updateInstancesSlider();
this.populatePlanDropdown();
+ this.updateAddons();
this.updatePricing();
});
@@ -445,6 +526,129 @@ Please contact me with next steps for ordering this configuration.`;
});
}
+ // Update addons based on current configuration
+ updateAddons() {
+ if (!this.addonsContainer || !this.addonsData) {
+ // Hide addons section if no container or data
+ const addonsSection = document.getElementById('addonsSection');
+ if (addonsSection) addonsSection.style.display = 'none';
+ return;
+ }
+
+ const serviceLevel = document.querySelector('input[name="serviceLevel"]:checked')?.value;
+ if (!serviceLevel || !this.addonsData[serviceLevel]) {
+ // Hide addons section if no service level or no addons for this level
+ const addonsSection = document.getElementById('addonsSection');
+ if (addonsSection) addonsSection.style.display = 'none';
+ return;
+ }
+
+ const addons = this.addonsData[serviceLevel];
+
+ // Clear existing addons
+ this.addonsContainer.innerHTML = '';
+
+ // Show or hide addons section based on availability
+ const addonsSection = document.getElementById('addonsSection');
+ if (addons && addons.length > 0) {
+ if (addonsSection) addonsSection.style.display = 'block';
+ } else {
+ if (addonsSection) addonsSection.style.display = 'none';
+ return;
+ }
+
+ // Add each addon
+ addons.forEach(addon => {
+ const addonElement = document.createElement('div');
+ addonElement.className = `addon-item mb-2 p-2 border rounded ${addon.is_mandatory ? 'bg-light' : ''}`;
+
+ addonElement.innerHTML = `
+
+ Compute Plan Price +
+ SLA Base +
+ (Units ร SLA Per Unit) +
+ Mandatory Add-ons =
+ Final Price
+
+ + + This transparent pricing model ensures you understand exactly what you're paying for. + The table below breaks down each component for every service variant we offer. + +
+Compute Plan | -Cloud Provider | -vCPUs | -RAM (GB) | -Term | -Currency | -Compute Plan Price | -Units | -SLA Base | -SLA Per Unit | -SLA Price | +Compute Plan | +Cloud Provider | +vCPUs | +RAM (GB) | +Term | +Currency | +Price Calculation Breakdown | + {% if show_addon_details %} +Add-ons | + {% endif %} {% if show_discount_details %} -Discount Model | -Discount Details | +Discount Model | +Discount Details | {% endif %} {% if show_price_comparison %} -External Comparisons | +External Comparisons | {% endif %} -Final Price | +Final Price | +||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Compute Plan Price | +SLA Base | +Units ร SLA Per Unit | +Mandatory Add-ons | += Total SLA Price | {{ row.ram }} | {{ row.term }} | {{ row.currency }} | -{{ row.compute_plan_price|floatformat:2 }} | -{{ row.units }} | -{{ row.sla_base|floatformat:2 }} | -{{ row.sla_per_unit|floatformat:4 }} | -{{ row.sla_price|floatformat:2 }} | + ++ {{ row.compute_plan_price|floatformat:2 }} + | ++ {{ row.sla_base|floatformat:2 }} + | +
+ {{ row.units|floatformat:0 }} ร {{ row.sla_per_unit|floatformat:4 }} + = {{ row.units|multiply:row.sla_per_unit|floatformat:2 }} + |
+
+ {% if row.mandatory_addons %}
+ {% for addon in row.mandatory_addons %}
+
+ {% if addon.addon_type == "Unit Rate" %}
+ {{ addon.name }}
+ {% if not forloop.last %}+ {{ row.units|floatformat:0 }} ร {{ addon.price|floatformat:4 }} + = {{ row.units|multiply:addon.price|floatformat:2 }} + {% elif addon.addon_type == "Base Fee" %} + {{ addon.name }} + {{ addon.price|floatformat:2 }} + {% else %} + {{ addon.name }} + {{ addon.price|floatformat:2 }} + {% endif %} + {% endif %} + {% endfor %} + {% else %} + n/a + {% endif %} + |
+ + {% with addon_total=row.mandatory_addons|calculate_addon_total:row.units %} + {{ row.sla_price|add_float:addon_total|floatformat:2 }} + {% endwith %} + | + {% if show_addon_details %} +
+ {% if row.mandatory_addons or row.optional_addons %}
+
+ {% if row.mandatory_addons %}
+
+ {% else %}
+ No add-ons
+ {% endif %}
+
+ Mandatory Add-ons:
+ {% for addon in row.mandatory_addons %}
+
+ {% endif %}
+ {% if row.optional_addons %}
+
+
+ {% endfor %}
+
+ {{ addon.name }}
+ {{ addon.price|floatformat:2 }} {{ row.currency }}
+
+ {% if addon.commercial_description %}
+ {{ addon.commercial_description }}
+ {% elif addon.description %}
+ {{ addon.description }}
+ {% endif %}
+ Type: {{ addon.addon_type }}
+
+ Optional Add-ons:
+ {% for addon in row.optional_addons %}
+
+ {% endif %}
+
+
+ {% endfor %}
+
+ {{ addon.name }}
+ {{ addon.price|floatformat:2 }} {{ row.currency }}
+
+ {% if addon.commercial_description %}
+ {{ addon.commercial_description }}
+ {% elif addon.description %}
+ {{ addon.description }}
+ {% endif %}
+ Type: {{ addon.addon_type }}
+ |
+ {% endif %}
{% if show_discount_details %}
{% if row.has_discount %} @@ -262,11 +584,15 @@ | {{ row.term }} | {{ comparison.currency }} | +- | - | - | - | - | + {% if show_addon_details %} +- | + {% endif %} {% if show_discount_details %}- | - | @@ -306,7 +632,7 @@ {# Price Chart #}