- 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
20 lines
443 B
JSON
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"
|
|
}
|
|
]
|