parseFloat(row['weight']).toFixed(1),
},
{
- align: 'center',
- labelAbbreviation: 'Pack',
+ labelAbbreviation: 'P',
label: 'Packing',
toolTip: 'Packing',
name: 'packing',
@@ -209,14 +209,13 @@ const columns = [
row['amount'] = row['quantity'] * row['buyingValue'];
},
},
- width: '35px',
+ width: '20px',
style: (row) => {
if (row.groupingMode === 'grouping')
return { color: 'var(--vn-label-color)' };
},
},
{
- align: 'center',
labelAbbreviation: 'GM',
label: t('Grouping selector'),
toolTip: t('Grouping selector'),
@@ -229,7 +228,7 @@ const columns = [
indeterminateValue: null,
},
size: 'xs',
- width: '30px',
+ width: '25px',
create: true,
rightFilter: false,
getIcon: (value) => {
@@ -245,12 +244,12 @@ const columns = [
},
{
align: 'center',
- labelAbbreviation: 'Group',
+ labelAbbreviation: 'G',
label: 'Grouping',
toolTip: 'Grouping',
name: 'grouping',
component: 'number',
- width: '35px',
+ width: '20px',
create: true,
style: (row) => {
if (row.groupingMode === 'packing') return { color: 'var(--vn-label-color)' };
@@ -290,6 +289,7 @@ const columns = [
},
},
width: '45px',
+ format: (row) => parseFloat(row['buyingValue']).toFixed(3),
},
{
align: 'center',
@@ -301,6 +301,7 @@ const columns = [
positive: false,
},
isEditable: false,
+ format: (row) => parseFloat(row['amount']).toFixed(2),
style: getAmountStyle,
},
{
@@ -312,6 +313,7 @@ const columns = [
component: 'number',
width: '35px',
create: true,
+ format: (row) => parseFloat(row['price2']).toFixed(2),
},
{
align: 'center',
@@ -325,6 +327,7 @@ const columns = [
},
width: '35px',
create: true,
+ format: (row) => parseFloat(row['price3']).toFixed(2),
},
{
align: 'center',
@@ -344,6 +347,7 @@ const columns = [
style: (row) => {
if (!row?.hasMinPrice) return { color: 'var(--vn-label-color)' };
},
+ format: (row) => parseFloat(row['minPrice']).toFixed(2),
},
{
align: 'center',
@@ -518,7 +522,7 @@ onMounted(() => {
{
@click="invertQuantitySign(selectedRows, -1)"
data-cy="set-negative-quantity"
>
- -1
+ -
@@ -544,7 +548,7 @@ onMounted(() => {
@click="invertQuantitySign(selectedRows, 1)"
data-cy="set-positive-quantity"
>
- 1
+ +
@@ -558,11 +562,11 @@ onMounted(() => {
:disable="!selectedRows.length"
data-cy="check-buy-amount"
>
- {{}}
{
{
-
+
{{ row.printedStickers }}
@@ -693,20 +698,36 @@ onMounted(() => {
{
- setBuyUltimate(value, data);
+ await setBuyUltimate(value, data);
}
"
:required="true"
data-cy="itemFk-create-popup"
- />
+ sort-by="nickname DESC"
+ >
+
+
+
+
+ {{ scope.opt.name }}
+
+
+ #{{ scope.opt.id }}, {{ scope.opt?.size }},
+ {{ scope.opt?.producerName }}
+
+
+
+
+
{
/>
-
+
-
+
+ {{ t('globals.noData') }}
+
@@ -744,6 +770,7 @@ es:
Com.: Ref.
Comment: Referencia
Minimum price: Precio mínimo
+ Stickers: Etiquetas
Printed Stickers/Stickers: Etiquetas impresas/Etiquetas
Cost: Cost.
Buying value: Coste
@@ -761,7 +788,12 @@ es:
Check buy amount: Marcar como correcta la cantidad de compra
diff --git a/src/pages/Entry/EntryList.vue b/src/pages/Entry/EntryList.vue
index c2b9e8bba..845d65604 100644
--- a/src/pages/Entry/EntryList.vue
+++ b/src/pages/Entry/EntryList.vue
@@ -182,14 +182,6 @@ const columns = computed(() => [
name: 'entryTypeCode',
cardVisible: true,
},
- {
- name: 'dated',
- label: t('entry.list.tableVisibleColumns.dated'),
- component: 'date',
- cardVisible: false,
- visible: false,
- create: true,
- },
{
name: 'companyFk',
label: t('entry.list.tableVisibleColumns.companyFk'),
@@ -220,7 +212,8 @@ function getBadgeAttrs(row) {
let timeDiff = today - timeTicket;
- if (timeDiff > 0) return { color: 'warning', 'text-color': 'black' };
+ if (timeDiff > 0) return { color: 'info', 'text-color': 'black' };
+ if (timeDiff < 0) return { color: 'warning', 'text-color': 'black' };
switch (row.entryTypeCode) {
case 'regularization':
case 'life':
@@ -245,7 +238,6 @@ function getBadgeAttrs(row) {
default:
break;
}
- if (timeDiff < 0) return { color: 'info', 'text-color': 'black' };
return { color: 'transparent' };
}
diff --git a/test/cypress/integration/entry/entrylist.spec.js b/test/cypress/integration/entry/entryList.spec.js
similarity index 98%
rename from test/cypress/integration/entry/entrylist.spec.js
rename to test/cypress/integration/entry/entryList.spec.js
index 2eb9a7013..5e2fa0c01 100644
--- a/test/cypress/integration/entry/entrylist.spec.js
+++ b/test/cypress/integration/entry/entryList.spec.js
@@ -124,12 +124,12 @@ describe('Entry', () => {
clickAndType('stickers', '1');
checkText('quantity', '11');
- checkText('amount', '550');
+ checkText('amount', '550.00');
clickAndType('packing', '2');
checkText('packing', '12close');
- checkText('weight', '12');
+ checkText('weight', '12.0');
checkText('quantity', '132');
- checkText('amount', '6600');
+ checkText('amount', '6600.00');
checkColor('packing', COLORS.enabled);
selectCell('groupingMode').click().click().click();
@@ -137,7 +137,7 @@ describe('Entry', () => {
checkColor('grouping', COLORS.enabled);
selectCell('buyingValue').click().clear().type('{backspace}{backspace}1');
- checkText('amount', '132');
+ checkText('amount', '132.00');
checkColor('minPrice', COLORS.disable);
selectCell('hasMinPrice').click().click();
diff --git a/test/cypress/integration/route/routeList.spec.js b/test/cypress/integration/route/routeList.spec.js
index 421bdbcc8..976ce7352 100644
--- a/test/cypress/integration/route/routeList.spec.js
+++ b/test/cypress/integration/route/routeList.spec.js
@@ -4,9 +4,6 @@ describe('Route', () => {
cy.login('developer');
cy.visit(`/#/route/extended-list`);
});
- const getVnSelect =
- '> :nth-child(1) > .column > .q-field > .q-field__inner > .q-field__control > .q-field__control-container';
- const getRowColumn = (row, column) => `:nth-child(${row}) > :nth-child(${column})`;
it('Route list create route', () => {
cy.addBtnClick();
@@ -16,18 +13,25 @@ describe('Route', () => {
});
it('Route list search and edit', () => {
- cy.get('#searchbar input').type('{enter}'); /*
- cy.get('td[data-col-field="description"]').click(); */
- cy.get('input[name="description"]').type('routeTestOne{enter}');
- /* cy.get('.q-table tr')
+ cy.get('#searchbar input').type('{enter}');
+ cy.get('[data-col-field="description"][data-row-index="0"]')
+ .click()
+ .type('routeTestOne{enter}');
+ cy.get('.q-table tr')
.its('length')
.then((rowCount) => {
expect(rowCount).to.be.greaterThan(0);
});
- cy.get(getRowColumn(1, 3) + getVnSelect).type('{downArrow}{enter}');
- cy.get(getRowColumn(1, 4) + getVnSelect).type('{downArrow}{enter}');
- cy.get(getRowColumn(1, 5) + getVnSelect).type('{downArrow}{enter}');
+ cy.get('[data-col-field="workerFk"][data-row-index="0"]')
+ .click()
+ .type('{downArrow}{enter}');
+ cy.get('[data-col-field="agencyModeFk"][data-row-index="0"]')
+ .click()
+ .type('{downArrow}{enter}');
+ cy.get('[data-col-field="vehicleFk"][data-row-index="0"]')
+ .click()
+ .type('{downArrow}{enter}');
cy.get('button[title="Save"]').click();
- cy.get('.q-notification__message').should('have.text', 'Data saved'); */
+ cy.get('.q-notification__message').should('have.text', 'Data saved');
});
});