CYANLOG SUITE

Sales Price And Contract Engine

Quote preview, contract template selection, and health checks are ready for cloud integration with Supabase.

Health Endpoint

Validate deployment and environment setup before enabling business workflows.

GET /api/health

Quote Preview Endpoint

Calculates subtotal, tax, discount, and chooses contract template by product version.

POST /api/quote/preview

Quick Test

curl -X POST http://localhost:3000/api/quote/preview \
  -H "Content-Type: application/json" \
  -d '{
    "version": "growth",
    "discountRate": 0.1,
    "items": [
      {"sku": "CORE-001", "name": "Core License", "unitPriceCny": 12000, "quantity": 2, "taxRate": 0.13},
      {"sku": "SVC-001", "name": "Implementation", "unitPriceCny": 5000, "quantity": 1, "taxRate": 0.06}
    ]
  }'