forked from verdnatura/salix-front
refs #6697 fix claimQuantity
This commit is contained in:
parent
b3a889e8f6
commit
cd49ebe7a6
|
@ -20,7 +20,7 @@ const { t } = useI18n();
|
|||
const stateStore = useStateStore();
|
||||
const arrayData = useArrayData('ClaimLines');
|
||||
const store = arrayData.store;
|
||||
|
||||
let claimedDefault = 0;
|
||||
const claimFilter = {
|
||||
fields: ['ticketFk'],
|
||||
};
|
||||
|
@ -79,6 +79,7 @@ const columns = computed(() => [
|
|||
label: t('Claimed'),
|
||||
field: (row) => row.quantity,
|
||||
sortable: true,
|
||||
default: 0,
|
||||
},
|
||||
{
|
||||
name: 'description',
|
||||
|
|
Loading…
Reference in New Issue