Merged in bugfix/PMCORE-3404-A (pull request #8215)

PMCORE-3404

Approved-by: Rodrigo Quelca
This commit is contained in:
Henry Jonathan Quispe Quispe
2021-10-14 20:21:45 +00:00
committed by Julio Cesar Laura Avendaño
3 changed files with 23 additions and 11 deletions

View File

@@ -79,6 +79,9 @@
</h4>
</div>
</div>
<div class="v-search-info">
{{ $t("ID_SELECT_PROCESS_DRILL") }}
</div>
<apexchart
ref="LevelOneChart"
:width="width"
@@ -139,17 +142,11 @@ export default {
type: "bar",
id: "LevelOneChart",
toolbar: {
show: false,
show: true,
},
events: {
mouseMove: function (event, chartContext, config) {
if (
config.dataPointIndex != that.dataPointIndex &&
config.dataPointIndex != -1
) {
that.dataPointIndex = config.dataPointIndex;
that.$refs.popover.$emit("close");
}
click: function (event, chartContext, config) {
that.$refs.popover.$emit("close");
if (config.dataPointIndex != -1) {
that.currentSelection = that.totalCases[config.dataPointIndex];
that.onShowDrillDownOptions(
@@ -169,7 +166,7 @@ export default {
},
colors: ["#33b2df", "#546E7A", "#d4526e", "#13d8aa"],
dataLabels: {
enabled: true,
enabled: false,
},
xaxis: {
categories: [],
@@ -487,5 +484,13 @@ export default {
.vp-flex1 {
flex: 1;
}
.v-search-info {
font-size: 15px;
color: darkgray;
padding-left: 5%;
padding-top: 10px;
text-align: end;
}
</style>
<style src="vue-multiselect/dist/vue-multiselect.min.css"></style>

View File

@@ -53311,4 +53311,10 @@ msgstr "Solid icons"
# LABEL/ID_SOLID_ICONS_NOT_FOUND
#: LABEL/ID_SOLID_ICONS_NOT_FOUND
msgid "Sorry, No Solid icons found!"
msgstr "Sorry, No Solid icons found!"
msgstr "Sorry, No Solid icons found!"
# TRANSLATION
# LABEL/ID_SELECT_PROCESS_DRILL
#: LABEL/ID_SELECT_PROCESS_DRILL
msgid "Select a process to have the Drilling Down Options"
msgstr "Select a process to have the Drilling Down Options"

View File

@@ -61053,6 +61053,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
( 'LABEL','ID_SELECT_PLUGIN_FILE','en','Select a plugin file','2014-09-18') ,
( 'LABEL','ID_SELECT_PM_FILE','en','Select a .pmt file','2014-01-15') ,
( 'LABEL','ID_SELECT_PROCESS_FILE','en','Select a process file','2014-01-15') ,
( 'LABEL','ID_SELECT_PROCESS_DRILL','en','Select a process to have the Drilling Down Options','2021-10-13') ,
( 'LABEL','ID_SELECT_STATUS','en','Select status...','2014-01-15') ,
( 'LABEL','ID_SELECT_TABLE','en','Please select a table to export.','2014-01-15') ,
( 'LABEL','ID_SELECT_TEMPLATE_FILE','en','Select a template file','2014-01-15') ,