"""
Configure Eden's payment system to use YOUR PayPal
"""
import json

print("\n" + "="*70)
print("💰 CONFIGURING PAYPAL FOR EDEN")
print("="*70)
print()

# PayPal configuration
paypal_config = {
    "payment_processor": "paypal",
    "paypal_email": "YOUR_PAYPAL_EMAIL@example.com",  # <-- PUT YOUR PAYPAL EMAIL HERE
    "currency": "USD",
    "pricing": {
        "sage_monthly": 100,
        "sage_annual": 1000,
        "consulting": 5000
    },
    "payment_flow": "paypal_invoice",  # Eden generates PayPal invoices
    "auto_invoice": True  # Eden automatically sends invoices
}

# Save configuration
with open('/Eden/SALES/payment_config.json', 'w') as f:
    json.dump(paypal_config, f, indent=2)

print("✅ Payment Configuration Saved!")
print()
print("PayPal Email: " + paypal_config['paypal_email'])
print()
print("💰 Pricing:")
print(f"   • SAGE Monthly: ${paypal_config['pricing']['sage_monthly']}")
print(f"   • SAGE Annual: ${paypal_config['pricing']['sage_annual']}")
print(f"   • Consulting: ${paypal_config['pricing']['consulting']}")
print()
print("🔄 Payment Flow:")
print("   1. Customer agrees to service")
print("   2. Eden generates PayPal invoice")
print("   3. Invoice sent to customer")
print("   4. Payment goes directly to YOUR PayPal")
print()
print("="*70)
print("✅ READY TO ACCEPT PAYMENTS")
print("="*70)

