erp-next/service_factory/fixtures/resource_center.json
cclohmar e24c3e2a72 feat: add fixture seed data for portability
- Added fixture config in hooks.py for Workspace, Resource Center,
  Engagement Recipe, and Engagement Order
- Exported workspace.json (3 Service Factory workspaces)
- Created resource_center.json seed data (Engineering Team,
  Solutions Consulting)
- All configuration is now version-controlled and portable
  via 'bench migrate' on any server
2026-07-15 21:53:44 +00:00

20 lines
443 B
JSON

[
{
"center_name": "Engineering Team",
"resource_type": "Engineering",
"hourly_cost_rate": 75.0,
"hourly_billing_rate": 150.0,
"daily_capacity_hours": 40.0,
"members": [],
"doctype": "Resource Center"
},
{
"center_name": "Solutions Consulting",
"resource_type": "Consulting",
"hourly_cost_rate": 100.0,
"hourly_billing_rate": 200.0,
"daily_capacity_hours": 24.0,
"members": [],
"doctype": "Resource Center"
}
]