-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
260 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
{ | ||
"name": "@steedos/app-project-management", | ||
"version": "1.23.0-alpha.16", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"debug": "nodemon server.js", | ||
"start": "node server.js", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "", | ||
"private": false, | ||
"license": "MIT", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"devDependencies": { | ||
"@steedos/accounts": "^1.23.0-alpha.16", | ||
"@steedos/steedos-plugin-workflow": "^2.0.8", | ||
"@steedos/word-template": "^1.23.0-alpha.16", | ||
"dotenv-flow": "^3.1.0", | ||
"nodemon": "^1.19.1", | ||
"steedos-server": "^1.23.0-alpha.16" | ||
}, | ||
"homepage": "https://developer.steedos.com", | ||
"resolutions": { | ||
"**/lodash": "^4.17.15", | ||
"**/handlebars": "^4.3.0", | ||
"**/debug": "^3.1.0", | ||
"**/hoek": "^5.0.3", | ||
"**/cryptiles": "^4.1.2", | ||
"**/bcrypt": "3.0.6", | ||
"**/samlp": "3.4.1", | ||
"**/xmldom": "0.2.1", | ||
"**/tslib": "1.11.2", | ||
"**/fibers": "^4.0.3" | ||
} | ||
"name": "@steedos/app-project-management", | ||
"version": "1.23.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"debug": "nodemon server.js", | ||
"start": "node server.js", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "", | ||
"private": false, | ||
"license": "MIT", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"devDependencies": { | ||
"@steedos/accounts": "^1.23.0-alpha.16", | ||
"@steedos/steedos-plugin-workflow": "^2.0.8", | ||
"@steedos/word-template": "^1.23.0-alpha.16", | ||
"dotenv-flow": "^3.1.0", | ||
"nodemon": "^1.19.1", | ||
"steedos-server": "^1.23.0-alpha.16" | ||
}, | ||
"homepage": "https://developer.steedos.com", | ||
"resolutions": { | ||
"**/lodash": "^4.17.15", | ||
"**/handlebars": "^4.3.0", | ||
"**/debug": "^3.1.0", | ||
"**/hoek": "^5.0.3", | ||
"**/cryptiles": "^4.1.2", | ||
"**/bcrypt": "3.0.6", | ||
"**/samlp": "3.4.1", | ||
"**/xmldom": "0.2.1", | ||
"**/tslib": "1.11.2", | ||
"**/fibers": "^4.0.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<title>Project Tasks</title> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" /> | ||
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> | ||
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.4/css/dx.common.css" /> | ||
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.4/css/dx.light.css" /> | ||
<script src="https://cdn3.devexpress.com/jslib/20.2.4/js/dx.all.js"></script> | ||
<script src="index.js"></script> | ||
</head> | ||
<body class="dx-viewport"> | ||
<div class="demo-container"> | ||
<div id="gridContainer"></div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
$(function(){ | ||
|
||
$("#gridContainer").dxDataGrid({ | ||
showBorders: true, | ||
dataSource: { | ||
store: { | ||
type: "odata", | ||
version: 4, | ||
url: "/api/v4/project_task__c" | ||
}, | ||
select: [ | ||
"name", | ||
"project__c", | ||
"assignees__c", | ||
"due_date__c", | ||
"priority__c", | ||
"completed__c", | ||
"state__c", | ||
"owner" | ||
], | ||
}, | ||
columns: [ | ||
{ | ||
dataField: "name", | ||
width: 250 | ||
}, | ||
"project__c", | ||
"assignees__c", | ||
"due_date__c", | ||
"priority__c", | ||
"completed__c", | ||
"state__c", | ||
"owner" | ||
], | ||
editing: { | ||
mode: 'row', | ||
allowUpdating: true, | ||
allowAdding: true, | ||
allowDeleting: true, | ||
confirmDelete: true | ||
} | ||
}); | ||
}); |
4 changes: 0 additions & 4 deletions
4
steedos-app/main/default/objects/project__c/fields/account__c.field.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
steedos-app/main/default/objects/project__c/fields/contract__c.field.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
steedos-app/main/default/objects/project__c/fields/count_milestones__c.field.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
steedos-app/main/default/objects/project__c/fields/count_milestones_ok__c.field.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
steedos-app/main/default/objects/project__c/fields/deadline__c.field.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
steedos-app/main/default/objects/project__c/fields/description__c.field.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
steedos-app/main/default/objects/project__c/fields/internal__c.field.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
steedos-app/main/default/objects/project__c/fields/kickoff__c.field.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
steedos-app/main/default/objects/project__c/fields/name.field.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 0 additions & 3 deletions
3
steedos-app/main/default/objects/project__c/fields/open_issues__c.field.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 0 additions & 3 deletions
3
steedos-app/main/default/objects/project__c/fields/open_tasks__c.field.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
steedos-app/main/default/objects/project__c/fields/pencent_milestones__c.field.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 0 additions & 6 deletions
6
steedos-app/main/default/objects/project__c/fields/project_program__c.field.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
steedos-app/main/default/objects/project__c/fields/status__c.field.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.