You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

198 lines
6.4 KiB

<template>
<w-dialog
ref="dialogRef"
:title="$t('erm.kpi.shared.selectIndicator.dialog.title')"
width="1024px"
height="900px"
:can-maximize="false"
:buttons="[
{
label: $t('confirm'),
click: () => {
const ids = Tools.extractProperties(gridRef.getSelectedRows(), 'id');
emit('afterSelected', ids, dialogRef);
},
},
]"
>
<div class="px-2">
<w-grid
ref="gridRef"
:title="$t('erm.kpi.shared.selectIndicator.dialog.grid.title')"
selection="multiple"
:full-screen-button="false"
:toolbar-configure="{ noIcon: false }"
:toolbar-actions="[['query', 'moreQuery'], 'refresh']"
:query-form-cols-num="4"
:query-form-fields="[
{ name: 'code', label: $t('code'), type: 'w-text' },
{ name: 'name', label: $t('name'), type: 'w-text' },
{
name: 'enable',
label: $t('enable'),
type: 'w-select',
options: Options.yesNo(),
queryOperator: 'equals',
},
{
name: 'enable',
label: $t('enable'),
type: 'w-select',
clearable: true,
options: Options.yesNo(),
queryOperator: 'equals',
},
{
name: 'source',
label: $t('erm.kpi.indicator.grid.entity.source'),
type: 'w-select',
clearable: true,
options: Options.dictionary(DICTIONARY_MAP.INDICATOR_SOURCE),
queryOperator: 'equals',
},
{
name: 'category',
label: $t('erm.kpi.indicator.grid.entity.category'),
type: 'w-select',
clearable: true,
options: Options.dictionary(DICTIONARY_MAP.INDICATOR_CATEGORY),
queryOperator: 'equals',
},
{
name: 'categoryRisk',
label: $t('erm.kpi.indicator.grid.entity.categoryRisk'),
type: 'w-select',
clearable: true,
options: Options.dictionary(DICTIONARY_MAP.INDICATOR_CATEGORY_RISK),
queryOperator: 'equals',
},
{
name: 'categoryBusiness',
label: $t('erm.kpi.indicator.grid.entity.categoryBusiness'),
type: 'w-select',
clearable: true,
options: Options.dictionary(DICTIONARY_MAP.INDICATOR_CATEGORY_BUSINESS),
queryOperator: 'equals',
},
{
name: 'categoryCal',
label: $t('erm.kpi.indicator.grid.entity.categoryCal'),
type: 'w-select',
clearable: true,
options: Options.dictionary(DICTIONARY_MAP.INDICATOR_CATEGORY_CAL),
queryOperator: 'equals',
},
{
name: 'unit',
label: $t('erm.kpi.indicator.grid.entity.unit'),
type: 'w-select',
clearable: true,
options: Options.dictionary(DICTIONARY_MAP.INDICATOR_UNIT),
queryOperator: 'equals',
},
{
name: 'frequency',
label: $t('erm.kpi.indicator.grid.entity.frequency'),
type: 'w-select',
clearable: true,
options: Options.dictionary(DICTIONARY_MAP.INDICATOR_FREQUENCY),
queryOperator: 'equals',
},
]"
:auto-fetch-data="false"
:fetch-data-url="fetchDataUrl + '?' + foreignKey + '=' + foreignValue"
:columns="[
{ width: 100, name: 'code', label: $t('code') },
{ width: 300, name: 'name', label: $t('name') },
{ width: 70, name: 'enable', label: $t('enable'), align: 'center', format: Formater.enableTag() },
{ width: 70, name: 'unit', label: $t('erm.kpi.indicator.grid.entity.unit'), format: Formater.dictionary(DICTIONARY_MAP.INDICATOR_UNIT) },
{
width: 70,
name: 'frequency',
label: $t('erm.kpi.indicator.grid.entity.frequency'),
format: Formater.dictionary(DICTIONARY_MAP.INDICATOR_FREQUENCY),
},
{ width: 80, name: 'category', label: $t('erm.kpi.indicator.grid.entity.category'), format: Formater.dictionary(DICTIONARY_MAP.INDICATOR_CATEGORY) },
{
width: 100,
name: 'categoryCal',
label: $t('erm.kpi.indicator.grid.entity.categoryCal'),
format: Formater.dictionary(DICTIONARY_MAP.INDICATOR_CATEGORY_CAL),
},
{
width: 100,
name: 'categoryRisk',
label: $t('erm.kpi.indicator.grid.entity.categoryRisk'),
format: Formater.dictionary(DICTIONARY_MAP.INDICATOR_CATEGORY_RISK),
},
{
width: 100,
name: 'categoryBusiness',
label: $t('erm.kpi.indicator.grid.entity.categoryBusiness'),
format: Formater.dictionary(DICTIONARY_MAP.INDICATOR_CATEGORY_BUSINESS),
},
{
width: 100,
name: 'superviseCondition',
label: $t('erm.kpi.indicator.grid.entity.superviseCondition'),
format: (value, row) => {
if (row.superviseCondition && !Tools.isUndefinedOrNull(row.superviseValue)) {
return row.superviseCondition + row.superviseValue;
}
return '';
},
},
]"
></w-grid>
</div>
</w-dialog>
</template>
<script setup lang="ts">
import { ref, nextTick } from 'vue';
import { useI18n } from 'vue-i18n';
import { Tools, DictionaryTools, Options, Formater } from 'platform-core';
const props = defineProps({
opener: { type: Object, default: undefined },
fetchDataUrl: { type: String, default: '' },
foreignKey: { type: String, default: '' },
foreignValue: { type: String, default: '' },
});
const emit = defineEmits<{
(e: 'afterSelected', ids: string[], dialogComponent: any): void;
}>();
const { t } = useI18n();
const dialogRef = ref();
const gridRef = ref();
const foreignKeyRef = ref();
const open = (foreignKey: string) => {
foreignKeyRef.value = foreignKey;
dialogRef.value.show();
nextTick(() => {
gridRef.value.refresh();
});
};
const close = () => {
dialogRef.value.hide();
};
defineExpose({
open,
close,
});
const DICTIONARY_MAP = await DictionaryTools.fetch([
'INDICATOR_CATEGORY',
'INDICATOR_CATEGORY_RISK',
'INDICATOR_CATEGORY_BUSINESS',
'INDICATOR_CATEGORY_CAL',
'INDICATOR_UNIT',
'INDICATOR_FREQUENCY',
'INDICATOR_SOURCE',
]);
</script>