fix(sync): загрузка тарифов при обычной синхронизации аккаунтов
Docker / build (push) Has been cancelled

Обычный синк больше не пропускает тарифы; добавлены кнопки «Синхронизировать все» и «Загрузить тарифы», исправлен dropdown на странице аккаунтов.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Denozordec
2026-06-28 00:45:52 +07:00
co-authored by Cursor
parent a53192207d
commit 921feb926f
3 changed files with 99 additions and 11 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ export const syncRoutes: FastifyPluginAsync = async (app) => {
}
const onlyTariffs = Boolean(req.body?.onlyTariffs)
const opts = onlyTariffs ? { skipVpsPayments: true } : { skipTariffs: true }
const opts = onlyTariffs ? { skipVpsPayments: true } : {}
try {
const result = await runBillmanagerAccountSync(syncRow, opts)