#6321 - Negative ticket #158

Open
jsegarra wants to merge 156 commits from 6321_negative_tickets into dev
2 changed files with 6 additions and 20 deletions
Showing only changes of commit 174d159d04 - Show all commits

View File

@ -462,6 +462,7 @@ export default {
inkFk: 'Color', inkFk: 'Color',
timed: 'timed', timed: 'timed',
minTimed: 'Hora', minTimed: 'Hora',
type: 'Tipo',
negativeAction: 'Negativo', negativeAction: 'Negativo',
totalNegative: 'Total negativos', totalNegative: 'Total negativos',
modalOrigin:{ modalOrigin:{

View File

@ -46,7 +46,7 @@ const columnsTotalNegativeDialog = computed(() => [
}, },
{ {
name: 'itemFk', name: 'itemFk',
label: t('ticket.negative.itemFk'), label: t('ticket.negative.detail.itemFk'),
field: ({ itemFk }) => itemFk, field: ({ itemFk }) => itemFk,
sortable: true, sortable: true,
}, },
@ -58,13 +58,13 @@ const columnsTotalNegativeDialog = computed(() => [
}, },
{ {
name: 'dated', name: 'dated',
label: t('ticket.negative.dated'), label: t('ticket.negative.detail.shipped'),
field: ({ dated }) => dated, field: ({ dated }) => dated,
sortable: true, sortable: true,
}, },
{ {
name: 'quantity', name: 'quantity',
label: t('ticket.negative.quantity'), label: t('ticket.negative.detail.quantity'),
field: ({ quantity }) => quantity, field: ({ quantity }) => quantity,
sortable: true, sortable: true,
}, },
@ -301,14 +301,7 @@ const updateNegativeOrigin = async () => {
t('ticket.negative.totalNegative') t('ticket.negative.totalNegative')
}}</span> }}</span>
<QSpace /> <QSpace />
<QBtn <QBtn icon="close" flat round dense v-close-popup />
icon="close"
:disable="isLoading"
flat
round
dense
v-close-popup
/>
</QCardSection> </QCardSection>
<QCardSection <QCardSection
class="row items-center justify-center column items-stretch" class="row items-center justify-center column items-stretch"
@ -366,14 +359,7 @@ const updateNegativeOrigin = async () => {
t('ticket.negative.modalOrigin.title') t('ticket.negative.modalOrigin.title')
}}</span> }}</span>
<QSpace /> <QSpace />
<QBtn <QBtn icon="close" flat round dense v-close-popup />
icon="close"
:disable="isLoading"
flat
round
dense
v-close-popup
/>
</QCardSection> </QCardSection>
<QCardSection <QCardSection
class="row items-center justify-center column items-stretch" class="row items-center justify-center column items-stretch"
@ -389,7 +375,6 @@ const updateNegativeOrigin = async () => {
<QBtn <QBtn
:label="t('globals.cancel')" :label="t('globals.cancel')"
color="primary" color="primary"
:disable="isLoading"
flat flat
v-close-popup v-close-popup
/> />