Merge remote-tracking branch 'origin/master'

This commit is contained in:
M_Kececi
2026-05-20 16:24:46 +03:00
parent d094adf0b4
commit 9b4b82dd52

View File

@@ -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;
}