Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -49,6 +49,9 @@
|
||||
:loading="loading"
|
||||
@click="fetchRows"
|
||||
/>
|
||||
<div class="npc-missing-count text-caption text-grey-7">
|
||||
Maliyeti Girilmemis Satir Sayisi: <b>{{ missingCostRowCount }}</b>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -283,6 +286,10 @@ const rows = computed(() => {
|
||||
return result
|
||||
})
|
||||
|
||||
const missingCostRowCount = computed(() => {
|
||||
return Array.isArray(rows.value) ? rows.value.length : 0
|
||||
})
|
||||
|
||||
function getColumnComparableValue (row, colName) {
|
||||
if (colName === 'dteIslemTarihi') {
|
||||
return formatDateTR(row?.dteIslemTarihi)
|
||||
@@ -437,6 +444,12 @@ onMounted(() => {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.npc-missing-count {
|
||||
white-space: nowrap;
|
||||
align-self: center;
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
.npc-filter-menu {
|
||||
min-width: 300px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user