diff --git a/src/pages/Shelving/Parking/Card/ParkingBasicData.vue b/src/pages/Shelving/Parking/Card/ParkingBasicData.vue index fcc9dbd24..5c3657691 100644 --- a/src/pages/Shelving/Parking/Card/ParkingBasicData.vue +++ b/src/pages/Shelving/Parking/Card/ParkingBasicData.vue @@ -26,10 +26,6 @@ const sectorFilter = { fields: ['id', 'description'] }; :label="$t('parking.pickingOrder')" /> - - - - import { computed, onMounted, onUnmounted } from 'vue'; -import { useRouter } from 'vue-router'; import { useI18n } from 'vue-i18n'; import { useStateStore } from 'stores/useStateStore'; import { useSummaryDialog } from 'src/composables/useSummaryDialog'; @@ -11,7 +10,6 @@ import exprBuilder from './ParkingExprBuilder.js'; import ParkingSummary from './Card/ParkingSummary.vue'; const stateStore = useStateStore(); -const router = useRouter(); const { t } = useI18n(); const { viewSummary } = useSummaryDialog(); const dataKey = 'ParkingList'; @@ -48,6 +46,19 @@ const columns = computed(() => [ sortable: true, cardVisible: true, }, + { + align: 'right', + label: '', + name: 'tableActions', + actions: [ + { + title: t('components.smartCard.viewSummary'), + icon: 'preview', + action: (row) => viewSummary(row.id, ParkingSummary), + isPrimary: true, + }, + ], + }, ]); diff --git a/test/cypress/integration/parking/parkingBasicData.spec.js b/test/cypress/integration/shelving/parking/parkingBasicData.spec.js similarity index 61% rename from test/cypress/integration/parking/parkingBasicData.spec.js rename to test/cypress/integration/shelving/parking/parkingBasicData.spec.js index b26c23215..e28d7eeca 100644 --- a/test/cypress/integration/parking/parkingBasicData.spec.js +++ b/test/cypress/integration/shelving/parking/parkingBasicData.spec.js @@ -8,18 +8,25 @@ describe('ParkingBasicData', () => { cy.visit(`/#/shelving/parking/1/basic-data`); }); + it('should give an error if the code aldready exists', () => { + cy.get(codeInput).eq(0).should('have.value', '700-01').clear(); + cy.get(codeInput).eq(0).type('700-02'); + cy.saveCard(); + cy.get('.q-notification__message').should('have.text', 'The code already exists'); + }); + it('should edit the code and sector', () => { cy.get(sectorSelect).type('First'); cy.get(sectorOpt).click(); cy.get(codeInput).eq(0).clear(); - cy.get(codeInput).eq(0).type('900-002'); + cy.get(codeInput).eq(0).type('700-01'); cy.dataCy('Picking order_input').clear().type(80230); cy.saveCard(); cy.get('.q-notification__message').should('have.text', 'Data saved'); - cy.get(sectorSelect).should('have.value', 'Second sector'); - cy.get(codeInput).should('have.value', '900-002'); + cy.get(sectorSelect).should('have.value', 'First sector'); + cy.get(codeInput).should('have.value', '700-01'); cy.dataCy('Picking order_input').should('have.value', 80230); }); }); diff --git a/test/cypress/integration/parking/parkingList.spec.js b/test/cypress/integration/shelving/parking/parkingList.spec.js similarity index 90% rename from test/cypress/integration/parking/parkingList.spec.js rename to test/cypress/integration/shelving/parking/parkingList.spec.js index 840974744..ecee8aab7 100644 --- a/test/cypress/integration/parking/parkingList.spec.js +++ b/test/cypress/integration/shelving/parking/parkingList.spec.js @@ -17,8 +17,8 @@ describe('ParkingList', () => { }); it('should filter and redirect if there is only one result', () => { - cy.dataCy('Code_input').type('01{enter}'); - cy.dataCy('Sector_select').type('First{enter}'); + cy.dataCy('Code_input').type('1{enter}'); + cy.dataCy('Sector_select').type('Normal{enter}'); cy.get(summaryHeader).contains('Basic data'); });