-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- OK Page para realizar test - Feat: Mostrando grafica con resultados - Ok guardando resultados en doctype - OK Workspace RH
- Loading branch information
Showing
11 changed files
with
301 additions
and
45 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
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
Empty file.
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,41 @@ | ||
{ | ||
"actions": [], | ||
"allow_rename": 1, | ||
"creation": "2021-10-25 12:02:35.265856", | ||
"doctype": "DocType", | ||
"editable_grid": 1, | ||
"engine": "InnoDB", | ||
"field_order": [ | ||
"category", | ||
"score" | ||
], | ||
"fields": [ | ||
{ | ||
"fieldname": "category", | ||
"fieldtype": "Select", | ||
"in_list_view": 1, | ||
"label": "Category", | ||
"options": "EXTRAVERSION\nAGREEABLENESS\nCONSCIENTIOUSNESS\nNEUROTICISM\nOPENNESS", | ||
"read_only": 1 | ||
}, | ||
{ | ||
"fieldname": "score", | ||
"fieldtype": "Float", | ||
"in_list_view": 1, | ||
"label": "Score", | ||
"read_only": 1 | ||
} | ||
], | ||
"index_web_pages_for_search": 1, | ||
"istable": 1, | ||
"links": [], | ||
"modified": "2021-10-25 12:38:09.902258", | ||
"modified_by": "Administrator", | ||
"module": "RH", | ||
"name": "Big Five Category", | ||
"owner": "Administrator", | ||
"permissions": [], | ||
"sort_field": "modified", | ||
"sort_order": "DESC", | ||
"track_changes": 1 | ||
} |
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,8 @@ | ||
# Copyright (c) 2021, Si Hay Sistema and contributors | ||
# For license information, please see license.txt | ||
|
||
# import frappe | ||
from frappe.model.document import Document | ||
|
||
class BigFiveCategory(Document): | ||
pass |
Empty file.
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,8 @@ | ||
// Copyright (c) 2021, Si Hay Sistema and contributors | ||
// For license information, please see license.txt | ||
|
||
frappe.ui.form.on('Big Five Results', { | ||
// refresh: function(frm) { | ||
|
||
// } | ||
}); |
Oops, something went wrong.