Payroll Robot Build Update

This commit is contained in:
Hüseyin
2026-07-22 09:05:29 +03:00
parent 96f18797f8
commit 6d9125234c
5 changed files with 9 additions and 8 deletions

View File

@@ -29,13 +29,13 @@
</template>
</q-select>
<!-- Debug Info -->
<div class="q-mt-sm q-pa-sm bg-grey-2 text-black text-caption" style="border: 1px dashed gray;">
<!-- <div class="q-mt-sm q-pa-sm bg-grey-2 text-black text-caption" style="border: 1px dashed gray;">
Durum: {{ ld.errorMessage }} <br/>
Şirket Sayısı: {{ ld.companies.length }}
<div v-for="(c, idx) in ld.companies" :key="idx">
#{{ idx }}: ID={{ c.Id }} (type: {{ typeof c.Id }}), Name={{ c.Name }} (type: {{ typeof c.Name }}), Raw: {{ JSON.stringify(c) }}
</div>
</div>
</div> -->
</div>
</div>
</q-card-section>
@@ -48,8 +48,8 @@
no-caps
color="secondary"
/>
<q-checkbox
label="Tarayıcı Görünmesin"
<q-checkbox
label="Tarayıcı Görünmesin"
v-model="ld.right"
style="font-size : 15px"
/>
@@ -142,7 +142,7 @@ const ld = reactive({
errorMessage: '',
xlsFile: '',
logProcess: [],
year: 2024,
year: 2026,
month: 1,
right : true
})