├── .gitignore ├── LICENSE.txt ├── README.md ├── _assets ├── atropm-issue-panel.png ├── atropm-kanban-board.png └── new ├── app ├── Acl │ ├── Issue.php │ └── Milestone.php ├── Controllers │ ├── Expense.php │ ├── ExpenseType.php │ ├── Group.php │ ├── Issue.php │ ├── Milestone.php │ ├── Project.php │ └── User.php ├── Entities │ ├── Expense.php │ ├── ExpenseType.php │ ├── Group.php │ ├── Issue.php │ ├── Milestone.php │ ├── Project.php │ └── User.php ├── Event.php ├── Listeners │ ├── ExpenseEntity.php │ ├── GroupEntity.php │ ├── Metadata.php │ ├── MilestoneEntity.php │ └── ProjectEntity.php ├── Migrations │ ├── V1Dot0Dot1.php │ ├── V1Dot0Dot10.php │ ├── V1Dot0Dot17.php │ ├── V1Dot0Dot20.php │ ├── V1Dot0Dot22.php │ ├── V1Dot0Dot3.php │ ├── V1Dot0Dot39.php │ ├── V1Dot0Dot4.php │ ├── V1Dot0Dot5.php │ ├── V1Dot0Dot6.php │ ├── V1Dot0Dot7.php │ ├── V1Dot1Dot29.php │ ├── V1Dot3Dot3.php │ └── V1Dot3Dot4.php ├── Module.php ├── Repositories │ ├── AbstractRepository.php │ ├── Expense.php │ ├── ExpenseType.php │ ├── Group.php │ ├── Issue.php │ ├── Milestone.php │ ├── Project.php │ └── User.php ├── Resources │ ├── i18n │ │ └── en_US │ │ │ ├── Account.json │ │ │ ├── Expense.json │ │ │ ├── ExpenseType.json │ │ │ ├── Global.json │ │ │ ├── Group.json │ │ │ ├── Issue.json │ │ │ ├── Milestone.json │ │ │ ├── Project.json │ │ │ └── User.json │ ├── layouts │ │ ├── Account │ │ │ └── relationships.json │ │ ├── Expense │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── filters.json │ │ │ ├── list.json │ │ │ └── listSmall.json │ │ ├── ExpenseType │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ └── listSmall.json │ │ ├── Group │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ ├── listSmall.json │ │ │ └── relationships.json │ │ ├── Issue │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── kanban.json │ │ │ ├── list.json │ │ │ └── listSmall.json │ │ ├── Milestone │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── filters.json │ │ │ ├── list.json │ │ │ ├── listSmall.json │ │ │ └── relationships.json │ │ ├── Project │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ ├── listSmall.json │ │ │ └── relationships.json │ │ └── User │ │ │ └── detail.json │ ├── metadata │ │ ├── app │ │ │ ├── aclPortal.json │ │ │ ├── clientClassReplaceMap.json │ │ │ └── services.json │ │ ├── clientDefs │ │ │ ├── Expense.json │ │ │ ├── ExpenseType.json │ │ │ ├── Group.json │ │ │ ├── Issue.json │ │ │ ├── Milestone.json │ │ │ ├── Project.json │ │ │ └── User.json │ │ ├── entityDefs │ │ │ ├── Account.json │ │ │ ├── Expense.json │ │ │ ├── ExpenseType.json │ │ │ ├── Group.json │ │ │ ├── Issue.json │ │ │ ├── Milestone.json │ │ │ ├── Project.json │ │ │ └── User.json │ │ └── scopes │ │ │ ├── Expense.json │ │ │ ├── ExpenseType.json │ │ │ ├── Group.json │ │ │ ├── Issue.json │ │ │ ├── Milestone.json │ │ │ ├── Project.json │ │ │ └── User.json │ └── routes.json ├── SelectManagers │ ├── Issue.php │ ├── Milestone.php │ └── User.php └── Services │ ├── AbstractService.php │ ├── Expense.php │ ├── ExpenseType.php │ ├── Group.php │ ├── ImportTypeTrello.php │ ├── Issue.php │ ├── Milestone.php │ ├── Project.php │ └── User.php ├── client └── modules │ └── project-management │ ├── res │ └── templates │ │ ├── fields │ │ └── varchar-with-caret │ │ │ └── list-link.tpl │ │ └── record │ │ ├── list-hierarchical.tpl │ │ └── list-hierarchical │ │ └── row.tpl │ └── src │ ├── acl │ └── milestone.js │ ├── collections │ └── stub.js │ └── views │ ├── detail.js │ ├── expense │ ├── fields │ │ └── total.js │ └── record │ │ ├── edit-small.js │ │ └── edit.js │ ├── fields │ ├── assigned-user-with-teams-filter.js │ ├── link-parent.js │ ├── link.js │ └── varchar-with-caret.js │ ├── group │ ├── detail.js │ └── record │ │ └── panels │ │ └── labels.js │ ├── issue │ ├── detail.js │ ├── fields │ │ ├── due-date.js │ │ ├── milestone.js │ │ └── owner-user.js │ └── record │ │ ├── kanban.js │ │ └── panels │ │ └── expenses.js │ ├── milestone │ └── record │ │ └── panels │ │ └── expenses.js │ ├── modals │ └── select-records.js │ ├── project │ ├── fields │ │ └── group.js │ └── record │ │ └── panels │ │ ├── expenses.js │ │ ├── issues.js │ │ └── labels.js │ └── record │ ├── detail-side.js │ ├── list-hierarchical.js │ ├── list-hierarchical │ └── row.js │ └── panels │ ├── bottom-hierarchical.js │ ├── bottom-list.js │ └── relationship-hierarchical.js └── composer.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/README.md -------------------------------------------------------------------------------- /_assets/atropm-issue-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/_assets/atropm-issue-panel.png -------------------------------------------------------------------------------- /_assets/atropm-kanban-board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/_assets/atropm-kanban-board.png -------------------------------------------------------------------------------- /_assets/new: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/Acl/Issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Acl/Issue.php -------------------------------------------------------------------------------- /app/Acl/Milestone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Acl/Milestone.php -------------------------------------------------------------------------------- /app/Controllers/Expense.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Controllers/Expense.php -------------------------------------------------------------------------------- /app/Controllers/ExpenseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Controllers/ExpenseType.php -------------------------------------------------------------------------------- /app/Controllers/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Controllers/Group.php -------------------------------------------------------------------------------- /app/Controllers/Issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Controllers/Issue.php -------------------------------------------------------------------------------- /app/Controllers/Milestone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Controllers/Milestone.php -------------------------------------------------------------------------------- /app/Controllers/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Controllers/Project.php -------------------------------------------------------------------------------- /app/Controllers/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Controllers/User.php -------------------------------------------------------------------------------- /app/Entities/Expense.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Entities/Expense.php -------------------------------------------------------------------------------- /app/Entities/ExpenseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Entities/ExpenseType.php -------------------------------------------------------------------------------- /app/Entities/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Entities/Group.php -------------------------------------------------------------------------------- /app/Entities/Issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Entities/Issue.php -------------------------------------------------------------------------------- /app/Entities/Milestone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Entities/Milestone.php -------------------------------------------------------------------------------- /app/Entities/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Entities/Project.php -------------------------------------------------------------------------------- /app/Entities/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Entities/User.php -------------------------------------------------------------------------------- /app/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Event.php -------------------------------------------------------------------------------- /app/Listeners/ExpenseEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Listeners/ExpenseEntity.php -------------------------------------------------------------------------------- /app/Listeners/GroupEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Listeners/GroupEntity.php -------------------------------------------------------------------------------- /app/Listeners/Metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Listeners/Metadata.php -------------------------------------------------------------------------------- /app/Listeners/MilestoneEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Listeners/MilestoneEntity.php -------------------------------------------------------------------------------- /app/Listeners/ProjectEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Listeners/ProjectEntity.php -------------------------------------------------------------------------------- /app/Migrations/V1Dot0Dot1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Migrations/V1Dot0Dot1.php -------------------------------------------------------------------------------- /app/Migrations/V1Dot0Dot10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Migrations/V1Dot0Dot10.php -------------------------------------------------------------------------------- /app/Migrations/V1Dot0Dot17.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Migrations/V1Dot0Dot17.php -------------------------------------------------------------------------------- /app/Migrations/V1Dot0Dot20.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Migrations/V1Dot0Dot20.php -------------------------------------------------------------------------------- /app/Migrations/V1Dot0Dot22.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Migrations/V1Dot0Dot22.php -------------------------------------------------------------------------------- /app/Migrations/V1Dot0Dot3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Migrations/V1Dot0Dot3.php -------------------------------------------------------------------------------- /app/Migrations/V1Dot0Dot39.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Migrations/V1Dot0Dot39.php -------------------------------------------------------------------------------- /app/Migrations/V1Dot0Dot4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Migrations/V1Dot0Dot4.php -------------------------------------------------------------------------------- /app/Migrations/V1Dot0Dot5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Migrations/V1Dot0Dot5.php -------------------------------------------------------------------------------- /app/Migrations/V1Dot0Dot6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Migrations/V1Dot0Dot6.php -------------------------------------------------------------------------------- /app/Migrations/V1Dot0Dot7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Migrations/V1Dot0Dot7.php -------------------------------------------------------------------------------- /app/Migrations/V1Dot1Dot29.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Migrations/V1Dot1Dot29.php -------------------------------------------------------------------------------- /app/Migrations/V1Dot3Dot3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Migrations/V1Dot3Dot3.php -------------------------------------------------------------------------------- /app/Migrations/V1Dot3Dot4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Migrations/V1Dot3Dot4.php -------------------------------------------------------------------------------- /app/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Module.php -------------------------------------------------------------------------------- /app/Repositories/AbstractRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Repositories/AbstractRepository.php -------------------------------------------------------------------------------- /app/Repositories/Expense.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Repositories/Expense.php -------------------------------------------------------------------------------- /app/Repositories/ExpenseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Repositories/ExpenseType.php -------------------------------------------------------------------------------- /app/Repositories/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Repositories/Group.php -------------------------------------------------------------------------------- /app/Repositories/Issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Repositories/Issue.php -------------------------------------------------------------------------------- /app/Repositories/Milestone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Repositories/Milestone.php -------------------------------------------------------------------------------- /app/Repositories/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Repositories/Project.php -------------------------------------------------------------------------------- /app/Repositories/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Repositories/User.php -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/Account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/i18n/en_US/Account.json -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/Expense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/i18n/en_US/Expense.json -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/ExpenseType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/i18n/en_US/ExpenseType.json -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/Global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/i18n/en_US/Global.json -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/Group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/i18n/en_US/Group.json -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/Issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/i18n/en_US/Issue.json -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/Milestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/i18n/en_US/Milestone.json -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/Project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/i18n/en_US/Project.json -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/User.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/i18n/en_US/User.json -------------------------------------------------------------------------------- /app/Resources/layouts/Account/relationships.json: -------------------------------------------------------------------------------- 1 | [ 2 | "projects" 3 | ] 4 | -------------------------------------------------------------------------------- /app/Resources/layouts/Expense/detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Expense/detail.json -------------------------------------------------------------------------------- /app/Resources/layouts/Expense/detailSmall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Expense/detailSmall.json -------------------------------------------------------------------------------- /app/Resources/layouts/Expense/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Expense/filters.json -------------------------------------------------------------------------------- /app/Resources/layouts/Expense/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Expense/list.json -------------------------------------------------------------------------------- /app/Resources/layouts/Expense/listSmall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Expense/listSmall.json -------------------------------------------------------------------------------- /app/Resources/layouts/ExpenseType/detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/ExpenseType/detail.json -------------------------------------------------------------------------------- /app/Resources/layouts/ExpenseType/detailSmall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/ExpenseType/detailSmall.json -------------------------------------------------------------------------------- /app/Resources/layouts/ExpenseType/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/ExpenseType/list.json -------------------------------------------------------------------------------- /app/Resources/layouts/ExpenseType/listSmall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/ExpenseType/listSmall.json -------------------------------------------------------------------------------- /app/Resources/layouts/Group/detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Group/detail.json -------------------------------------------------------------------------------- /app/Resources/layouts/Group/detailSmall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Group/detailSmall.json -------------------------------------------------------------------------------- /app/Resources/layouts/Group/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Group/list.json -------------------------------------------------------------------------------- /app/Resources/layouts/Group/listSmall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Group/listSmall.json -------------------------------------------------------------------------------- /app/Resources/layouts/Group/relationships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Group/relationships.json -------------------------------------------------------------------------------- /app/Resources/layouts/Issue/detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Issue/detail.json -------------------------------------------------------------------------------- /app/Resources/layouts/Issue/detailSmall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Issue/detailSmall.json -------------------------------------------------------------------------------- /app/Resources/layouts/Issue/kanban.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Issue/kanban.json -------------------------------------------------------------------------------- /app/Resources/layouts/Issue/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Issue/list.json -------------------------------------------------------------------------------- /app/Resources/layouts/Issue/listSmall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Issue/listSmall.json -------------------------------------------------------------------------------- /app/Resources/layouts/Milestone/detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Milestone/detail.json -------------------------------------------------------------------------------- /app/Resources/layouts/Milestone/detailSmall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Milestone/detailSmall.json -------------------------------------------------------------------------------- /app/Resources/layouts/Milestone/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Milestone/filters.json -------------------------------------------------------------------------------- /app/Resources/layouts/Milestone/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Milestone/list.json -------------------------------------------------------------------------------- /app/Resources/layouts/Milestone/listSmall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Milestone/listSmall.json -------------------------------------------------------------------------------- /app/Resources/layouts/Milestone/relationships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Milestone/relationships.json -------------------------------------------------------------------------------- /app/Resources/layouts/Project/detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Project/detail.json -------------------------------------------------------------------------------- /app/Resources/layouts/Project/detailSmall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Project/detailSmall.json -------------------------------------------------------------------------------- /app/Resources/layouts/Project/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Project/list.json -------------------------------------------------------------------------------- /app/Resources/layouts/Project/listSmall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Project/listSmall.json -------------------------------------------------------------------------------- /app/Resources/layouts/Project/relationships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/Project/relationships.json -------------------------------------------------------------------------------- /app/Resources/layouts/User/detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/layouts/User/detail.json -------------------------------------------------------------------------------- /app/Resources/metadata/app/aclPortal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/app/aclPortal.json -------------------------------------------------------------------------------- /app/Resources/metadata/app/clientClassReplaceMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/app/clientClassReplaceMap.json -------------------------------------------------------------------------------- /app/Resources/metadata/app/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/app/services.json -------------------------------------------------------------------------------- /app/Resources/metadata/clientDefs/Expense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/clientDefs/Expense.json -------------------------------------------------------------------------------- /app/Resources/metadata/clientDefs/ExpenseType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/clientDefs/ExpenseType.json -------------------------------------------------------------------------------- /app/Resources/metadata/clientDefs/Group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/clientDefs/Group.json -------------------------------------------------------------------------------- /app/Resources/metadata/clientDefs/Issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/clientDefs/Issue.json -------------------------------------------------------------------------------- /app/Resources/metadata/clientDefs/Milestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/clientDefs/Milestone.json -------------------------------------------------------------------------------- /app/Resources/metadata/clientDefs/Project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/clientDefs/Project.json -------------------------------------------------------------------------------- /app/Resources/metadata/clientDefs/User.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/clientDefs/User.json -------------------------------------------------------------------------------- /app/Resources/metadata/entityDefs/Account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/entityDefs/Account.json -------------------------------------------------------------------------------- /app/Resources/metadata/entityDefs/Expense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/entityDefs/Expense.json -------------------------------------------------------------------------------- /app/Resources/metadata/entityDefs/ExpenseType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/entityDefs/ExpenseType.json -------------------------------------------------------------------------------- /app/Resources/metadata/entityDefs/Group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/entityDefs/Group.json -------------------------------------------------------------------------------- /app/Resources/metadata/entityDefs/Issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/entityDefs/Issue.json -------------------------------------------------------------------------------- /app/Resources/metadata/entityDefs/Milestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/entityDefs/Milestone.json -------------------------------------------------------------------------------- /app/Resources/metadata/entityDefs/Project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/entityDefs/Project.json -------------------------------------------------------------------------------- /app/Resources/metadata/entityDefs/User.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/entityDefs/User.json -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/Expense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/scopes/Expense.json -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/ExpenseType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/scopes/ExpenseType.json -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/Group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/scopes/Group.json -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/Issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/scopes/Issue.json -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/Milestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/scopes/Milestone.json -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/Project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/metadata/scopes/Project.json -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/User.json: -------------------------------------------------------------------------------- 1 | { 2 | "module": "ProjectManagement" 3 | } -------------------------------------------------------------------------------- /app/Resources/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Resources/routes.json -------------------------------------------------------------------------------- /app/SelectManagers/Issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/SelectManagers/Issue.php -------------------------------------------------------------------------------- /app/SelectManagers/Milestone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/SelectManagers/Milestone.php -------------------------------------------------------------------------------- /app/SelectManagers/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/SelectManagers/User.php -------------------------------------------------------------------------------- /app/Services/AbstractService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Services/AbstractService.php -------------------------------------------------------------------------------- /app/Services/Expense.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Services/Expense.php -------------------------------------------------------------------------------- /app/Services/ExpenseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Services/ExpenseType.php -------------------------------------------------------------------------------- /app/Services/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Services/Group.php -------------------------------------------------------------------------------- /app/Services/ImportTypeTrello.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Services/ImportTypeTrello.php -------------------------------------------------------------------------------- /app/Services/Issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Services/Issue.php -------------------------------------------------------------------------------- /app/Services/Milestone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Services/Milestone.php -------------------------------------------------------------------------------- /app/Services/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Services/Project.php -------------------------------------------------------------------------------- /app/Services/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/app/Services/User.php -------------------------------------------------------------------------------- /client/modules/project-management/res/templates/fields/varchar-with-caret/list-link.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/res/templates/fields/varchar-with-caret/list-link.tpl -------------------------------------------------------------------------------- /client/modules/project-management/res/templates/record/list-hierarchical.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/res/templates/record/list-hierarchical.tpl -------------------------------------------------------------------------------- /client/modules/project-management/res/templates/record/list-hierarchical/row.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/res/templates/record/list-hierarchical/row.tpl -------------------------------------------------------------------------------- /client/modules/project-management/src/acl/milestone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/acl/milestone.js -------------------------------------------------------------------------------- /client/modules/project-management/src/collections/stub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/collections/stub.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/detail.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/expense/fields/total.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/expense/fields/total.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/expense/record/edit-small.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/expense/record/edit-small.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/expense/record/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/expense/record/edit.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/fields/assigned-user-with-teams-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/fields/assigned-user-with-teams-filter.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/fields/link-parent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/fields/link-parent.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/fields/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/fields/link.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/fields/varchar-with-caret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/fields/varchar-with-caret.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/group/detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/group/detail.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/group/record/panels/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/group/record/panels/labels.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/issue/detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/issue/detail.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/issue/fields/due-date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/issue/fields/due-date.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/issue/fields/milestone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/issue/fields/milestone.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/issue/fields/owner-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/issue/fields/owner-user.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/issue/record/kanban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/issue/record/kanban.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/issue/record/panels/expenses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/issue/record/panels/expenses.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/milestone/record/panels/expenses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/milestone/record/panels/expenses.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/modals/select-records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/modals/select-records.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/project/fields/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/project/fields/group.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/project/record/panels/expenses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/project/record/panels/expenses.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/project/record/panels/issues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/project/record/panels/issues.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/project/record/panels/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/project/record/panels/labels.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/record/detail-side.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/record/detail-side.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/record/list-hierarchical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/record/list-hierarchical.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/record/list-hierarchical/row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/record/list-hierarchical/row.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/record/panels/bottom-hierarchical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/record/panels/bottom-hierarchical.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/record/panels/bottom-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/record/panels/bottom-list.js -------------------------------------------------------------------------------- /client/modules/project-management/src/views/record/panels/relationship-hierarchical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/client/modules/project-management/src/views/record/panels/relationship-hierarchical.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrocore/atropm/HEAD/composer.json --------------------------------------------------------------------------------