feat: refs #8441 add VehicleInvoiceIn component with invoice management functionality #1567

Open
jtubau wants to merge 71 commits from 8441-createVehicleInvoiceInSection into dev
2 changed files with 5 additions and 7 deletions
Showing only changes of commit f1f9a6ac16 - Show all commits

View File

@ -18,11 +18,11 @@ const invoices = ref([]);
const route = useRoute();
const entityId = computed(() => props.id || +route.params.id);
const links = {
'basic-data': `#/vehicle/${entityId.value}/basic-data`,
notes: `#/vehicle/${entityId.value}/notes`,
dms: `#/vehicle/${entityId.value}/dms`,
'invoice-in': `#/vehicle/${entityId.value}/invoice-in`,
events: `#/vehicle/${entityId.value}/events`,
'basic-data': `#/${route.meta.moduleName}/vehicle/${entityId.value}/basic-data`,
notes: `#/${route.meta.moduleName}/vehicle/${entityId.value}/notes`,
dms: `#/${route.meta.moduleName}/vehicle/${entityId.value}/dms`,
'invoice-in': `#/${route.meta.moduleName}/vehicle/${entityId.value}/invoice-in`,
events: `#/${route.meta.moduleName}/vehicle/${entityId.value}/events`,
};
</script>
<template>

View File

@ -1,5 +1,3 @@
const { get } = require('cypress/types/lodash');
describe('Vehicle Invoice In', () => {
const getSelector = (colField) =>
jtubau marked this conversation as resolved Outdated

getLinkSelector

getLinkSelector
`tr:first-child > [data-col-field="${colField}"] > .no-padding > .link`;