7658-devToTest_2428 #508

Merged
alexm merged 392 commits from 7658-devToTest_2428 into test 2024-07-02 10:38:20 +00:00
2 changed files with 0 additions and 2 deletions
Showing only changes of commit 2ea87ea920 - Show all commits

View File

@ -120,7 +120,6 @@ const refreshKey = ref(0);
const total = computed(() => { const total = computed(() => {
return selectedRows.value.reduce((sum, item) => sum + item.price, 0); return selectedRows.value.reduce((sum, item) => sum + item.price, 0);
}); });
console.log('total: ', total);
const openDmsUploadDialog = async () => { const openDmsUploadDialog = async () => {
dmsDialog.value.rowsToCreateInvoiceIn = selectedRows.value dmsDialog.value.rowsToCreateInvoiceIn = selectedRows.value

View File

@ -129,7 +129,6 @@ function confirmRemove() {
} }
function navigateToRoadmapSummary(event, row) { function navigateToRoadmapSummary(event, row) {
console.log('row.id : ', row.id);
router.push({ name: 'RoadmapSummary', params: { id: 1 } }); router.push({ name: 'RoadmapSummary', params: { id: 1 } });
} }
</script> </script>