Merge pull request 'refactor: improve layout and styling in ExtraCommunity.vue' (!1669) from warmFixExtraComunityFieldsDisplay into test
Reviewed-on: #1669 Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
commit
8b24874f72
|
@ -505,7 +505,6 @@ watch(route, () => {
|
|||
:props="props"
|
||||
@click="stopEventPropagation($event, col)"
|
||||
:style="col.style"
|
||||
style="padding-left: 5px"
|
||||
>
|
||||
<component
|
||||
:is="tableColumnComponents[col.name].component"
|
||||
|
@ -581,19 +580,20 @@ watch(route, () => {
|
|||
<QBtn dense flat class="link">{{ entry.id }} </QBtn>
|
||||
<EntryDescriptorProxy :id="entry.id" />
|
||||
</QTd>
|
||||
<QTd>
|
||||
<QBtn flat class="link" dense>{{ entry.supplierName }}</QBtn>
|
||||
<SupplierDescriptorProxy :id="entry.supplierFk" />
|
||||
</QTd>
|
||||
<QTd class="text-center">
|
||||
<QIcon
|
||||
v-if="entry.isCustomInspectionRequired"
|
||||
name="warning"
|
||||
color="negative"
|
||||
size="md"
|
||||
:title="t('extraCommunity.requiresInspection')"
|
||||
>
|
||||
</QIcon>
|
||||
<QTd :colspan="2">
|
||||
<div style="display: flex">
|
||||
<span class="link">
|
||||
{{ entry.supplierName }}
|
||||
<SupplierDescriptorProxy :id="entry.supplierFk" />
|
||||
</span>
|
||||
<QIcon
|
||||
v-if="entry.isCustomInspectionRequired"
|
||||
name="warning"
|
||||
color="negative"
|
||||
size="md"
|
||||
:title="t('extraCommunity.requiresInspection')"
|
||||
/>
|
||||
</div>
|
||||
</QTd>
|
||||
<QTd class="text-right">
|
||||
<span>{{ toCurrency(entry.invoiceAmount) }}</span>
|
||||
|
@ -639,9 +639,7 @@ watch(route, () => {
|
|||
&:nth-child(1) {
|
||||
max-width: 65px;
|
||||
}
|
||||
&:nth-child(4) {
|
||||
padding: 0;
|
||||
}
|
||||
padding: 0 5px 0;
|
||||
}
|
||||
thead > tr > th {
|
||||
padding: 3px;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/// <reference types="cypress" />
|
||||
|
||||
describe('VnShortcuts', () => {
|
||||
// https://redmine.verdnatura.es/issues/8848
|
||||
describe.skip('VnShortcuts', () => {
|
||||
const modules = {
|
||||
item: 'a',
|
||||
customer: 'c',
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
describe('WorkerList', () => {
|
||||
// https://redmine.verdnatura.es/issues/8848
|
||||
describe.skip('WorkerList', () => {
|
||||
const inputName = '.q-drawer .q-form input[aria-label="First Name"]';
|
||||
const searchBtn = '.q-drawer button:nth-child(3)';
|
||||
const descriptorTitle = '.descriptor .title span';
|
||||
|
@ -13,7 +14,7 @@ describe('WorkerList', () => {
|
|||
cy.intercept('GET', /\/api\/Workers\/summary+/).as('worker');
|
||||
cy.get(searchBtn).click();
|
||||
cy.wait('@worker').then(() =>
|
||||
cy.get(descriptorTitle).should('include.text', 'Jessica')
|
||||
cy.get(descriptorTitle).should('include.text', 'Jessica'),
|
||||
);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue