diff --git a/src/modules/01_masterdata/components/Indicators/indicatorByPlan/IndicatorByPlan.vue b/src/modules/01_masterdata/components/Indicators/indicatorByPlan/IndicatorByPlan.vue index 35c2f9394..e33d0c816 100644 --- a/src/modules/01_masterdata/components/Indicators/indicatorByPlan/IndicatorByPlan.vue +++ b/src/modules/01_masterdata/components/Indicators/indicatorByPlan/IndicatorByPlan.vue @@ -188,7 +188,7 @@ function onSubmit() { async () => { const body = { year: year.value == 0 ? null : year.value?.toString(), - period: planData.period, + period: planData.period ? planData.period : null, includingName: planData.includingName, target: planData.target, unit: planData.unit, diff --git a/src/modules/05_placement/components/probation/FormEvaluation/Template1Commader.vue b/src/modules/05_placement/components/probation/FormEvaluation/Template1Commader.vue index 77e43d5fc..e0f0f4ec7 100644 --- a/src/modules/05_placement/components/probation/FormEvaluation/Template1Commader.vue +++ b/src/modules/05_placement/components/probation/FormEvaluation/Template1Commader.vue @@ -53,7 +53,7 @@ async function fecthAssign(id: string) { // messageError($q, e); }) .finally(() => { - probationStore.checkLoad && hideLoader(); + hideLoader(); }); }