forked from verdnatura/salix-front
Compare commits
3 Commits
dev
...
7287-reaso
Author | SHA1 | Date |
---|---|---|
|
d7668163be | |
|
20994dfd0f | |
|
a980bf5563 |
|
@ -46,11 +46,12 @@ const filter = {
|
|||
'oldInstance',
|
||||
'newInstance',
|
||||
'creationDate',
|
||||
'description',
|
||||
'changedModel',
|
||||
'changedModelId',
|
||||
'changedModelValue',
|
||||
'description',
|
||||
'summaryId',
|
||||
'reason',
|
||||
],
|
||||
include: [
|
||||
{
|
||||
|
@ -333,6 +334,7 @@ function selectFilter(type, dateType) {
|
|||
{ oldJson: { like: `%${changeInput.value}%` } },
|
||||
{ newJson: { like: `%${changeInput.value}%` } },
|
||||
{ description: { like: `%${changeInput.value}%` } },
|
||||
{ reason: { like: `%${changeInput.value}%` } },
|
||||
];
|
||||
else selectedFilters.value.or = undefined;
|
||||
}
|
||||
|
@ -578,6 +580,14 @@ watch(
|
|||
</div>
|
||||
</QItem>
|
||||
</QCardSection>
|
||||
<QCardSection
|
||||
class="q-pa-sm"
|
||||
v-if="log.reason && !log.description"
|
||||
>
|
||||
<span class="description">
|
||||
{{ t(`log.${log.reason}`) }}
|
||||
</span>
|
||||
</QCardSection>
|
||||
<QCardSection
|
||||
class="change-detail q-px-sm q-py-xs"
|
||||
:class="{ expanded: log.expand }"
|
||||
|
|
|
@ -1322,3 +1322,8 @@ months:
|
|||
oct: October
|
||||
nov: November
|
||||
dec: December
|
||||
log:
|
||||
clone: Has cloned a ticket
|
||||
split: Has split a ticket
|
||||
priceFix: Has fixed the price
|
||||
replaceItem: Has replaced an item
|
||||
|
|
|
@ -1299,3 +1299,8 @@ months:
|
|||
oct: Octubre
|
||||
nov: Noviembre
|
||||
dec: Diciembre
|
||||
log:
|
||||
clone: Ha clonado un ticket
|
||||
split: Ha splitado un ticket
|
||||
priceFix: Ha arreglado el precio
|
||||
replaceItem: Ha reemplazado un artículo
|
||||
|
|
Loading…
Reference in New Issue