chore: Fix .env.test quotes and format frontend code

- Fix TEST_ORACLE_USER quotes in .env.test for shell source compatibility
- Format 14 frontend files with Prettier (stores, views, utils)
- All 122 tests passing (77 telegram + 35 backend + 10 E2E)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-22 00:31:20 +02:00
parent bd41a3406e
commit f52aa27bdc
14 changed files with 1691 additions and 1144 deletions

View File

@@ -13,7 +13,7 @@ export const useTreasuryStore = defineStore("treasury", () => {
});
const totals = ref({
total_incasari: 0,
total_plati: 0
total_plati: 0,
});
const loadBankCashRegister = async (companyId, filters = {}) => {
@@ -25,18 +25,18 @@ export const useTreasuryStore = defineStore("treasury", () => {
company: companyId,
page: pagination.value.page + 1,
page_size: pagination.value.rows,
...filters
...filters,
};
const response = await apiService.get('/treasury/bank-cash-register', {
params
const response = await apiService.get("/treasury/bank-cash-register", {
params,
});
registers.value = response.data.registers || [];
pagination.value.totalRecords = response.data.total_count || 0;
totals.value = {
total_incasari: response.data.total_incasari,
total_plati: response.data.total_plati
total_plati: response.data.total_plati,
};
return { success: true };
@@ -72,6 +72,6 @@ export const useTreasuryStore = defineStore("treasury", () => {
totals,
loadBankCashRegister,
setPagination,
reset
reset,
};
});
});