PR-CUSTOMER #186

Merged
jsegarra merged 105 commits from :PR-CUSTOMER into dev 2024-04-19 15:55:53 +00:00
3 changed files with 3 additions and 0 deletions
Showing only changes of commit 41e1bad44d - Show all commits

View File

@ -56,6 +56,7 @@ onBeforeMount(() => {
watch(
() => route.params.id,
(newValue) => {
if (!newValue) return;
getAddressesData(newValue);
getClientData(newValue);
}

View File

@ -38,6 +38,7 @@ onBeforeMount(() => {
watch(
() => route.params.id,
(newValue) => {
if (!newValue) return;
getData(newValue);

salix pone una fecha por defecto, emular comportamiento

salix pone una fecha por defecto, emular comportamiento

Corregido: 90ee50eab5

Corregido: 90ee50eab5

Lo veo OK

Lo veo OK
}
);

View File

@ -98,6 +98,7 @@ onBeforeMount(() => {
watch(
() => route.params.id,
(newValue) => {
if (!newValue) return;
getData(newValue);
}
);