fix: refs #7353 sales person filter and locale #724

Merged
jorgep merged 6 commits from 7353-hotfix-fixFilter into master 2024-09-18 07:19:46 +00:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit 2cb2ce16ef - Show all commits

View File

@ -28,8 +28,9 @@ const handleScopeDays = (params, days, callback) => {
};
const getLocale = (label) => {
const globalLocale = `globals.params.${label}`;
return te(globalLocale) ? t(globalLocale) : t(`params.${label}`);
const param = label.split('.').at(-1);
const globalLocale = `globals.params.${param}`;
Review

hay parametros que se envían al back indicando al esquema. tipo provinceFk a.provinceFk, state ts.stateFk.

hay parametros que se envían al back indicando al esquema. tipo provinceFk a.provinceFk, state ts.stateFk.
return te(globalLocale) ? t(globalLocale) : t(`params.${param}`);
};
</script>
<template>