8622-testToMaster #1411

Merged
alexm merged 746 commits from 8622-testToMaster into master 2025-02-18 07:54:25 +00:00
1 changed files with 0 additions and 15 deletions
Showing only changes of commit 3fc7f34899 - Show all commits

View File

@ -98,24 +98,9 @@ const filter = {
},
],
};
// let business = ref(null);
// const workerCurrentBusiness = ref(null);
// const businessCurrent = async () => {
// await getWorker();
// console.log('workerCurrentBusiness: ', workerCurrentBusiness.value);
// const { data } = await axios.get(`Businesses/${workerCurrentBusiness.value}`, {});
// business.value = data;
// };
// const getWorker = async () => {
// const { data } = await axios.get(`Workers/${entityId.value}`, {});
// workerCurrentBusiness.value = data.businessFk;
// return workerCurrentBusiness.value;
// };
onBeforeMount(async () => {
advancedSummary.value = await useAdvancedSummary('Workers', entityId.value);
basicDataUrl.value = `#/worker/${entityId.value}/basic-data`;
// businessCurrent();
});
</script>